From 59e4a047fd3132630a32a573110be03c58ff0b3c Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 26 Feb 2026 12:25:16 -0300 Subject: [PATCH 001/108] fix: inverted navigation --- .../reactnative/scroll/InvertedScrollContentView.java | 6 ++++++ .../rocket/reactnative/scroll/InvertedScrollView.java | 10 ++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java index a4acb0c1e13..82880ea329e 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java @@ -20,4 +20,10 @@ public void addChildrenForAccessibility(ArrayList outChildren) { super.addChildrenForAccessibility(outChildren); Collections.reverse(outChildren); } + + @Override + public void addFocusables(ArrayList views, int direction, int focusableMode) { + super.addFocusables(views, direction, focusableMode); + Collections.reverse(views); + } } diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index def585a7511..d46eb055f73 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -18,10 +18,8 @@ public InvertedScrollView(ReactContext context) { super(context); } - // Set whether this ScrollView is used for an inverted virtualized list. When true, we reverse the // accessibility traversal order to match the visual order. - public void setIsInvertedVirtualizedList(boolean isInverted) { mIsInvertedVirtualizedList = isInverted; } @@ -33,4 +31,12 @@ public void addChildrenForAccessibility(ArrayList outChildren) { Collections.reverse(outChildren); } } + + @Override + public void addFocusables(ArrayList views, int direction, int focusableMode) { + super.addFocusables(views, direction, focusableMode); + if (mIsInvertedVirtualizedList) { + Collections.reverse(views); + } + } } From 4eb8bf275a20bfcc66e78516fc838a289f525fe8 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 26 Feb 2026 18:22:19 -0300 Subject: [PATCH 002/108] fix: just invert list content --- .../scroll/InvertedScrollContentView.java | 14 ++++++++++++-- .../scroll/InvertedScrollContentViewManager.java | 6 ++++++ .../reactnative/scroll/InvertedScrollView.java | 8 -------- .../List/components/InvertedScrollView.tsx | 11 +++++++---- 4 files changed, 25 insertions(+), 14 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java index 82880ea329e..b983498f10d 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java @@ -11,19 +11,29 @@ */ public class InvertedScrollContentView extends ReactViewGroup { + private boolean mIsInvertedContent = false; + public InvertedScrollContentView(android.content.Context context) { super(context); } + public void setIsInvertedContent(boolean isInverted) { + mIsInvertedContent = isInverted; + } + @Override public void addChildrenForAccessibility(ArrayList outChildren) { super.addChildrenForAccessibility(outChildren); - Collections.reverse(outChildren); + if (mIsInvertedContent) { + Collections.reverse(outChildren); + } } @Override public void addFocusables(ArrayList views, int direction, int focusableMode) { super.addFocusables(views, direction, focusableMode); - Collections.reverse(views); + if (mIsInvertedContent) { + Collections.reverse(views); + } } } diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentViewManager.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentViewManager.java index d30f9fc84c2..095c2463424 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentViewManager.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentViewManager.java @@ -2,6 +2,7 @@ import com.facebook.react.module.annotations.ReactModule; import com.facebook.react.uimanager.ThemedReactContext; +import com.facebook.react.uimanager.annotations.ReactProp; import com.facebook.react.views.view.ReactViewManager; /** @@ -22,4 +23,9 @@ public String getName() { public InvertedScrollContentView createViewInstance(ThemedReactContext context) { return new InvertedScrollContentView(context); } + + @ReactProp(name = "isInvertedContent") + public void setIsInvertedContent(InvertedScrollContentView view, boolean isInverted) { + view.setIsInvertedContent(isInverted); + } } diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index d46eb055f73..c01ce3d28e5 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -31,12 +31,4 @@ public void addChildrenForAccessibility(ArrayList outChildren) { Collections.reverse(outChildren); } } - - @Override - public void addFocusables(ArrayList views, int direction, int focusableMode) { - super.addFocusables(views, direction, focusableMode); - if (mIsInvertedVirtualizedList) { - Collections.reverse(views); - } - } } diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index c160fbcc42a..0ebecc78b91 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -44,9 +44,9 @@ export type InvertedScrollViewRef = NativeScrollInstance & IScrollableMethods; const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); -const NativeInvertedScrollContentView = requireNativeComponent( - 'InvertedScrollContentView' -); +const NativeInvertedScrollContentView = requireNativeComponent< + ViewProps & { removeClippedSubviews?: boolean; isInvertedContent?: boolean } +>('InvertedScrollContentView'); const InvertedScrollView = forwardRef((props, externalRef) => { const internalRef = useRef(null); @@ -136,13 +136,16 @@ const InvertedScrollView = forwardRef((p return null; } const ScrollView = NativeInvertedScrollView as React.ComponentType; - const ContentView = NativeInvertedScrollContentView as React.ComponentType; + const ContentView = NativeInvertedScrollContentView as React.ComponentType< + ViewProps & { removeClippedSubviews?: boolean; isInvertedContent?: boolean } + >; return ( }> From 9b639da231b951830d20aea4d3524076050b6680 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 26 Feb 2026 18:27:54 -0300 Subject: [PATCH 003/108] fix: lint --- app/views/RoomView/List/components/InvertedScrollView.tsx | 3 ++- app/views/RoomView/List/components/List.tsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index 0ebecc78b91..2e1f66ab4af 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -31,6 +31,7 @@ const styles = StyleSheet.create({ }); type ScrollViewPropsWithRef = ScrollViewProps & React.RefAttributes; +type InvertedScrollViewProps = ScrollViewProps & { inverted?: boolean }; type NativeScrollInstance = React.ComponentRef>; interface IScrollableMethods { scrollTo(options?: { x?: number; y?: number; animated?: boolean }): void; @@ -48,7 +49,7 @@ const NativeInvertedScrollContentView = requireNativeComponent< ViewProps & { removeClippedSubviews?: boolean; isInvertedContent?: boolean } >('InvertedScrollContentView'); -const InvertedScrollView = forwardRef((props, externalRef) => { +const InvertedScrollView = forwardRef((props, externalRef) => { const internalRef = useRef(null); useLayoutEffect(() => { diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index 7ffe0135587..76b5aa37bba 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -44,7 +44,7 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { contentContainerStyle={styles.contentContainer} style={styles.list} inverted - renderScrollComponent={isIOS ? undefined : props => } + renderScrollComponent={isIOS ? undefined : props => } removeClippedSubviews={isIOS} initialNumToRender={7} onEndReachedThreshold={0.5} From cf4cb85a74d98d479abf2ccc5b943d0aa0843867 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 27 Feb 2026 16:14:43 -0300 Subject: [PATCH 004/108] test: inverted just in the inverted --- app/views/RoomView/List/components/InvertedScrollView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index 2e1f66ab4af..89bc255ebc3 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -140,7 +140,7 @@ const InvertedScrollView = forwardRef; - + console.log('props.inverted', props.inverted); return ( Date: Fri, 27 Feb 2026 17:21:32 -0300 Subject: [PATCH 005/108] fix: code --- .../java/chat/rocket/reactnative/scroll/InvertedScrollView.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index c01ce3d28e5..d00b71fd60f 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -18,8 +18,10 @@ public InvertedScrollView(ReactContext context) { super(context); } + // Set whether this ScrollView is used for an inverted virtualized list. When true, we reverse the // accessibility traversal order to match the visual order. + public void setIsInvertedVirtualizedList(boolean isInverted) { mIsInvertedVirtualizedList = isInverted; } From a33f49d98d7a7ccd11ede2c116c902237ed56e32 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 27 Feb 2026 17:29:17 -0300 Subject: [PATCH 006/108] fix: invert just the flatlist content --- .../scroll/InvertedScrollContentView.java | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java index b983498f10d..9543c1b09ab 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java @@ -33,7 +33,23 @@ public void addChildrenForAccessibility(ArrayList outChildren) { public void addFocusables(ArrayList views, int direction, int focusableMode) { super.addFocusables(views, direction, focusableMode); if (mIsInvertedContent) { - Collections.reverse(views); + // Find indices of focusables that are children of this view + ArrayList childIndices = new ArrayList<>(); + for (int i = 0; i < views.size(); i++) { + View v = views.get(i); + if (v.getParent() == this) { + childIndices.add(i); + } + } + // Reverse only the sublist of children focusables + int n = childIndices.size(); + for (int i = 0; i < n / 2; i++) { + int idx1 = childIndices.get(i); + int idx2 = childIndices.get(n - 1 - i); + View temp = views.get(idx1); + views.set(idx1, views.get(idx2)); + views.set(idx2, temp); + } } } } From 4e86354ce83bafd8ff2134f3496a15c1e77cbe1c Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 2 Mar 2026 16:25:29 -0300 Subject: [PATCH 007/108] fix: switch tab --- .../scroll/InvertedScrollView.java | 26 ++++++++++++++++++- app/views/RoomView/List/components/List.tsx | 4 +-- 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index d00b71fd60f..adeb0396504 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -8,7 +8,8 @@ // When a FlatList is inverted (inverted={true}), React Native uses scaleY: -1 transform which // visually inverts the list but Android still reports children in array order. This view overrides -// addChildrenForAccessibility to reverse the order so TalkBack matches the visual order. +// addChildrenForAccessibility to reverse the order so TalkBack matches the visual order, and also +// adjusts keyboard/D-pad focus navigation to behave like a non-inverted list. public class InvertedScrollView extends ReactScrollView { @@ -26,6 +27,29 @@ public void setIsInvertedVirtualizedList(boolean isInverted) { mIsInvertedVirtualizedList = isInverted; } + @Override + public View focusSearch(View focused, int direction) { + if (mIsInvertedVirtualizedList) { + switch (direction) { + case View.FOCUS_DOWN: + direction = View.FOCUS_UP; + break; + case View.FOCUS_UP: + direction = View.FOCUS_DOWN; + break; + case View.FOCUS_FORWARD: + direction = View.FOCUS_BACKWARD; + break; + case View.FOCUS_BACKWARD: + direction = View.FOCUS_FORWARD; + break; + default: + break; + } + } + return super.focusSearch(focused, direction); + } + @Override public void addChildrenForAccessibility(ArrayList outChildren) { super.addChildrenForAccessibility(outChildren); diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index 76b5aa37bba..a273264dcc6 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -43,8 +43,8 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { keyExtractor={item => item.id} contentContainerStyle={styles.contentContainer} style={styles.list} - inverted - renderScrollComponent={isIOS ? undefined : props => } + inverted={props.inverted || true} + renderScrollComponent={isIOS ? undefined : scrollProps => } removeClippedSubviews={isIOS} initialNumToRender={7} onEndReachedThreshold={0.5} From 32d0b75c44bd1ad9275557aa007f784efe62b700 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 2 Mar 2026 17:59:49 -0300 Subject: [PATCH 008/108] try to reverse just the flatlist content --- .../scroll/InvertedScrollView.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index adeb0396504..673a72cf79d 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -50,6 +50,26 @@ public View focusSearch(View focused, int direction) { return super.focusSearch(focused, direction); } + @Override + public void addFocusables(ArrayList views, int direction, int focusableMode) { + int initialSize = views.size(); + + super.addFocusables(views, direction, focusableMode); + + if (!mIsInvertedVirtualizedList) { + return; + } + + if (direction == View.FOCUS_FORWARD || direction == View.FOCUS_BACKWARD) { + int newSize = views.size(); + int addedCount = newSize - initialSize; + if (addedCount > 1) { + java.util.List subList = views.subList(initialSize, newSize); + Collections.reverse(subList); + } + } + } + @Override public void addChildrenForAccessibility(ArrayList outChildren) { super.addChildrenForAccessibility(outChildren); From 037d5c6dc75d4f3b31e8baba1615976417fb6745 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 4 Mar 2026 18:11:19 -0300 Subject: [PATCH 009/108] fix: inverted list direction --- app/views/RoomView/List/components/List.tsx | 42 ++++++++++++++++++++- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index a273264dcc6..42dfc77facb 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -1,5 +1,5 @@ import React, { useState } from 'react'; -import { StyleSheet, View } from 'react-native'; +import { Platform, StyleSheet, View } from 'react-native'; import Animated, { runOnJS, useAnimatedScrollHandler } from 'react-native-reanimated'; import { isIOS } from '../../../../lib/methods/helpers'; @@ -22,6 +22,42 @@ const styles = StyleSheet.create({ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { const [visible, setVisible] = useState(false); const { isAutocompleteVisible } = useRoomContext(); + const { data, renderItem, ...flatListProps } = props; + + const renderItemWithFocus: IListProps['renderItem'] = info => { + if (!renderItem) { + return null as any; + } + + if (Platform.OS !== 'android') { + return renderItem(info); + } + + const total = data?.length ?? 0; + const { index } = info; + const itemId = `room-message-${index}`; + + const nextFocusUp = index < total - 1 ? `room-message-${index + 1}` : undefined; + const nextFocusDown = index > 0 ? `room-message-${index - 1}` : undefined; + + return ( + + {renderItem(info)} + + ); + }; + const scrollHandler = useAnimatedScrollHandler({ onScroll: event => { if (event.contentOffset.y > SCROLL_LIMIT) { @@ -36,11 +72,14 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { {/* @ts-ignore */} item.id} + data={data} + renderItem={renderItemWithFocus} contentContainerStyle={styles.contentContainer} style={styles.list} inverted={props.inverted || true} @@ -52,7 +91,6 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { windowSize={10} scrollEventThrottle={16} onScroll={scrollHandler} - {...props} {...scrollPersistTaps} /> From 8886ec327a2753cce7a0c411c042338b9ea2c79e Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 4 Mar 2026 21:14:03 +0000 Subject: [PATCH 010/108] chore: format code and fix lint issues --- app/views/RoomView/List/components/List.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index 42dfc77facb..64ee74a8e79 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -50,9 +50,8 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { nextFocusUp, // @ts-ignore Android-only props not in ViewProps types nextFocusDown - } - : null)} - > + } + : null)}> {renderItem(info)} ); From c1bbde2fcd598d67afb1fd733bc5aa820c134b8f Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 5 Mar 2026 10:42:47 -0300 Subject: [PATCH 011/108] fix: list issues --- app/views/RoomView/List/components/List.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index 64ee74a8e79..08da55262b8 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -33,22 +33,20 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { return renderItem(info); } - const total = data?.length ?? 0; + const total = data?.length || 0; const { index } = info; - const itemId = `room-message-${index}`; - - const nextFocusUp = index < total - 1 ? `room-message-${index + 1}` : undefined; - const nextFocusDown = index > 0 ? `room-message-${index - 1}` : undefined; + const nextFocusUp = index < total - 1 ? index + 1 : undefined; + const nextFocusDown = index > 0 ? index + 1 : undefined; return ( From 4db3a04670a18cca851798d5c2b0c33b04f1ce0c Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 5 Mar 2026 13:11:41 -0300 Subject: [PATCH 012/108] rollback List --- app/views/RoomView/List/components/List.tsx | 43 ++------------------- 1 file changed, 4 insertions(+), 39 deletions(-) diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index 08da55262b8..7ffe0135587 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -1,5 +1,5 @@ import React, { useState } from 'react'; -import { Platform, StyleSheet, View } from 'react-native'; +import { StyleSheet, View } from 'react-native'; import Animated, { runOnJS, useAnimatedScrollHandler } from 'react-native-reanimated'; import { isIOS } from '../../../../lib/methods/helpers'; @@ -22,39 +22,6 @@ const styles = StyleSheet.create({ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { const [visible, setVisible] = useState(false); const { isAutocompleteVisible } = useRoomContext(); - const { data, renderItem, ...flatListProps } = props; - - const renderItemWithFocus: IListProps['renderItem'] = info => { - if (!renderItem) { - return null as any; - } - - if (Platform.OS !== 'android') { - return renderItem(info); - } - - const total = data?.length || 0; - const { index } = info; - - const nextFocusUp = index < total - 1 ? index + 1 : undefined; - const nextFocusDown = index > 0 ? index + 1 : undefined; - return ( - - {renderItem(info)} - - ); - }; - const scrollHandler = useAnimatedScrollHandler({ onScroll: event => { if (event.contentOffset.y > SCROLL_LIMIT) { @@ -69,18 +36,15 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { {/* @ts-ignore */} item.id} - data={data} - renderItem={renderItemWithFocus} contentContainerStyle={styles.contentContainer} style={styles.list} - inverted={props.inverted || true} - renderScrollComponent={isIOS ? undefined : scrollProps => } + inverted + renderScrollComponent={isIOS ? undefined : props => } removeClippedSubviews={isIOS} initialNumToRender={7} onEndReachedThreshold={0.5} @@ -88,6 +52,7 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { windowSize={10} scrollEventThrottle={16} onScroll={scrollHandler} + {...props} {...scrollPersistTaps} /> From 846b8ba61a605a4781c01675f847869cf2ab324e Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 5 Mar 2026 15:11:35 -0300 Subject: [PATCH 013/108] revert unused changes on module --- .../scroll/InvertedScrollView.java | 75 +++---------------- 1 file changed, 9 insertions(+), 66 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index 673a72cf79d..b1d5ceed0a4 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -1,80 +1,23 @@ package chat.rocket.reactnative.scroll; import android.view.View; -import com.facebook.react.bridge.ReactContext; -import com.facebook.react.views.scroll.ReactScrollView; +import com.facebook.react.views.view.ReactViewGroup; import java.util.ArrayList; import java.util.Collections; -// When a FlatList is inverted (inverted={true}), React Native uses scaleY: -1 transform which -// visually inverts the list but Android still reports children in array order. This view overrides -// addChildrenForAccessibility to reverse the order so TalkBack matches the visual order, and also -// adjusts keyboard/D-pad focus navigation to behave like a non-inverted list. +/** + * Content view for inverted FlatLists. Reports its children to accessibility in reversed order so + * TalkBack traversal matches the visual order (newest-first) when used inside InvertedScrollView. + */ +public class InvertedScrollContentView extends ReactViewGroup { -public class InvertedScrollView extends ReactScrollView { - - private boolean mIsInvertedVirtualizedList = false; - - public InvertedScrollView(ReactContext context) { + public InvertedScrollContentView(android.content.Context context) { super(context); } - - // Set whether this ScrollView is used for an inverted virtualized list. When true, we reverse the - // accessibility traversal order to match the visual order. - - public void setIsInvertedVirtualizedList(boolean isInverted) { - mIsInvertedVirtualizedList = isInverted; - } - - @Override - public View focusSearch(View focused, int direction) { - if (mIsInvertedVirtualizedList) { - switch (direction) { - case View.FOCUS_DOWN: - direction = View.FOCUS_UP; - break; - case View.FOCUS_UP: - direction = View.FOCUS_DOWN; - break; - case View.FOCUS_FORWARD: - direction = View.FOCUS_BACKWARD; - break; - case View.FOCUS_BACKWARD: - direction = View.FOCUS_FORWARD; - break; - default: - break; - } - } - return super.focusSearch(focused, direction); - } - - @Override - public void addFocusables(ArrayList views, int direction, int focusableMode) { - int initialSize = views.size(); - - super.addFocusables(views, direction, focusableMode); - - if (!mIsInvertedVirtualizedList) { - return; - } - - if (direction == View.FOCUS_FORWARD || direction == View.FOCUS_BACKWARD) { - int newSize = views.size(); - int addedCount = newSize - initialSize; - if (addedCount > 1) { - java.util.List subList = views.subList(initialSize, newSize); - Collections.reverse(subList); - } - } - } - @Override public void addChildrenForAccessibility(ArrayList outChildren) { super.addChildrenForAccessibility(outChildren); - if (mIsInvertedVirtualizedList) { - Collections.reverse(outChildren); - } + Collections.reverse(outChildren); } -} +} \ No newline at end of file From 2341565ba0f5c67fc0adef65eb076622b984a72c Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 5 Mar 2026 15:43:32 -0300 Subject: [PATCH 014/108] try native module approach --- .../chat/rocket/reactnative/MainActivity.kt | 63 +++++++++++++++---- .../reactnative/a11y/KeyboardA11yModule.java | 49 +++++++++++++++ .../reactnative/a11y/KeyboardA11ySpec.java | 31 +++++++++ .../rocket/reactnative/scroll/FocusUtils.java | 29 +++++++++ .../scroll/InvertedScrollContentView.java | 6 ++ android/app/src/main/res/values/ids.xml | 5 ++ .../native/KeyboardInversionA11yAndroid.ts | 26 ++++++++ app/views/RoomView/index.tsx | 4 ++ 8 files changed, 201 insertions(+), 12 deletions(-) create mode 100644 android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java create mode 100644 android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11ySpec.java create mode 100644 android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java create mode 100644 android/app/src/main/res/values/ids.xml create mode 100644 app/lib/native/KeyboardInversionA11yAndroid.ts diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt b/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt index e4ab65ceba1..eac65e52db2 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt +++ b/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt @@ -1,24 +1,26 @@ package chat.rocket.reactnative - + +import android.os.Bundle +import android.content.Intent +import android.view.KeyEvent +import android.view.View import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled import com.facebook.react.defaults.DefaultReactActivityDelegate - -import android.os.Bundle import com.zoontek.rnbootsplash.RNBootSplash -import android.content.Intent -import android.content.res.Configuration import chat.rocket.reactnative.notification.NotificationIntentHandler - +import chat.rocket.reactnative.a11y.KeyboardA11yModule +import chat.rocket.reactnative.scroll.FocusUtils + class MainActivity : ReactActivity() { - + /** * Returns the name of the main component registered from JavaScript. This is used to schedule * rendering of the component. */ override fun getMainComponentName(): String = "RocketChatRN" - + /** * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] * which allows you to enable New Architecture with a single boolean flags [fabricEnabled] @@ -29,20 +31,57 @@ class MainActivity : ReactActivity() { override fun onCreate(savedInstanceState: Bundle?) { RNBootSplash.init(this, R.style.BootTheme) super.onCreate(null) - + // Handle notification intents intent?.let { NotificationIntentHandler.handleIntent(this, it) } } - + public override fun onNewIntent(intent: Intent) { super.onNewIntent(intent) setIntent(intent) - + // Handle notification intents when activity is already running NotificationIntentHandler.handleIntent(this, intent) } + override fun dispatchKeyEvent(event: KeyEvent): Boolean { + if (KeyboardA11yModule.isEnabled()) { + val current: View? = currentFocus + if (current != null && FocusUtils.hasInvertedParent(current)) { + if (event.action == KeyEvent.ACTION_DOWN) { + val keyCode = event.keyCode + val isShiftPressed = event.isShiftPressed + val mapped = when (keyCode) { + // Invert DPAD vertical arrows for inverted lists + KeyEvent.KEYCODE_DPAD_DOWN -> KeyEvent.KEYCODE_DPAD_UP + KeyEvent.KEYCODE_DPAD_UP -> KeyEvent.KEYCODE_DPAD_DOWN + // Map Tab / Shift+Tab to vertical navigation as well + KeyEvent.KEYCODE_TAB -> + if (isShiftPressed) KeyEvent.KEYCODE_DPAD_UP else KeyEvent.KEYCODE_DPAD_DOWN + else -> keyCode + } + if (mapped != keyCode) { + val invertedEvent = KeyEvent( + event.downTime, + event.eventTime, + event.action, + mapped, + event.repeatCount, + event.metaState, + event.deviceId, + event.scanCode, + event.flags, + event.source + ) + return super.dispatchKeyEvent(invertedEvent) + } + } + } + } + return super.dispatchKeyEvent(event) + } + override fun invokeDefaultOnBackPressed() { moveTaskToBack(true) } -} \ No newline at end of file +} diff --git a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java new file mode 100644 index 00000000000..afcf82507c1 --- /dev/null +++ b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java @@ -0,0 +1,49 @@ +package chat.rocket.reactnative.a11y; + +import androidx.annotation.Nullable; + +import com.facebook.react.bridge.Promise; +import com.facebook.react.bridge.ReactApplicationContext; +import com.facebook.react.module.annotations.ReactModule; + +@ReactModule(name = KeyboardA11ySpec.NAME) +public class KeyboardA11yModule extends KeyboardA11ySpec { + + private static volatile boolean sEnabled = false; + @Nullable + private static volatile String sScope = null; + + public KeyboardA11yModule(ReactApplicationContext reactContext) { + super(reactContext); + } + + public static boolean isEnabled() { + return sEnabled; + } + + @Nullable + public static String getScope() { + return sScope; + } + + @Override + public void enable(String scope) { + sEnabled = true; + sScope = scope; + } + + @Override + public void disable() { + sEnabled = false; + sScope = null; + } + + @Override + public void getState(Promise promise) { + promise.resolve( + com.facebook.react.bridge.Arguments.createMap() + .putBoolean("enabled", sEnabled) + .putString("scope", sScope)); + } +} + diff --git a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11ySpec.java b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11ySpec.java new file mode 100644 index 00000000000..eb0bc0430f2 --- /dev/null +++ b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11ySpec.java @@ -0,0 +1,31 @@ +package chat.rocket.reactnative.a11y; + +import com.facebook.react.bridge.Promise; +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; + +public abstract class KeyboardA11ySpec extends ReactContextBaseJavaModule implements TurboModule { + + public static final String NAME = "KeyboardA11y"; + + public KeyboardA11ySpec(ReactApplicationContext reactContext) { + super(reactContext); + } + + @Override + public String getName() { + return NAME; + } + + @ReactMethod + public abstract void enable(String scope); + + @ReactMethod + public abstract void disable(); + + @ReactMethod + public abstract void getState(Promise promise); +} + diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java new file mode 100644 index 00000000000..83a6396e305 --- /dev/null +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java @@ -0,0 +1,29 @@ +package chat.rocket.reactnative.scroll; + +import android.view.View; +import android.view.ViewParent; + +/** + * Utilities for focus-related queries inside custom scroll views. + */ +public final class FocusUtils { + + private FocusUtils() {} + + public static boolean hasInvertedParent(View view) { + if (view == null) { + return false; + } + ViewParent parent = view.getParent(); + while (parent instanceof View) { + View parentView = (View) parent; + Object tag = parentView.getTag(R.id.tag_inverted_list); + if (tag instanceof Boolean && (Boolean) tag) { + return true; + } + parent = parentView.getParent(); + } + return false; + } +} + diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java index 9543c1b09ab..b0430783cde 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java @@ -19,6 +19,11 @@ public InvertedScrollContentView(android.content.Context context) { public void setIsInvertedContent(boolean isInverted) { mIsInvertedContent = isInverted; + if (isInverted) { + setTag(R.id.tag_inverted_list, true); + } else { + setTag(R.id.tag_inverted_list, null); + } } @Override @@ -53,3 +58,4 @@ public void addFocusables(ArrayList views, int direction, int focusableMod } } } + diff --git a/android/app/src/main/res/values/ids.xml b/android/app/src/main/res/values/ids.xml new file mode 100644 index 00000000000..bab9bf66bef --- /dev/null +++ b/android/app/src/main/res/values/ids.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/app/lib/native/KeyboardInversionA11yAndroid.ts b/app/lib/native/KeyboardInversionA11yAndroid.ts new file mode 100644 index 00000000000..1d4e7f2efa4 --- /dev/null +++ b/app/lib/native/KeyboardInversionA11yAndroid.ts @@ -0,0 +1,26 @@ +import type { TurboModule } from 'react-native'; +import { TurboModuleRegistry } from 'react-native'; + +export interface KeyboardInversionState { + enabled: boolean; + scope: 'room-view' | null; +} + +interface Spec extends TurboModule { + enable(scope: 'room-view'): void; + disable(): void; + getState(): Promise; +} + +const NativeModule = TurboModuleRegistry.getEnforcing('KeyboardA11y'); + +export const enableRoomViewKeyboardA11y = (scope: 'room-view' = 'room-view') => { + NativeModule.enable(scope); +}; + +export const disableKeyboardA11y = () => { + NativeModule.disable(); +}; + +export const getKeyboardA11yState = () => NativeModule.getState(); + diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index 89c851ab168..2c09fbb734a 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -97,6 +97,7 @@ import { type IMessageComposerRef, MessageComposerContainer } from '../../contai import { RoomContext } from './context'; import AudioManager from '../../lib/methods/AudioManager'; import { type IListContainerRef, type TListRef } from './List/definitions'; +import { enableRoomViewKeyboardA11y, disableKeyboardA11y } from '../../lib/native/KeyboardInversionA11yAndroid'; import { getMessageById } from '../../lib/database/services/Message'; import { getThreadById } from '../../lib/database/services/Thread'; import { isE2EEDisabledEncryptedRoom, isMissingRoomE2EEKey } from '../../lib/encryption/utils'; @@ -235,6 +236,8 @@ class RoomView extends React.Component { } else { EventEmitter.addEventListener('connected', this.handleConnected); } + // Enable hardware keyboard a11y inversion for this room on Android + enableRoomViewKeyboardA11y('room-view'); } if (this.jumpToMessageId) { this.jumpToMessage(this.jumpToMessageId); @@ -385,6 +388,7 @@ class RoomView extends React.Component { if (!this.tmid) { await AudioManager.unloadRoomAudios(this.rid); } + disableKeyboardA11y(); } canForwardGuest = async () => { From 98ea3b5f5d41352b57b665cd626fbad30a986d0e Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 12 Mar 2026 19:40:23 -0300 Subject: [PATCH 015/108] test: invert navigation --- .../scroll/InvertedScrollView.java | 47 ++++++++++++++----- .../List/components/InvertedScrollView.tsx | 1 - app/views/RoomView/index.tsx | 4 -- 3 files changed, 35 insertions(+), 17 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index b1d5ceed0a4..0898f4d9323 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -1,23 +1,46 @@ package chat.rocket.reactnative.scroll; -import android.view.View; -import com.facebook.react.views.view.ReactViewGroup; -import java.util.ArrayList; -import java.util.Collections; +import android.content.Context; +import android.view.KeyEvent; +import com.facebook.react.views.scroll.ReactScrollView; /** - * Content view for inverted FlatLists. Reports its children to accessibility in reversed order so - * TalkBack traversal matches the visual order (newest-first) when used inside InvertedScrollView. + * Custom ScrollView for inverted FlatLists that remaps DPAD and Tab key events + * so keyboard navigation follows the visual order instead of the inverted view-tree order. */ -public class InvertedScrollContentView extends ReactViewGroup { +public class InvertedScrollView extends ReactScrollView { - public InvertedScrollContentView(android.content.Context context) { + public InvertedScrollView(Context context) { super(context); } @Override - public void addChildrenForAccessibility(ArrayList outChildren) { - super.addChildrenForAccessibility(outChildren); - Collections.reverse(outChildren); + public boolean dispatchKeyEvent(KeyEvent event) { + int keyCode = event.getKeyCode(); + boolean isShiftPressed = event.isShiftPressed(); + + int mapped; + switch (keyCode) { + case KeyEvent.KEYCODE_DPAD_DOWN: + mapped = KeyEvent.KEYCODE_DPAD_UP; + break; + case KeyEvent.KEYCODE_DPAD_UP: + mapped = KeyEvent.KEYCODE_DPAD_DOWN; + break; + case KeyEvent.KEYCODE_TAB: + mapped = isShiftPressed ? KeyEvent.KEYCODE_DPAD_DOWN : KeyEvent.KEYCODE_DPAD_UP; + break; + default: + return super.dispatchKeyEvent(event); + } + + KeyEvent invertedEvent = new KeyEvent( + event.getDownTime(), event.getEventTime(), + event.getAction(), mapped, + event.getRepeatCount(), event.getMetaState(), + event.getDeviceId(), event.getScanCode(), + event.getFlags(), event.getSource() + ); + return super.dispatchKeyEvent(invertedEvent); } -} \ No newline at end of file +} diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index 89bc255ebc3..3c37f080b26 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -140,7 +140,6 @@ const InvertedScrollView = forwardRef; - console.log('props.inverted', props.inverted); return ( { } else { EventEmitter.addEventListener('connected', this.handleConnected); } - // Enable hardware keyboard a11y inversion for this room on Android - enableRoomViewKeyboardA11y('room-view'); } if (this.jumpToMessageId) { this.jumpToMessage(this.jumpToMessageId); @@ -388,7 +385,6 @@ class RoomView extends React.Component { if (!this.tmid) { await AudioManager.unloadRoomAudios(this.rid); } - disableKeyboardA11y(); } canForwardGuest = async () => { From 083f4d72f74efdf10804beb0a6f0710d49ef32c1 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 12 Mar 2026 22:43:00 +0000 Subject: [PATCH 016/108] chore: format code and fix lint issues --- app/lib/native/KeyboardInversionA11yAndroid.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/lib/native/KeyboardInversionA11yAndroid.ts b/app/lib/native/KeyboardInversionA11yAndroid.ts index 1d4e7f2efa4..6f26387272f 100644 --- a/app/lib/native/KeyboardInversionA11yAndroid.ts +++ b/app/lib/native/KeyboardInversionA11yAndroid.ts @@ -23,4 +23,3 @@ export const disableKeyboardA11y = () => { }; export const getKeyboardA11yState = () => NativeModule.getState(); - From bde3b230ebe793fd4cd70d027c56ec1081a79d39 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 12 Mar 2026 19:45:29 -0300 Subject: [PATCH 017/108] space --- .../java/chat/rocket/reactnative/scroll/InvertedScrollView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index 0898f4d9323..c9a38065667 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -4,6 +4,7 @@ import android.view.KeyEvent; import com.facebook.react.views.scroll.ReactScrollView; + /** * Custom ScrollView for inverted FlatLists that remaps DPAD and Tab key events * so keyboard navigation follows the visual order instead of the inverted view-tree order. From bb3556d46a52b0f0a401676fcfa55168c968dad7 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 13 Mar 2026 14:21:03 -0300 Subject: [PATCH 018/108] fix: build --- .../chat/rocket/reactnative/a11y/KeyboardA11yModule.java | 9 +++++---- .../java/chat/rocket/reactnative/scroll/FocusUtils.java | 1 + .../reactnative/scroll/InvertedScrollContentView.java | 1 + 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java index afcf82507c1..68b4506ba44 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java +++ b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java @@ -4,6 +4,7 @@ import com.facebook.react.bridge.Promise; import com.facebook.react.bridge.ReactApplicationContext; +import com.facebook.react.bridge.WritableMap; import com.facebook.react.module.annotations.ReactModule; @ReactModule(name = KeyboardA11ySpec.NAME) @@ -40,10 +41,10 @@ public void disable() { @Override public void getState(Promise promise) { - promise.resolve( - com.facebook.react.bridge.Arguments.createMap() - .putBoolean("enabled", sEnabled) - .putString("scope", sScope)); + WritableMap state = com.facebook.react.bridge.Arguments.createMap(); + state.putBoolean("enabled", sEnabled); + state.putString("scope", sScope); + promise.resolve(state); } } diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java index 83a6396e305..ec17d8e7cf5 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java @@ -2,6 +2,7 @@ import android.view.View; import android.view.ViewParent; +import chat.rocket.reactnative.R; /** * Utilities for focus-related queries inside custom scroll views. diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java index b0430783cde..f14a6e1b267 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java @@ -4,6 +4,7 @@ import com.facebook.react.views.view.ReactViewGroup; import java.util.ArrayList; import java.util.Collections; +import chat.rocket.reactnative.R; /** * Content view for inverted FlatLists. Reports its children to accessibility in reversed order so From cdd5ef886aab84b4d65ce2a8faadcdaa65f2ed87 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 13 Mar 2026 14:58:06 -0300 Subject: [PATCH 019/108] fix: keyboard navigation still working on different rooms --- .../scroll/InvertedScrollView.java | 113 +++++++++++++----- 1 file changed, 85 insertions(+), 28 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index c9a38065667..f5339bb6a77 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -1,16 +1,25 @@ package chat.rocket.reactnative.scroll; import android.content.Context; +import android.view.FocusFinder; import android.view.KeyEvent; +import android.view.View; +import android.view.ViewGroup; +import android.view.ViewParent; import com.facebook.react.views.scroll.ReactScrollView; - /** - * Custom ScrollView for inverted FlatLists that remaps DPAD and Tab key events - * so keyboard navigation follows the visual order instead of the inverted view-tree order. + * Custom ScrollView for inverted FlatLists that corrects keyboard navigation so it follows + * the visual order instead of the inverted view-tree order. + * + * DPAD arrows are swapped unconditionally (stateless). + * Tab/Shift+Tab are handled manually via requestFocus to avoid position-sort issues + * with FOCUS_FORWARD/FOCUS_BACKWARD, and to allow clean exit at list boundaries. */ public class InvertedScrollView extends ReactScrollView { + private boolean mTabConsumed = false; + public InvertedScrollView(Context context) { super(context); } @@ -18,30 +27,78 @@ public InvertedScrollView(Context context) { @Override public boolean dispatchKeyEvent(KeyEvent event) { int keyCode = event.getKeyCode(); - boolean isShiftPressed = event.isShiftPressed(); - - int mapped; - switch (keyCode) { - case KeyEvent.KEYCODE_DPAD_DOWN: - mapped = KeyEvent.KEYCODE_DPAD_UP; - break; - case KeyEvent.KEYCODE_DPAD_UP: - mapped = KeyEvent.KEYCODE_DPAD_DOWN; - break; - case KeyEvent.KEYCODE_TAB: - mapped = isShiftPressed ? KeyEvent.KEYCODE_DPAD_DOWN : KeyEvent.KEYCODE_DPAD_UP; - break; - default: - return super.dispatchKeyEvent(event); - } - - KeyEvent invertedEvent = new KeyEvent( - event.getDownTime(), event.getEventTime(), - event.getAction(), mapped, - event.getRepeatCount(), event.getMetaState(), - event.getDeviceId(), event.getScanCode(), - event.getFlags(), event.getSource() - ); - return super.dispatchKeyEvent(invertedEvent); + + if (keyCode == KeyEvent.KEYCODE_DPAD_DOWN || keyCode == KeyEvent.KEYCODE_DPAD_UP) { + int mapped = (keyCode == KeyEvent.KEYCODE_DPAD_DOWN) + ? KeyEvent.KEYCODE_DPAD_UP + : KeyEvent.KEYCODE_DPAD_DOWN; + KeyEvent invertedEvent = new KeyEvent( + event.getDownTime(), event.getEventTime(), + event.getAction(), mapped, + event.getRepeatCount(), event.getMetaState(), + event.getDeviceId(), event.getScanCode(), + event.getFlags(), event.getSource() + ); + return super.dispatchKeyEvent(invertedEvent); + } + + if (keyCode == KeyEvent.KEYCODE_TAB) { + if (event.getAction() == KeyEvent.ACTION_DOWN) { + return handleTabDown(event.isShiftPressed()); + } + return mTabConsumed; + } + + return super.dispatchKeyEvent(event); + } + + private boolean handleTabDown(boolean isShiftPressed) { + View focused = findFocus(); + if (focused == null) { + mTabConsumed = false; + return false; + } + + int searchDir = isShiftPressed ? View.FOCUS_DOWN : View.FOCUS_UP; + View next = FocusFinder.getInstance().findNextFocus(this, focused, searchDir); + + if (next != null && next != focused) { + mTabConsumed = true; + return next.requestFocus(searchDir); + } + + int exitDir = isShiftPressed ? View.FOCUS_UP : View.FOCUS_DOWN; + View exitTarget = findExitTarget(exitDir); + if (exitTarget != null) { + mTabConsumed = true; + return exitTarget.requestFocus(exitDir); + } + + mTabConsumed = true; + return true; + } + + private View findExitTarget(int direction) { + View rootView = getRootView(); + if (!(rootView instanceof ViewGroup)) { + return null; + } + View target = FocusFinder.getInstance() + .findNextFocus((ViewGroup) rootView, this, direction); + if (target != null && !isDescendantOf(target, this)) { + return target; + } + return null; + } + + private static boolean isDescendantOf(View view, ViewGroup ancestor) { + ViewParent parent = view.getParent(); + while (parent != null) { + if (parent == ancestor) { + return true; + } + parent = parent.getParent(); + } + return false; } } From b07d06b5c0888459ab21770a464f03be44528660 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 13 Mar 2026 17:47:57 -0300 Subject: [PATCH 020/108] fix: last item focus --- .../scroll/InvertedScrollContentView.java | 17 ++++ .../scroll/InvertedScrollView.java | 91 +++++++++++++------ .../scroll/InvertedScrollViewManager.java | 7 ++ app/views/RoomView/List/components/List.tsx | 2 +- app/views/RoomView/index.tsx | 6 +- 5 files changed, 92 insertions(+), 31 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java index f14a6e1b267..02003559c6d 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java @@ -1,5 +1,6 @@ package chat.rocket.reactnative.scroll; +import android.graphics.Rect; import android.view.View; import com.facebook.react.views.view.ReactViewGroup; import java.util.ArrayList; @@ -35,6 +36,22 @@ public void addChildrenForAccessibility(ArrayList outChildren) { } } + @Override + protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) { + if (mIsInvertedContent) { + for (int i = getChildCount() - 1; i >= 0; i--) { + View child = getChildAt(i); + if (child.getVisibility() == VISIBLE) { + if (child.requestFocus(direction, previouslyFocusedRect)) { + return true; + } + } + } + return false; + } + return super.onRequestFocusInDescendants(direction, previouslyFocusedRect); + } + @Override public void addFocusables(ArrayList views, int direction, int focusableMode) { super.addFocusables(views, direction, focusableMode); diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index f5339bb6a77..281dc32f87f 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -6,79 +6,112 @@ import android.view.View; import android.view.ViewGroup; import android.view.ViewParent; +import androidx.annotation.Nullable; +import com.facebook.react.uimanager.util.ReactFindViewUtil; import com.facebook.react.views.scroll.ReactScrollView; /** * Custom ScrollView for inverted FlatLists that corrects keyboard navigation so it follows * the visual order instead of the inverted view-tree order. * - * DPAD arrows are swapped unconditionally (stateless). - * Tab/Shift+Tab are handled manually via requestFocus to avoid position-sort issues - * with FOCUS_FORWARD/FOCUS_BACKWARD, and to allow clean exit at list boundaries. + * Both Tab/Shift+Tab and DPAD arrows navigate between FlatList cells (direct children of the + * content view) to avoid loops caused by inner focusable elements within a single message. + * Boundary exit uses ReactFindViewUtil to find a tagged exit-target view by nativeID. */ public class InvertedScrollView extends ReactScrollView { - private boolean mTabConsumed = false; + private boolean mKeyConsumed = false; + private @Nullable String mExitFocusNativeId; public InvertedScrollView(Context context) { super(context); } + public void setExitFocusNativeId(@Nullable String nativeId) { + mExitFocusNativeId = nativeId; + } + @Override public boolean dispatchKeyEvent(KeyEvent event) { int keyCode = event.getKeyCode(); if (keyCode == KeyEvent.KEYCODE_DPAD_DOWN || keyCode == KeyEvent.KEYCODE_DPAD_UP) { - int mapped = (keyCode == KeyEvent.KEYCODE_DPAD_DOWN) - ? KeyEvent.KEYCODE_DPAD_UP - : KeyEvent.KEYCODE_DPAD_DOWN; - KeyEvent invertedEvent = new KeyEvent( - event.getDownTime(), event.getEventTime(), - event.getAction(), mapped, - event.getRepeatCount(), event.getMetaState(), - event.getDeviceId(), event.getScanCode(), - event.getFlags(), event.getSource() - ); - return super.dispatchKeyEvent(invertedEvent); + if (event.getAction() == KeyEvent.ACTION_DOWN) { + boolean isForward = (keyCode == KeyEvent.KEYCODE_DPAD_DOWN); + mKeyConsumed = handleCellNavigation(isForward); + return mKeyConsumed; + } + return mKeyConsumed; } if (keyCode == KeyEvent.KEYCODE_TAB) { if (event.getAction() == KeyEvent.ACTION_DOWN) { - return handleTabDown(event.isShiftPressed()); + boolean isForward = !event.isShiftPressed(); + mKeyConsumed = handleCellNavigation(isForward); + return mKeyConsumed; } - return mTabConsumed; + return mKeyConsumed; } return super.dispatchKeyEvent(event); } - private boolean handleTabDown(boolean isShiftPressed) { + /** + * Shared navigation logic for Tab and DPAD. + * @param isForward true = visual down (Tab / DPAD_DOWN), false = visual up (Shift+Tab / DPAD_UP) + */ + private boolean handleCellNavigation(boolean isForward) { View focused = findFocus(); - if (focused == null) { - mTabConsumed = false; + if (focused == null || getChildCount() == 0) { return false; } - int searchDir = isShiftPressed ? View.FOCUS_DOWN : View.FOCUS_UP; - View next = FocusFinder.getInstance().findNextFocus(this, focused, searchDir); + ViewGroup contentView = (ViewGroup) getChildAt(0); + int cellIndex = findContainingCellIndex(contentView, focused); + if (cellIndex < 0) { + return false; + } - if (next != null && next != focused) { - mTabConsumed = true; - return next.requestFocus(searchDir); + int step = isForward ? -1 : 1; + int focusDir = isForward ? View.FOCUS_UP : View.FOCUS_DOWN; + + for (int i = cellIndex + step; i >= 0 && i < contentView.getChildCount(); i += step) { + View cell = contentView.getChildAt(i); + if (cell != null && cell.getVisibility() == VISIBLE && cell.requestFocus(focusDir)) { + return true; + } } - int exitDir = isShiftPressed ? View.FOCUS_UP : View.FOCUS_DOWN; + int exitDir = isForward ? View.FOCUS_DOWN : View.FOCUS_UP; View exitTarget = findExitTarget(exitDir); if (exitTarget != null) { - mTabConsumed = true; - return exitTarget.requestFocus(exitDir); + exitTarget.requestFocus(); + return true; } - mTabConsumed = true; return true; } + private int findContainingCellIndex(ViewGroup contentView, View focused) { + View current = focused; + while (current != null && current.getParent() != contentView) { + ViewParent p = current.getParent(); + if (p instanceof View) { + current = (View) p; + } else { + return -1; + } + } + return current != null ? contentView.indexOfChild(current) : -1; + } + private View findExitTarget(int direction) { + if (mExitFocusNativeId != null) { + View target = ReactFindViewUtil.findView(getRootView(), mExitFocusNativeId); + if (target != null) { + return target; + } + } View rootView = getRootView(); if (!(rootView instanceof ViewGroup)) { return null; diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollViewManager.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollViewManager.java index 453dd009ec0..30ad13084d7 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollViewManager.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollViewManager.java @@ -1,7 +1,9 @@ package chat.rocket.reactnative.scroll; +import androidx.annotation.Nullable; import com.facebook.react.module.annotations.ReactModule; import com.facebook.react.uimanager.ThemedReactContext; +import com.facebook.react.uimanager.annotations.ReactProp; import com.facebook.react.views.scroll.ReactScrollViewManager; /** @@ -23,4 +25,9 @@ public String getName() { public InvertedScrollView createViewInstance(ThemedReactContext context) { return new InvertedScrollView(context); } + + @ReactProp(name = "exitFocusNativeId") + public void setExitFocusNativeId(InvertedScrollView view, @Nullable String nativeId) { + view.setExitFocusNativeId(nativeId); + } } diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index 7ffe0135587..cccaaa044d2 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -44,7 +44,7 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { contentContainerStyle={styles.contentContainer} style={styles.list} inverted - renderScrollComponent={isIOS ? undefined : props => } + renderScrollComponent={isIOS ? undefined : props => } removeClippedSubviews={isIOS} initialNumToRender={7} onEndReachedThreshold={0.5} diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index 89c851ab168..8c9130c2af8 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -1556,7 +1556,11 @@ class RoomView extends React.Component { } } - return ; + return ( + + + + ); }; renderActions = () => { From 425187b22bd38365c1e29d210dddd726d78286e2 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 13 Mar 2026 20:50:39 +0000 Subject: [PATCH 021/108] chore: format code and fix lint issues --- app/views/RoomView/List/components/List.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index cccaaa044d2..df39d0f3d0c 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -44,7 +44,9 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { contentContainerStyle={styles.contentContainer} style={styles.list} inverted - renderScrollComponent={isIOS ? undefined : props => } + renderScrollComponent={ + isIOS ? undefined : props => + } removeClippedSubviews={isIOS} initialNumToRender={7} onEndReachedThreshold={0.5} From 4731276a44c114fa5d5f16efc1bd44681b7b50ff Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 13 Mar 2026 19:41:48 -0300 Subject: [PATCH 022/108] fix: change focus --- app/containers/MessageComposer/MessageComposer.tsx | 3 ++- app/containers/MessageComposer/interfaces.ts | 1 + app/views/RoomView/index.tsx | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/app/containers/MessageComposer/MessageComposer.tsx b/app/containers/MessageComposer/MessageComposer.tsx index 0c39eea5946..6aa61756356 100644 --- a/app/containers/MessageComposer/MessageComposer.tsx +++ b/app/containers/MessageComposer/MessageComposer.tsx @@ -55,7 +55,8 @@ export const MessageComposer = ({ useImperativeHandle(forwardedRef, () => ({ closeEmojiKeyboardAndAction, getText: composerInputComponentRef.current?.getText, - setInput: composerInputComponentRef.current?.setInput + setInput: composerInputComponentRef.current?.setInput, + focus: composerInputComponentRef.current?.focus })); useBackHandler(() => { diff --git a/app/containers/MessageComposer/interfaces.ts b/app/containers/MessageComposer/interfaces.ts index 13257d5497e..4b6a37432a1 100644 --- a/app/containers/MessageComposer/interfaces.ts +++ b/app/containers/MessageComposer/interfaces.ts @@ -6,6 +6,7 @@ export interface IMessageComposerRef { closeEmojiKeyboardAndAction: (action?: Function, params?: any) => void; getText: () => string; setInput: TSetInput; + focus: () => void; } export interface IMessageComposerContainerProps { diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index 8c9130c2af8..53ccb095ce8 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -253,6 +253,11 @@ class RoomView extends React.Component { this.unsubscribeBlur = navigation.addListener('blur', () => { AudioManager.pauseAudio(); }); + this.unsubscribeFocus = navigation.addListener('focus', () => { + InteractionManager.runAfterInteractions(() => { + this.messageComposerRef.current?.focus(); + }); + }); } shouldComponentUpdate(nextProps: IRoomViewProps, nextState: IRoomViewState) { From 0c311b27d1df411eef59120adab035a803a8c3b0 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 16 Mar 2026 11:04:50 -0300 Subject: [PATCH 023/108] fix: lint --- .../List/components/InvertedScrollView.tsx | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index a441c25893c..f95087dba2d 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -1,7 +1,11 @@ import React, { forwardRef } from 'react'; import { ScrollView, requireNativeComponent, type ScrollViewProps, type ViewProps } from 'react-native'; -const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); +interface IInvertedScrollContentViewProps extends ViewProps { + exitFocusNativeId?: string; +} + +const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); /** * Android-only scroll component that wraps the standard ScrollView but uses a native content view @@ -9,12 +13,18 @@ const NativeInvertedScrollContentView = requireNativeComponent('Inver * in the wrong order, while preserving all ScrollView JS-side behavior (responder handling, * momentum events, touch coordination). */ -const InvertedScrollView = forwardRef((props, ref) => { - const { children, ...rest } = props; +interface InvertedScrollViewProps extends ScrollViewProps { + exitFocusNativeId?: string; +} + +const InvertedScrollView = forwardRef((props, ref) => { + const { children, exitFocusNativeId, ...rest } = props; return ( - {children} + + {children} + ); }); From b591ecff22775f60301879f4a36333132d953947 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 18 Mar 2026 15:50:28 -0300 Subject: [PATCH 024/108] fix: merge issues --- .../List/components/InvertedScrollView.tsx | 45 +++++++++++++++---- 1 file changed, 37 insertions(+), 8 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index f95087dba2d..a75a49f2311 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -1,12 +1,12 @@ import React, { forwardRef } from 'react'; -import { ScrollView, requireNativeComponent, type ScrollViewProps, type ViewProps } from 'react-native'; +import { type ScrollView, requireNativeComponent, type ScrollViewProps, type ViewProps, StyleSheet } from 'react-native'; interface IInvertedScrollContentViewProps extends ViewProps { exitFocusNativeId?: string; } const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); - +const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); /** * Android-only scroll component that wraps the standard ScrollView but uses a native content view * that reverses accessibility traversal order. This fixes TalkBack reading inverted FlatList items @@ -17,15 +17,44 @@ interface InvertedScrollViewProps extends ScrollViewProps { exitFocusNativeId?: string; } -const InvertedScrollView = forwardRef((props, ref) => { - const { children, exitFocusNativeId, ...rest } = props; +const styles = StyleSheet.create({ + baseVertical: { + flexGrow: 1, + flexShrink: 1, + flexDirection: 'column', + overflow: 'scroll' + }, + baseHorizontal: { + flexGrow: 1, + flexShrink: 1, + flexDirection: 'row', + overflow: 'scroll' + } +}); +const InvertedScrollView = forwardRef((props, ref) => { + const { + children, + contentContainerStyle, + onContentSizeChange, + removeClippedSubviews, + maintainVisibleContentPosition, + snapToAlignment, + stickyHeaderIndices, + horizontal, + ...rest + } = props; + const ContentView = NativeInvertedScrollContentView as React.ComponentType< + ViewProps & { removeClippedSubviews?: boolean; isInvertedContent?: boolean; exitFocusNativeId?: string } + >; + const baseStyle = horizontal ? styles.baseHorizontal : styles.baseVertical; + const { style, ...restWithoutStyle } = rest; return ( - - + + {children} - - + + ); }); From 8064b66932df5a7ff26ea0b3964909d2e1ac1aca Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 18 Mar 2026 15:57:36 -0300 Subject: [PATCH 025/108] fix: lint --- .../RoomView/List/components/InvertedScrollView.tsx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index a75a49f2311..95fe1b4ed54 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -33,17 +33,7 @@ const styles = StyleSheet.create({ }); const InvertedScrollView = forwardRef((props, ref) => { - const { - children, - contentContainerStyle, - onContentSizeChange, - removeClippedSubviews, - maintainVisibleContentPosition, - snapToAlignment, - stickyHeaderIndices, - horizontal, - ...rest - } = props; + const { children, horizontal, ...rest } = props; const ContentView = NativeInvertedScrollContentView as React.ComponentType< ViewProps & { removeClippedSubviews?: boolean; isInvertedContent?: boolean; exitFocusNativeId?: string } >; From f4b730efa03952c1790fe33e51d6e276967a32b3 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 18 Mar 2026 19:04:51 +0000 Subject: [PATCH 026/108] chore: format code and fix lint issues --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b8e5a9b4bdb..bb3f37edb4d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ /* Basic Options */ // "incremental": true, /* Enable incremental compilation */ - "target": "esnext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */, + "target": "esnext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */, "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, // "lib": [], /* Specify library files to be included in the compilation. */ "allowJs": true /* Allow javascript files to be compiled. */, @@ -35,8 +35,8 @@ // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ /* Additional Checks */ - "noUnusedLocals": true, /* Report errors on unused locals. */ - "noUnusedParameters": true, /* Report errors on unused parameters. */ + "noUnusedLocals": true /* Report errors on unused locals. */, + "noUnusedParameters": true /* Report errors on unused parameters. */, // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ From 4b51b7ce9e2489fb2813d38a4885efb8579dd537 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 19 Mar 2026 11:46:48 -0300 Subject: [PATCH 027/108] rollback focus change --- app/containers/MessageComposer/MessageComposer.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/containers/MessageComposer/MessageComposer.tsx b/app/containers/MessageComposer/MessageComposer.tsx index 6aa61756356..0c39eea5946 100644 --- a/app/containers/MessageComposer/MessageComposer.tsx +++ b/app/containers/MessageComposer/MessageComposer.tsx @@ -55,8 +55,7 @@ export const MessageComposer = ({ useImperativeHandle(forwardedRef, () => ({ closeEmojiKeyboardAndAction, getText: composerInputComponentRef.current?.getText, - setInput: composerInputComponentRef.current?.setInput, - focus: composerInputComponentRef.current?.focus + setInput: composerInputComponentRef.current?.setInput })); useBackHandler(() => { From b87b186dcba1b94b86d5133468d30d6807d80dee Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 19 Mar 2026 15:17:16 -0300 Subject: [PATCH 028/108] focus inside of roomView! --- app/containers/RoomHeader/RoomHeader.tsx | 66 +++++++---- app/containers/RoomHeader/index.tsx | 139 ++++++++++++----------- app/lib/methods/helpers/goRoom.ts | 14 ++- app/stacks/types.ts | 1 + app/views/RoomView/index.tsx | 12 +- app/views/RoomsListView/index.tsx | 2 +- 6 files changed, 141 insertions(+), 93 deletions(-) diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index 35a44f5181f..68c319a0963 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, Text, useWindowDimensions, View } from 'react-native'; +import { AccessibilityInfo, findNodeHandle, StyleSheet, Text, useWindowDimensions, View } from 'react-native'; import { TouchableOpacity } from 'react-native-gesture-handler'; import { useResponsiveLayout } from '../../lib/hooks/useResponsiveLayout/useResponsiveLayout'; @@ -83,6 +83,10 @@ interface IRoomHeader { abacAttributes?: ISubscription['abacAttributes']; } +export interface IRoomHeaderRef { + focus: () => void; +} + const SubTitle = React.memo(({ usersTyping, subtitle, renderFunc, scale }: TRoomHeaderSubTitle) => { const { colors } = useTheme(); const fontSize = getSubTitleSize(scale); @@ -131,27 +135,44 @@ const HeaderTitle = React.memo(({ title, tmid, prid, scale, testID }: TRoomHeade return ; }); -const Header = React.memo( - ({ - title, - subtitle, - parentTitle, - type, - status, - width, - height, - roomUserId, - prid, - tmid, - onPress, - isGroupChat, - teamMain, - testID, - usersTyping = [], - sourceType, - disabled, - abacAttributes - }: IRoomHeader) => { +const Header = React.forwardRef( + ( + { + title, + subtitle, + parentTitle, + type, + status, + width, + height, + roomUserId, + prid, + tmid, + onPress, + isGroupChat, + teamMain, + testID, + usersTyping = [], + sourceType, + disabled, + abacAttributes + }: IRoomHeader, + ref + ) => { + const headerRef = React.useRef(null); + React.useImperativeHandle( + ref, + () => ({ + focus: () => { + const nodeHandle = headerRef.current ? findNodeHandle(headerRef.current) : null; + if (nodeHandle) { + AccessibilityInfo.setAccessibilityFocus(nodeHandle); + } + } + }), + [] + ); + const statusAccessibilityLabel = useStatusAccessibilityLabel({ isGroupChat, prid, @@ -197,6 +218,7 @@ const Header = React.memo( return ( { - let subtitle: string | undefined; - let statusVisitor: TUserStatus | undefined; - let statusText: string | undefined; - const { width, height } = useResponsiveLayout(); + React.forwardRef( + ( + { + isGroupChat, + onPress, + parentTitle, + prid, + roomUserId, + subtitle: subtitleProp, + teamMain, + testID, + title, + tmid, + type, + sourceType, + visitor, + disabled, + abacAttributes + }: IRoomHeaderContainerProps, + ref + ) => { + let subtitle: string | undefined; + let statusVisitor: TUserStatus | undefined; + let statusText: string | undefined; + const { width, height } = useResponsiveLayout(); - const connecting = useSelector((state: IApplicationState) => state.meteor.connecting || state.server.loading); - const usersTyping = useSelector((state: IApplicationState) => state.usersTyping, shallowEqual); - const connected = useSelector((state: IApplicationState) => state.meteor.connected); - const activeUser = useSelector( - (state: IApplicationState) => (roomUserId ? state.activeUsers?.[roomUserId] : undefined), - shallowEqual - ); + const connecting = useSelector((state: IApplicationState) => state.meteor.connecting || state.server.loading); + const usersTyping = useSelector((state: IApplicationState) => state.usersTyping, shallowEqual); + const connected = useSelector((state: IApplicationState) => state.meteor.connected); + const activeUser = useSelector( + (state: IApplicationState) => (roomUserId ? state.activeUsers?.[roomUserId] : undefined), + shallowEqual + ); - if (connecting) { - subtitle = I18n.t('Connecting'); - } else if (!connected) { - subtitle = I18n.t('Waiting_for_network'); - } else { - subtitle = subtitleProp; - } + if (connecting) { + subtitle = I18n.t('Connecting'); + } else if (!connected) { + subtitle = I18n.t('Waiting_for_network'); + } else { + subtitle = subtitleProp; + } - if (connected) { - if ((type === 'd' || (tmid && roomUserId)) && activeUser) { - const { statusText: statusTextActiveUser } = activeUser; - statusText = statusTextActiveUser; - } else if (type === 'l' && visitor?.status) { - ({ status: statusVisitor } = visitor); + if (connected) { + if ((type === 'd' || (tmid && roomUserId)) && activeUser) { + const { statusText: statusTextActiveUser } = activeUser; + statusText = statusTextActiveUser; + } else if (type === 'l' && visitor?.status) { + ({ status: statusVisitor } = visitor); + } } - } - return ( - - ); - } + return ( + + ); + } + ) ); export default RoomHeaderContainer; +export type { IRoomHeaderRef }; diff --git a/app/lib/methods/helpers/goRoom.ts b/app/lib/methods/helpers/goRoom.ts index 6119420898f..3e12cfc4845 100644 --- a/app/lib/methods/helpers/goRoom.ts +++ b/app/lib/methods/helpers/goRoom.ts @@ -25,7 +25,15 @@ interface IGoRoomItem { export type TGoRoomItem = IGoRoomItem | TSubscriptionModel | ISubscription | IOmnichannelRoomVisitor; -const navigate = ({ item, isMasterDetail, ...props }: { item: TGoRoomItem; isMasterDetail: boolean }) => { +const navigate = ({ + item, + isMasterDetail, + ...props +}: { + item: TGoRoomItem; + isMasterDetail: boolean; + focusHeaderOnOpen?: boolean; +}) => { const routeParams = { rid: item.rid, name: getRoomTitle(item), @@ -34,7 +42,8 @@ const navigate = ({ item, isMasterDetail, ...props }: { item: TGoRoomItem; isMas room: item, visitor: item.visitor, roomUserId: getUidDirectMessage(item), - ...props + ...props, + ...(isMasterDetail && props.focusHeaderOnOpen ? { focusHeaderOnOpen: true } : {}) }; const currentRoute = Navigation.getCurrentRoute() as any; @@ -91,6 +100,7 @@ export const goRoom = async ({ isMasterDetail: boolean; jumpToMessageId?: string; usedCannedResponse?: string; + focusHeaderOnOpen?: boolean; }): Promise => { if (!('id' in item) && item.t === SubscriptionType.DIRECT && item?.search) { // if user is using the search we need first to join/create room diff --git a/app/stacks/types.ts b/app/stacks/types.ts index c8afff63863..fbda5ef6b66 100644 --- a/app/stacks/types.ts +++ b/app/stacks/types.ts @@ -41,6 +41,7 @@ export type ChatsStackParamList = { jumpToThreadId?: string; roomUserId?: string | null; usedCannedResponse?: string; + focusHeaderOnOpen?: boolean; status?: string; } | undefined; // Navigates back to RoomView already on stack diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index 53ccb095ce8..cea430a6d7d 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -29,7 +29,7 @@ import MessageErrorActions, { type IMessageErrorActions } from '../../containers import log, { events, logEvent } from '../../lib/methods/helpers/log'; import EventEmitter from '../../lib/methods/helpers/events'; import I18n from '../../i18n'; -import RoomHeader from '../../containers/RoomHeader'; +import RoomHeader, { type IRoomHeaderRef } from '../../containers/RoomHeader'; import ReactionsList from '../../containers/ReactionsList'; import { LISTENER } from '../../containers/Toast'; import { getBadgeColor, isBlocked, makeThreadName } from '../../lib/methods/helpers/room'; @@ -117,6 +117,7 @@ class RoomView extends React.Component { private jumpToMessageId?: string; private jumpToThreadId?: string; private messageComposerRef: React.RefObject; + private roomHeaderRef: React.RefObject; private joinCode: React.RefObject; // ListContainer component private list: React.RefObject; @@ -201,6 +202,7 @@ class RoomView extends React.Component { this.updateE2EEState(); this.messageComposerRef = React.createRef(); + this.roomHeaderRef = React.createRef(); this.list = React.createRef(); this.flatList = React.createRef(); this.joinCode = React.createRef(); @@ -217,7 +219,7 @@ class RoomView extends React.Component { } componentDidMount() { - const { navigation, dispatch } = this.props; + const { navigation, dispatch, isMasterDetail, route } = this.props; const { selectedMessages } = this.state; dispatch(clearInAppFeedback()); this.mounted = true; @@ -255,6 +257,11 @@ class RoomView extends React.Component { }); this.unsubscribeFocus = navigation.addListener('focus', () => { InteractionManager.runAfterInteractions(() => { + if (isMasterDetail && route?.params?.focusHeaderOnOpen) { + this.roomHeaderRef.current?.focus(); + navigation.setParams({ focusHeaderOnOpen: undefined }); + return; + } this.messageComposerRef.current?.focus(); }); }); @@ -539,6 +546,7 @@ class RoomView extends React.Component { ), headerTitle: () => ( { From e546f31a161886cb564a78734deb3fe259b980f7 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 20 Mar 2026 13:37:55 -0300 Subject: [PATCH 029/108] rollback: useScrollContainer --- .../List/components/InvertedScrollView.tsx | 21 +++++++++++++------ app/views/RoomView/index.tsx | 2 +- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index 95fe1b4ed54..51e974dd8bd 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -1,12 +1,16 @@ import React, { forwardRef } from 'react'; -import { type ScrollView, requireNativeComponent, type ScrollViewProps, type ViewProps, StyleSheet } from 'react-native'; +import { requireNativeComponent, type ScrollViewProps, type ViewProps, StyleSheet } from 'react-native'; interface IInvertedScrollContentViewProps extends ViewProps { exitFocusNativeId?: string; } +interface IInvertedScrollViewNativeProps extends ScrollViewProps { + exitFocusNativeId?: string; +} + +const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); -const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); /** * Android-only scroll component that wraps the standard ScrollView but uses a native content view * that reverses accessibility traversal order. This fixes TalkBack reading inverted FlatList items @@ -32,19 +36,24 @@ const styles = StyleSheet.create({ } }); -const InvertedScrollView = forwardRef((props, ref) => { +const InvertedScrollView = forwardRef((props, ref) => { const { children, horizontal, ...rest } = props; const ContentView = NativeInvertedScrollContentView as React.ComponentType< ViewProps & { removeClippedSubviews?: boolean; isInvertedContent?: boolean; exitFocusNativeId?: string } >; + const ScrollContainer = NativeInvertedScrollView as React.ComponentType; const baseStyle = horizontal ? styles.baseHorizontal : styles.baseVertical; const { style, ...restWithoutStyle } = rest; return ( - - + + {children} - + ); }); diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index cea430a6d7d..3d90240e2a2 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -262,7 +262,7 @@ class RoomView extends React.Component { navigation.setParams({ focusHeaderOnOpen: undefined }); return; } - this.messageComposerRef.current?.focus(); + this.messageComposerRef.current?.focus?.(); }); }); } From 4d25dd333166219a1a8b22ae58f6c179e9ba8a19 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 20 Mar 2026 13:51:00 -0300 Subject: [PATCH 030/108] test: use a RNLike scrolview --- .../List/components/InvertedScrollView.tsx | 60 +---- .../components/RNLikeInvertedScrollView.tsx | 228 ++++++++++++++++++ 2 files changed, 232 insertions(+), 56 deletions(-) create mode 100644 app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index 51e974dd8bd..b1a68c23896 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -1,62 +1,10 @@ -import React, { forwardRef } from 'react'; -import { requireNativeComponent, type ScrollViewProps, type ViewProps, StyleSheet } from 'react-native'; +import type { ComponentType } from 'react'; +import { type ScrollViewProps } from 'react-native'; -interface IInvertedScrollContentViewProps extends ViewProps { - exitFocusNativeId?: string; -} - -interface IInvertedScrollViewNativeProps extends ScrollViewProps { - exitFocusNativeId?: string; -} +import RNLikeInvertedScrollView from './RNLikeInvertedScrollView'; -const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); -const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); -/** - * Android-only scroll component that wraps the standard ScrollView but uses a native content view - * that reverses accessibility traversal order. This fixes TalkBack reading inverted FlatList items - * in the wrong order, while preserving all ScrollView JS-side behavior (responder handling, - * momentum events, touch coordination). - */ interface InvertedScrollViewProps extends ScrollViewProps { exitFocusNativeId?: string; } -const styles = StyleSheet.create({ - baseVertical: { - flexGrow: 1, - flexShrink: 1, - flexDirection: 'column', - overflow: 'scroll' - }, - baseHorizontal: { - flexGrow: 1, - flexShrink: 1, - flexDirection: 'row', - overflow: 'scroll' - } -}); - -const InvertedScrollView = forwardRef((props, ref) => { - const { children, horizontal, ...rest } = props; - const ContentView = NativeInvertedScrollContentView as React.ComponentType< - ViewProps & { removeClippedSubviews?: boolean; isInvertedContent?: boolean; exitFocusNativeId?: string } - >; - const ScrollContainer = NativeInvertedScrollView as React.ComponentType; - const baseStyle = horizontal ? styles.baseHorizontal : styles.baseVertical; - const { style, ...restWithoutStyle } = rest; - return ( - - - {children} - - - ); -}); - -InvertedScrollView.displayName = 'InvertedScrollView'; - -export default InvertedScrollView; +export default RNLikeInvertedScrollView as ComponentType; diff --git a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx new file mode 100644 index 00000000000..c402ac1d0b5 --- /dev/null +++ b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx @@ -0,0 +1,228 @@ +import React from 'react'; +import { + Keyboard, + Platform, + StyleSheet, + TextInput, + type GestureResponderEvent, + type LayoutChangeEvent, + requireNativeComponent, + type ScrollViewProps, + type ViewProps +} from 'react-native'; + +interface InvertedScrollContentViewProps extends ViewProps { + isInvertedContent?: boolean; +} + +interface InvertedScrollViewNativeProps extends ScrollViewProps { + exitFocusNativeId?: string; +} + +interface Props extends ScrollViewProps { + exitFocusNativeId?: string; + scrollViewRef?: React.Ref; +} + +interface State { + layoutHeight: number | null; +} + +const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); +const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); + +const IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16; + +class RNLikeInvertedScrollView extends React.Component { + private scrollRef = React.createRef(); + private _keyboardMetrics: { height: number } | null = null; + private _isTouching = false; + private _lastMomentumScrollBeginTime = 0; + private _lastMomentumScrollEndTime = 0; + private _observedScrollSinceBecomingResponder = false; + private _subscriptionKeyboardDidShow?: { remove: () => void }; + private _subscriptionKeyboardDidHide?: { remove: () => void }; + + state: State = { + layoutHeight: null + }; + + componentDidMount() { + this._subscriptionKeyboardDidShow = Keyboard.addListener('keyboardDidShow', this.onKeyboardDidShow); + this._subscriptionKeyboardDidHide = Keyboard.addListener('keyboardDidHide', this.onKeyboardDidHide); + } + + componentWillUnmount() { + this._subscriptionKeyboardDidShow?.remove(); + this._subscriptionKeyboardDidHide?.remove(); + } + + private onKeyboardDidShow = (e: any) => { + this._keyboardMetrics = e?.endCoordinates ?? { height: 0 }; + }; + + private onKeyboardDidHide = (_e: any) => { + this._keyboardMetrics = null; + }; + + private isAnimating = () => { + const now = global.performance.now(); + const timeSinceLastMomentumScrollEnd = now - this._lastMomentumScrollEndTime; + return ( + timeSinceLastMomentumScrollEnd < IS_ANIMATING_TOUCH_START_THRESHOLD_MS || + this._lastMomentumScrollEndTime < this._lastMomentumScrollBeginTime + ); + }; + + private keyboardEventsAreUnreliable = () => Platform.OS === 'android' && Platform.Version < 30; + + private keyboardIsDismissible = () => { + const currentlyFocusedInput = TextInput.State.currentlyFocusedInput?.(); + const hasFocusedTextInput = currentlyFocusedInput != null; + const softKeyboardMayBeOpen = this._keyboardMetrics != null || this.keyboardEventsAreUnreliable(); + return hasFocusedTextInput && softKeyboardMayBeOpen; + }; + + private handleLayout = (e: LayoutChangeEvent) => { + if (this.props.invertStickyHeaders === true) { + this.setState({ layoutHeight: e.nativeEvent.layout.height }); + } + this.props.onLayout?.(e); + }; + + private handleContentOnLayout = (e: LayoutChangeEvent) => { + const { width, height } = e.nativeEvent.layout; + this.props.onContentSizeChange?.(width, height); + }; + + private handleScroll = (e: any) => { + this._observedScrollSinceBecomingResponder = true; + this.props.onScroll?.(e); + }; + + private handleMomentumScrollBegin = (e: any) => { + this._lastMomentumScrollBeginTime = global.performance.now(); + this.props.onMomentumScrollBegin?.(e); + }; + + private handleMomentumScrollEnd = (e: any) => { + this._lastMomentumScrollEndTime = global.performance.now(); + this.props.onMomentumScrollEnd?.(e); + }; + + private handleResponderGrant = (e: GestureResponderEvent) => { + this._observedScrollSinceBecomingResponder = false; + this.props.onResponderGrant?.(e); + }; + + private handleResponderRelease = (e: GestureResponderEvent) => { + this._isTouching = e.nativeEvent.touches.length !== 0; + this.props.onResponderRelease?.(e); + }; + + private handleResponderTerminationRequest = () => !this._observedScrollSinceBecomingResponder; + + private handleScrollShouldSetResponder = () => { + if (this.props.disableScrollViewPanResponder === true) { + return false; + } + return this._isTouching; + }; + + private handleStartShouldSetResponder = (e: GestureResponderEvent) => { + if (this.props.disableScrollViewPanResponder === true) { + return false; + } + const currentlyFocusedInput = TextInput.State.currentlyFocusedInput?.(); + if ( + this.props.keyboardShouldPersistTaps === 'handled' && + this.keyboardIsDismissible() && + e.target !== currentlyFocusedInput + ) { + return true; + } + return false; + }; + + private handleStartShouldSetResponderCapture = (e: GestureResponderEvent) => { + if (this.isAnimating()) { + return true; + } + if (this.props.disableScrollViewPanResponder === true) { + return false; + } + const { keyboardShouldPersistTaps } = this.props; + const keyboardNeverPersistTaps = !keyboardShouldPersistTaps || keyboardShouldPersistTaps === 'never'; + return keyboardNeverPersistTaps && this.keyboardIsDismissible() && e.target != null; + }; + + private setRefs = (instance: any) => { + this.scrollRef.current = instance; + const { scrollViewRef } = this.props; + if (!scrollViewRef) { + return; + } + if (typeof scrollViewRef === 'function') { + scrollViewRef(instance); + return; + } + (scrollViewRef as React.MutableRefObject).current = instance; + }; + + render() { + const { horizontal, children, style, contentContainerStyle, onContentSizeChange, ...rest } = this.props; + const contentStyle = [horizontal ? styles.contentContainerHorizontal : null, contentContainerStyle]; + const baseStyle = horizontal ? styles.baseHorizontal : styles.baseVertical; + const ScrollContainer = NativeInvertedScrollView as any; + + return ( + + + {children} + + + ); + } +} + +const styles = StyleSheet.create({ + baseVertical: { + flexGrow: 1, + flexShrink: 1, + flexDirection: 'column', + overflow: 'scroll' + }, + baseHorizontal: { + flexGrow: 1, + flexShrink: 1, + flexDirection: 'row', + overflow: 'scroll' + }, + contentContainerHorizontal: { + flexDirection: 'row' + } +}); + +const Wrapper = React.forwardRef((props, ref) => ); + +Wrapper.displayName = 'RNLikeInvertedScrollView'; + +export default Wrapper; From a2abc14558b2971b270949da75af933b6cef1b69 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 19 Mar 2026 19:03:23 -0300 Subject: [PATCH 031/108] fix: Pressable issues --- app/containers/Button/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index 2417157d8ae..4d0b2dfb784 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -1,6 +1,5 @@ import React from 'react'; -import { type StyleProp, StyleSheet, Text, type TextStyle, type ViewStyle } from 'react-native'; -import { Pressable, type PressableProps } from 'react-native-gesture-handler'; +import { type StyleProp, StyleSheet, Text, type TextStyle, type ViewStyle, Pressable, type PressableProps } from 'react-native'; import { useTheme } from '../../theme'; import sharedStyles from '../../views/Styles'; From 0b051b10804445ca95c3b2abf6bb24f684ae17fa Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 19 Mar 2026 19:15:43 -0300 Subject: [PATCH 032/108] fix: tests --- app/containers/Button/Button.test.tsx | 5 +- .../Button/__snapshots__/Button.test.tsx.snap | 480 ++++++---- .../__snapshots__/LoginServices.test.tsx.snap | 152 ++-- .../__snapshots__/UiKitMessage.test.tsx.snap | 850 +++++++++++------- .../__snapshots__/UiKitModal.test.tsx.snap | 732 +++++++++------ .../__snapshots__/Message.test.tsx.snap | 570 ++++++------ .../CannedResponseItem.test.tsx.snap | 148 +-- 7 files changed, 1727 insertions(+), 1210 deletions(-) diff --git a/app/containers/Button/Button.test.tsx b/app/containers/Button/Button.test.tsx index 1f63f7d4976..0658f5f37eb 100644 --- a/app/containers/Button/Button.test.tsx +++ b/app/containers/Button/Button.test.tsx @@ -64,9 +64,8 @@ describe('ButtonTests', () => { test('disabled button is in disabled state', async () => { const { findByTestId } = render(); const button = await findByTestId(testProps.testID); - // In the test environment, RNGH Pressable may still invoke onPress when disabled, - // so we assert the button is in a disabled state (enabled={false}). - expect(button.props.enabled).toBe(false); + fireEvent.press(button); + expect(onPressMock).not.toHaveBeenCalled(); }); test('should trigger onPress function on button press', async () => { diff --git a/app/containers/Button/__snapshots__/Button.test.tsx.snap b/app/containers/Button/__snapshots__/Button.test.tsx.snap index 4c0bdb49306..ade682daf0e 100644 --- a/app/containers/Button/__snapshots__/Button.test.tsx.snap +++ b/app/containers/Button/__snapshots__/Button.test.tsx.snap @@ -1,45 +1,59 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Story Snapshots: CustomButton should match snapshot 1`] = ` - Press me! - + `; exports[`Story Snapshots: DisabledButton should match snapshot 1`] = ` - Press me! - + `; exports[`Story Snapshots: DisabledLoadingButton should match snapshot 1`] = ` - - + `; exports[`Story Snapshots: LoadingButton should match snapshot 1`] = ` - - + `; exports[`Story Snapshots: PrimaryButton should match snapshot 1`] = ` - Press me! - + `; exports[`Story Snapshots: SecondaryButton should match snapshot 1`] = ` - Press me! - + `; exports[`Story Snapshots: SmallButton should match snapshot 1`] = ` - Press me! - + `; diff --git a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap index e36536132bb..8939389107e 100644 --- a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap +++ b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap @@ -2,44 +2,58 @@ exports[`Story Snapshots: Separators should match snapshot 1`] = ` [ - More options - , + , , - Less options - , + , - Approve - + , - Deny - + , - Deny - + , - Deny - + , - Deny - + , - Deny - + , - Deny - + , - Show more - , + , ] `; @@ -4779,44 +4891,58 @@ exports[`Story Snapshots: SectionButton should match snapshot 1`] = ` - button - + `; @@ -4921,42 +5047,56 @@ exports[`Story Snapshots: SectionDatePicker should match snapshot 1`] = ` - Select a date - + `; @@ -5268,42 +5408,56 @@ exports[`Story Snapshots: SectionMultiSelect should match snapshot 1`] = ` - 2 selecteds - + , - 0 selecteds - + , ] `; @@ -5551,7 +5719,7 @@ exports[`Story Snapshots: SectionOverflow should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={37} + handlerTag={1} handlerType="NativeViewGestureHandler" hitSlop={ { diff --git a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap index 7599afa0fc8..ff8fe70b718 100644 --- a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap @@ -1011,44 +1011,58 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` } />, - Primary Action - + , - Secondary - + , - Danger Action - + , - Button 4 - + , - Button 5 - + , - Button 6 - Hidden - + , - Button 7 - Hidden - + , - Button 8 - Hidden - + , - Show more - , + , - Change - + , - Text button - + @@ -109823,42 +109837,56 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - Text button - + @@ -110019,7 +110047,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={363} + handlerTag={357} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110146,7 +110174,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={364} + handlerTag={358} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110325,42 +110353,56 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot - Text button - + @@ -110508,7 +110550,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={365} + handlerTag={359} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110635,7 +110677,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={366} + handlerTag={360} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110979,42 +111021,56 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot - Text button - + @@ -111175,7 +111231,7 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={373} + handlerTag={361} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111302,7 +111358,7 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={374} + handlerTag={362} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111616,7 +111672,7 @@ exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={375} + handlerTag={363} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111743,7 +111799,7 @@ exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={376} + handlerTag={364} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112002,7 +112058,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={377} + handlerTag={365} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112224,7 +112280,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={378} + handlerTag={366} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112446,7 +112502,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={379} + handlerTag={367} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112671,7 +112727,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={380} + handlerTag={368} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112893,7 +112949,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={381} + handlerTag={369} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113115,7 +113171,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={382} + handlerTag={370} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113337,7 +113393,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={383} + handlerTag={371} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113559,7 +113615,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={384} + handlerTag={372} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113781,7 +113837,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={385} + handlerTag={373} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114003,7 +114059,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={386} + handlerTag={374} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114225,7 +114281,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={387} + handlerTag={375} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114447,7 +114503,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={388} + handlerTag={376} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114669,7 +114725,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={389} + handlerTag={377} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114891,7 +114947,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={390} + handlerTag={378} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115113,7 +115169,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={391} + handlerTag={379} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115335,7 +115391,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={392} + handlerTag={380} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115557,7 +115613,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={393} + handlerTag={381} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115779,7 +115835,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={394} + handlerTag={382} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116001,7 +116057,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={395} + handlerTag={383} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116223,7 +116279,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={396} + handlerTag={384} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116445,7 +116501,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={397} + handlerTag={385} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116667,7 +116723,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={398} + handlerTag={386} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116889,7 +116945,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={399} + handlerTag={387} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117111,7 +117167,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={400} + handlerTag={388} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117333,7 +117389,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={401} + handlerTag={389} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117555,7 +117611,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={402} + handlerTag={390} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117768,7 +117824,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={403} + handlerTag={391} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117990,7 +118046,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={404} + handlerTag={392} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118212,7 +118268,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={405} + handlerTag={393} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118437,7 +118493,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={406} + handlerTag={394} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118659,7 +118715,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={407} + handlerTag={395} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118881,7 +118937,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={408} + handlerTag={396} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119103,7 +119159,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={409} + handlerTag={397} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119325,7 +119381,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={410} + handlerTag={398} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119547,7 +119603,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={411} + handlerTag={399} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119769,7 +119825,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={412} + handlerTag={400} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119991,7 +120047,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={413} + handlerTag={401} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120213,7 +120269,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={414} + handlerTag={402} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120435,7 +120491,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={415} + handlerTag={403} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120657,7 +120713,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={416} + handlerTag={404} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120879,7 +120935,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={417} + handlerTag={405} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121101,7 +121157,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={418} + handlerTag={406} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121323,7 +121379,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={419} + handlerTag={407} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121545,7 +121601,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={420} + handlerTag={408} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121767,7 +121823,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={421} + handlerTag={409} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121989,7 +122045,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={422} + handlerTag={410} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122211,7 +122267,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={423} + handlerTag={411} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122433,7 +122489,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={424} + handlerTag={412} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122655,7 +122711,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={425} + handlerTag={413} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122877,7 +122933,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={426} + handlerTag={414} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123099,7 +123155,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={427} + handlerTag={415} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123321,7 +123377,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={428} + handlerTag={416} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123589,7 +123645,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={429} + handlerTag={417} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123716,7 +123772,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={430} + handlerTag={418} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124035,7 +124091,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={431} + handlerTag={419} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124162,7 +124218,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={432} + handlerTag={420} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124481,7 +124537,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={433} + handlerTag={421} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124608,7 +124664,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={434} + handlerTag={422} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125133,7 +125189,7 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] collapsable={false} delayLongPress={600} enabled={true} - handlerTag={435} + handlerTag={423} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125260,7 +125316,7 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] collapsable={false} delayLongPress={600} enabled={true} - handlerTag={436} + handlerTag={424} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125785,7 +125841,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={437} + handlerTag={425} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125912,7 +125968,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={438} + handlerTag={426} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126226,7 +126282,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={439} + handlerTag={427} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126353,7 +126409,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={440} + handlerTag={428} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126668,7 +126724,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={441} + handlerTag={429} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126795,7 +126851,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={442} + handlerTag={430} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127145,7 +127201,7 @@ exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={443} + handlerTag={431} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127272,7 +127328,7 @@ exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={444} + handlerTag={432} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127621,7 +127677,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={445} + handlerTag={433} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127748,7 +127804,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={446} + handlerTag={434} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -128778,7 +128834,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match collapsable={false} delayLongPress={600} enabled={true} - handlerTag={447} + handlerTag={435} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -128905,7 +128961,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match collapsable={false} delayLongPress={600} enabled={true} - handlerTag={448} + handlerTag={436} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -129935,7 +129991,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={449} + handlerTag={437} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -130062,7 +130118,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={450} + handlerTag={438} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -130500,7 +130556,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={451} + handlerTag={439} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -130627,7 +130683,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={452} + handlerTag={440} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131315,7 +131371,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={453} + handlerTag={441} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131442,7 +131498,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={454} + handlerTag={442} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131782,7 +131838,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={455} + handlerTag={443} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131909,7 +131965,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={456} + handlerTag={444} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132205,7 +132261,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={457} + handlerTag={445} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132332,7 +132388,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={458} + handlerTag={446} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132672,7 +132728,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={459} + handlerTag={447} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132799,7 +132855,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={460} + handlerTag={448} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133095,7 +133151,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={461} + handlerTag={449} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133222,7 +133278,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={462} + handlerTag={450} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133660,7 +133716,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={463} + handlerTag={451} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133787,7 +133843,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={464} + handlerTag={452} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -134475,7 +134531,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={465} + handlerTag={453} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -134602,7 +134658,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={466} + handlerTag={454} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -134922,7 +134978,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={467} + handlerTag={455} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135049,7 +135105,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={468} + handlerTag={456} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135382,7 +135438,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={469} + handlerTag={457} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135509,7 +135565,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={470} + handlerTag={458} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135829,7 +135885,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={471} + handlerTag={459} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135956,7 +136012,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={472} + handlerTag={460} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136289,7 +136345,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={473} + handlerTag={461} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136416,7 +136472,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={474} + handlerTag={462} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136850,7 +136906,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` - Use - + - Use - + Date: Tue, 24 Mar 2026 19:15:11 -0300 Subject: [PATCH 033/108] use rectButton --- app/containers/Button/Button.test.tsx | 4 +- .../Button/__snapshots__/Button.test.tsx.snap | 521 +++++++++--------- app/containers/Button/index.tsx | 20 +- 3 files changed, 277 insertions(+), 268 deletions(-) diff --git a/app/containers/Button/Button.test.tsx b/app/containers/Button/Button.test.tsx index 0658f5f37eb..97a3d21987d 100644 --- a/app/containers/Button/Button.test.tsx +++ b/app/containers/Button/Button.test.tsx @@ -64,8 +64,8 @@ describe('ButtonTests', () => { test('disabled button is in disabled state', async () => { const { findByTestId } = render(); const button = await findByTestId(testProps.testID); - fireEvent.press(button); - expect(onPressMock).not.toHaveBeenCalled(); + // RectButton uses enabled={false}; RNGestureHandlerButton in Jest still invokes onPress from fireEvent.press + expect(button.props.enabled).toBe(false); }); test('should trigger onPress function on button press', async () => { diff --git a/app/containers/Button/__snapshots__/Button.test.tsx.snap b/app/containers/Button/__snapshots__/Button.test.tsx.snap index ade682daf0e..c1971ec5cf3 100644 --- a/app/containers/Button/__snapshots__/Button.test.tsx.snap +++ b/app/containers/Button/__snapshots__/Button.test.tsx.snap @@ -1,60 +1,59 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Story Snapshots: CustomButton should match snapshot 1`] = ` - + Press me! - + `; exports[`Story Snapshots: DisabledButton should match snapshot 1`] = ` - + Press me! - + `; exports[`Story Snapshots: DisabledLoadingButton should match snapshot 1`] = ` - + - + `; exports[`Story Snapshots: LoadingButton should match snapshot 1`] = ` - + - + `; exports[`Story Snapshots: PrimaryButton should match snapshot 1`] = ` - + Press me! - + `; exports[`Story Snapshots: SecondaryButton should match snapshot 1`] = ` - + Press me! - + `; exports[`Story Snapshots: SmallButton should match snapshot 1`] = ` - + Press me! - + `; diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index 4d0b2dfb784..a18c0149bd4 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -1,11 +1,12 @@ import React from 'react'; -import { type StyleProp, StyleSheet, Text, type TextStyle, type ViewStyle, Pressable, type PressableProps } from 'react-native'; +import { type StyleProp, StyleSheet, Text, type TextStyle, type ViewStyle } from 'react-native'; +import { RectButton, type RectButtonProps } from 'react-native-gesture-handler'; import { useTheme } from '../../theme'; import sharedStyles from '../../views/Styles'; import ActivityIndicator from '../ActivityIndicator'; -interface IButtonProps extends PressableProps { +interface IButtonProps extends Omit { title: string; onPress: () => void; type?: 'primary' | 'secondary'; @@ -16,8 +17,12 @@ interface IButtonProps extends PressableProps { style?: StyleProp | StyleProp[]; styleText?: StyleProp | StyleProp[]; small?: boolean; + disabled?: boolean; } +const RIPPLE_PRIMARY = 'rgba(255, 255, 255, 0.2)'; +const RIPPLE_SECONDARY = 'rgba(0, 0, 0, 0.12)'; + const styles = StyleSheet.create({ container: { marginBottom: 12, @@ -85,16 +90,21 @@ const Button: React.FC = ({ styleText ]; + const rippleColor = isPrimary ? RIPPLE_PRIMARY : RIPPLE_SECONDARY; + return ( - {loading ? : {title}} - + ); }; From e728b66df8322d07c77eb814d5258fa3caf0404f Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 24 Mar 2026 19:26:12 -0300 Subject: [PATCH 034/108] update snapshot --- .../__snapshots__/LoginServices.test.tsx.snap | 160 ++- .../__snapshots__/UiKitMessage.test.tsx.snap | 916 +++++++++--------- .../__snapshots__/UiKitModal.test.tsx.snap | 774 ++++++++------- .../__snapshots__/Message.test.tsx.snap | 598 ++++++------ .../CannedResponseItem.test.tsx.snap | 174 ++-- 5 files changed, 1286 insertions(+), 1336 deletions(-) diff --git a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap index 8939389107e..29e1dbf8c69 100644 --- a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap +++ b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap @@ -2,59 +2,57 @@ exports[`Story Snapshots: Separators should match snapshot 1`] = ` [ - + More options - , + , , - + Less options - , + , - + Approve - + , - + Deny - + , - + Deny - + , - + Deny - + , - + Deny - + , - + Deny - + , - + + Deny - + , - + Show more - , + , ] `; @@ -4891,59 +4877,57 @@ exports[`Story Snapshots: SectionButton should match snapshot 1`] = ` - + button - + `; @@ -5047,57 +5031,57 @@ exports[`Story Snapshots: SectionDatePicker should match snapshot 1`] = ` - + Select a date - + `; @@ -5408,57 +5392,57 @@ exports[`Story Snapshots: SectionMultiSelect should match snapshot 1`] = ` - + 2 selecteds - + , - + 0 selecteds - + , ] `; @@ -5719,7 +5703,7 @@ exports[`Story Snapshots: SectionOverflow should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={1} + handlerTag={13} handlerType="NativeViewGestureHandler" hitSlop={ { diff --git a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap index ff8fe70b718..218acb17f56 100644 --- a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap @@ -1011,59 +1011,57 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` } />, - + Primary Action - + , - + Secondary - + , - + Danger Action - + , - + Button 4 - + , - + Button 5 - + , - + Button 6 - Hidden - + , - + Button 7 - Hidden - + , - + Button 8 - Hidden - + , - + Show more - , + , - + Change - + , - + Text button - + @@ -109366,7 +109366,7 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={355} + handlerTag={356} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -109493,7 +109493,7 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={356} + handlerTag={357} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -109837,57 +109837,57 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - + Text button - + @@ -110047,7 +110047,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={357} + handlerTag={359} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110174,7 +110174,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={358} + handlerTag={360} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110353,57 +110353,57 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot - + Text button - + @@ -110550,7 +110550,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={359} + handlerTag={362} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110677,7 +110677,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={360} + handlerTag={363} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111021,57 +111021,57 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot - + Text button - + @@ -111231,7 +111231,7 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={361} + handlerTag={365} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111358,7 +111358,7 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={362} + handlerTag={366} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111672,7 +111672,7 @@ exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={363} + handlerTag={367} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111799,7 +111799,7 @@ exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={364} + handlerTag={368} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112058,7 +112058,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={365} + handlerTag={369} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112280,7 +112280,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={366} + handlerTag={370} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112502,7 +112502,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={367} + handlerTag={371} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112727,7 +112727,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={368} + handlerTag={372} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112949,7 +112949,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={369} + handlerTag={373} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113171,7 +113171,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={370} + handlerTag={374} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113393,7 +113393,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={371} + handlerTag={375} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113615,7 +113615,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={372} + handlerTag={376} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113837,7 +113837,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={373} + handlerTag={377} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114059,7 +114059,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={374} + handlerTag={378} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114281,7 +114281,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={375} + handlerTag={379} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114503,7 +114503,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={376} + handlerTag={380} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114725,7 +114725,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={377} + handlerTag={381} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114947,7 +114947,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={378} + handlerTag={382} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115169,7 +115169,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={379} + handlerTag={383} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115391,7 +115391,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={380} + handlerTag={384} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115613,7 +115613,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={381} + handlerTag={385} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115835,7 +115835,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={382} + handlerTag={386} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116057,7 +116057,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={383} + handlerTag={387} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116279,7 +116279,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={384} + handlerTag={388} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116501,7 +116501,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={385} + handlerTag={389} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116723,7 +116723,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={386} + handlerTag={390} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116945,7 +116945,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={387} + handlerTag={391} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117167,7 +117167,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={388} + handlerTag={392} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117389,7 +117389,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={389} + handlerTag={393} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117611,7 +117611,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={390} + handlerTag={394} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117824,7 +117824,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={391} + handlerTag={395} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118046,7 +118046,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={392} + handlerTag={396} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118268,7 +118268,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={393} + handlerTag={397} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118493,7 +118493,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={394} + handlerTag={398} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118715,7 +118715,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={395} + handlerTag={399} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118937,7 +118937,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={396} + handlerTag={400} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119159,7 +119159,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={397} + handlerTag={401} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119381,7 +119381,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={398} + handlerTag={402} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119603,7 +119603,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={399} + handlerTag={403} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119825,7 +119825,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={400} + handlerTag={404} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120047,7 +120047,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={401} + handlerTag={405} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120269,7 +120269,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={402} + handlerTag={406} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120491,7 +120491,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={403} + handlerTag={407} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120713,7 +120713,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={404} + handlerTag={408} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120935,7 +120935,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={405} + handlerTag={409} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121157,7 +121157,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={406} + handlerTag={410} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121379,7 +121379,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={407} + handlerTag={411} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121601,7 +121601,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={408} + handlerTag={412} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121823,7 +121823,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={409} + handlerTag={413} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122045,7 +122045,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={410} + handlerTag={414} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122267,7 +122267,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={411} + handlerTag={415} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122489,7 +122489,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={412} + handlerTag={416} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122711,7 +122711,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={413} + handlerTag={417} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122933,7 +122933,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={414} + handlerTag={418} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123155,7 +123155,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={415} + handlerTag={419} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123377,7 +123377,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={416} + handlerTag={420} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123645,7 +123645,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={417} + handlerTag={421} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123772,7 +123772,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={418} + handlerTag={422} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124091,7 +124091,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={419} + handlerTag={423} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124218,7 +124218,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={420} + handlerTag={424} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124537,7 +124537,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={421} + handlerTag={425} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124664,7 +124664,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={422} + handlerTag={426} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125189,7 +125189,7 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] collapsable={false} delayLongPress={600} enabled={true} - handlerTag={423} + handlerTag={427} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125316,7 +125316,7 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] collapsable={false} delayLongPress={600} enabled={true} - handlerTag={424} + handlerTag={428} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125841,7 +125841,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={425} + handlerTag={429} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125968,7 +125968,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={426} + handlerTag={430} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126282,7 +126282,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={427} + handlerTag={431} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126409,7 +126409,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={428} + handlerTag={432} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126724,7 +126724,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={429} + handlerTag={433} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126851,7 +126851,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={430} + handlerTag={434} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127201,7 +127201,7 @@ exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={431} + handlerTag={435} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127328,7 +127328,7 @@ exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={432} + handlerTag={436} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127677,7 +127677,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={433} + handlerTag={437} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127804,7 +127804,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot collapsable={false} delayLongPress={600} enabled={true} - handlerTag={434} + handlerTag={438} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -128834,7 +128834,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match collapsable={false} delayLongPress={600} enabled={true} - handlerTag={435} + handlerTag={439} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -128961,7 +128961,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match collapsable={false} delayLongPress={600} enabled={true} - handlerTag={436} + handlerTag={440} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -129991,7 +129991,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={437} + handlerTag={441} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -130118,7 +130118,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={438} + handlerTag={442} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -130556,7 +130556,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={439} + handlerTag={443} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -130683,7 +130683,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={440} + handlerTag={444} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131371,7 +131371,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={441} + handlerTag={445} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131498,7 +131498,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={442} + handlerTag={446} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131838,7 +131838,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={443} + handlerTag={447} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131965,7 +131965,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={444} + handlerTag={448} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132261,7 +132261,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={445} + handlerTag={449} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132388,7 +132388,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={446} + handlerTag={450} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132728,7 +132728,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={447} + handlerTag={451} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132855,7 +132855,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={448} + handlerTag={452} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133151,7 +133151,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={449} + handlerTag={453} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133278,7 +133278,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={450} + handlerTag={454} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133716,7 +133716,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={451} + handlerTag={455} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133843,7 +133843,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={452} + handlerTag={456} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -134531,7 +134531,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={453} + handlerTag={457} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -134658,7 +134658,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={454} + handlerTag={458} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -134978,7 +134978,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={455} + handlerTag={459} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135105,7 +135105,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={456} + handlerTag={460} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135438,7 +135438,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={457} + handlerTag={461} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135565,7 +135565,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={458} + handlerTag={462} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135885,7 +135885,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={459} + handlerTag={463} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136012,7 +136012,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={460} + handlerTag={464} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136345,7 +136345,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={461} + handlerTag={465} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136472,7 +136472,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={462} + handlerTag={466} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136906,7 +136906,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` - + Use - + - + Use - + Date: Wed, 25 Mar 2026 10:39:32 -0300 Subject: [PATCH 035/108] fix: unit tests --- .../Button/__snapshots__/Button.test.tsx.snap | 14 +++++------ app/containers/Button/index.tsx | 8 ++----- .../__snapshots__/LoginServices.test.tsx.snap | 4 ++-- .../__snapshots__/UiKitMessage.test.tsx.snap | 24 +++++++++---------- .../__snapshots__/UiKitModal.test.tsx.snap | 20 ++++++++-------- .../__snapshots__/Message.test.tsx.snap | 8 +++---- .../CannedResponseItem.test.tsx.snap | 4 ++-- 7 files changed, 39 insertions(+), 43 deletions(-) diff --git a/app/containers/Button/__snapshots__/Button.test.tsx.snap b/app/containers/Button/__snapshots__/Button.test.tsx.snap index c1971ec5cf3..c514b1ae90b 100644 --- a/app/containers/Button/__snapshots__/Button.test.tsx.snap +++ b/app/containers/Button/__snapshots__/Button.test.tsx.snap @@ -15,7 +15,7 @@ exports[`Story Snapshots: CustomButton should match snapshot 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} - rippleColor="rgba(255, 255, 255, 0.2)" + rippleColor="transparent" style={ [ { @@ -95,7 +95,7 @@ exports[`Story Snapshots: DisabledButton should match snapshot 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} - rippleColor="rgba(255, 255, 255, 0.2)" + rippleColor="transparent" style={ [ { @@ -170,7 +170,7 @@ exports[`Story Snapshots: DisabledLoadingButton should match snapshot 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} - rippleColor="rgba(255, 255, 255, 0.2)" + rippleColor="transparent" style={ [ { @@ -234,7 +234,7 @@ exports[`Story Snapshots: LoadingButton should match snapshot 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} - rippleColor="rgba(255, 255, 255, 0.2)" + rippleColor="transparent" style={ [ { @@ -298,7 +298,7 @@ exports[`Story Snapshots: PrimaryButton should match snapshot 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} - rippleColor="rgba(255, 255, 255, 0.2)" + rippleColor="transparent" style={ [ { @@ -373,7 +373,7 @@ exports[`Story Snapshots: SecondaryButton should match snapshot 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} - rippleColor="rgba(0, 0, 0, 0.12)" + rippleColor="transparent" style={ [ { @@ -448,7 +448,7 @@ exports[`Story Snapshots: SmallButton should match snapshot 1`] = ` onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} - rippleColor="rgba(255, 255, 255, 0.2)" + rippleColor="transparent" style={ [ { diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index a18c0149bd4..10eb486142e 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -20,9 +20,6 @@ interface IButtonProps extends Omit { disabled?: boolean; } -const RIPPLE_PRIMARY = 'rgba(255, 255, 255, 0.2)'; -const RIPPLE_SECONDARY = 'rgba(0, 0, 0, 0.12)'; - const styles = StyleSheet.create({ container: { marginBottom: 12, @@ -90,15 +87,14 @@ const Button: React.FC = ({ styleText ]; - const rippleColor = isPrimary ? RIPPLE_PRIMARY : RIPPLE_SECONDARY; - return ( Date: Wed, 25 Mar 2026 17:10:35 -0300 Subject: [PATCH 036/108] fix: use Pressable to able to focus on iOS and keep it working on true sheet --- app/containers/Touch.tsx | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/app/containers/Touch.tsx b/app/containers/Touch.tsx index 1f062ecaac1..8760e77144f 100644 --- a/app/containers/Touch.tsx +++ b/app/containers/Touch.tsx @@ -1,17 +1,18 @@ import React from 'react'; -import { RectButton, type RectButtonProps } from 'react-native-gesture-handler'; import { View, + Pressable, StyleSheet, type ViewStyle, type StyleProp, + type PressableProps, type AccessibilityActionEvent, type AccessibilityActionInfo } from 'react-native'; import { useTheme } from '../theme'; -export interface ITouchProps extends RectButtonProps { +export interface ITouchProps extends Omit { children: React.ReactNode; accessible?: boolean; accessibilityLabel?: string; @@ -20,15 +21,19 @@ export interface ITouchProps extends RectButtonProps { onAccessibilityAction?: (event: AccessibilityActionEvent) => void; testID?: string; rectButtonStyle?: StyleProp; + underlayColor?: string; + activeOpacity?: number; disabled?: boolean; + style?: StyleProp; } -const Touch = React.forwardRef, ITouchProps>( +const Touch = React.forwardRef, ITouchProps>( ( { children, onPress, underlayColor, + activeOpacity = 1, accessible, accessibilityLabel, accessibilityHint, @@ -73,15 +78,21 @@ const Touch = React.forwardRef, ITouchProps> marginTop }; return ( - [ + rectButtonStyle, + marginStyles, + { + backgroundColor: pressed ? underlayColor || colors.surfaceNeutral : backgroundColor, + borderRadius, + opacity: pressed ? activeOpacity : 1 + } + ]} {...props} - enabled={!disabled}> + disabled={disabled}> , ITouchProps> style={viewStyle}> {children} - + ); } ); From 0907cc118235fbe88457ed0ea0e6f127df5eb22d Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 25 Mar 2026 17:10:56 -0300 Subject: [PATCH 037/108] chore: install react-native-external-keyboard --- ios/Podfile.lock | 28 ++++++++++++++++++++++++++++ package.json | 1 + yarn.lock | 5 +++++ 3 files changed, 34 insertions(+) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 8122f18684a..843148c6d24 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1640,6 +1640,30 @@ PODS: - Yoga - react-native-cookies (6.2.1): - React-Core + - react-native-external-keyboard (0.8.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-hermes + - React-ImageManager + - React-jsi + - React-NativeModulesApple + - React-RCTFabric + - React-renderercss + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-keyboard-controller (1.17.1): - DoubleConversion - glog @@ -2722,6 +2746,7 @@ DEPENDENCIES: - react-native-background-timer (from `../node_modules/react-native-background-timer`) - "react-native-cameraroll (from `../node_modules/@react-native-camera-roll/camera-roll`)" - "react-native-cookies (from `../node_modules/@react-native-cookies/cookies`)" + - react-native-external-keyboard (from `../node_modules/react-native-external-keyboard`) - react-native-keyboard-controller (from `../node_modules/react-native-keyboard-controller`) - react-native-mmkv (from `../node_modules/react-native-mmkv`) - "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)" @@ -2943,6 +2968,8 @@ EXTERNAL SOURCES: :path: "../node_modules/@react-native-camera-roll/camera-roll" react-native-cookies: :path: "../node_modules/@react-native-cookies/cookies" + react-native-external-keyboard: + :path: "../node_modules/react-native-external-keyboard" react-native-keyboard-controller: :path: "../node_modules/react-native-keyboard-controller" react-native-mmkv: @@ -3148,6 +3175,7 @@ SPEC CHECKSUMS: react-native-background-timer: 4638ae3bee00320753647900b21260b10587b6f7 react-native-cameraroll: 23d28040c32ca8b20661e0c41b56ab041779244b react-native-cookies: d648ab7025833b977c0b19e142503034f5f29411 + react-native-external-keyboard: cfbd95f3c5623b008efe01c583f7787a86a1aee1 react-native-keyboard-controller: 9ec7ee23328c30251a399cffd8b54324a00343bf react-native-mmkv: ec96a16cd90e0d994d486c3993abf712186f7262 react-native-netinfo: 2e3c27627db7d49ba412bfab25834e679db41e21 diff --git a/package.json b/package.json index 4b3e53b0dd1..38e0bc2738d 100644 --- a/package.json +++ b/package.json @@ -94,6 +94,7 @@ "react-native-device-info": "11.1.0", "react-native-easy-grid": "0.2.2", "react-native-easy-toast": "2.3.0", + "react-native-external-keyboard": "^0.8.2", "react-native-file-viewer": "2.1.4", "react-native-gesture-handler": "2.24.0", "react-native-image-crop-picker": "RocketChat/react-native-image-crop-picker#f028aac24373d05166747ef6d9e59bb037fe3224", diff --git a/yarn.lock b/yarn.lock index 6d8d740fa76..a3915e4d825 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12062,6 +12062,11 @@ react-native-edge-to-edge@1.6.0: resolved "https://registry.yarnpkg.com/react-native-edge-to-edge/-/react-native-edge-to-edge-1.6.0.tgz#2ba63b941704a7f713e298185c26cde4d9e4b973" integrity sha512-2WCNdE3Qd6Fwg9+4BpbATUxCLcouF6YRY7K+J36KJ4l3y+tWN6XCqAC4DuoGblAAbb2sLkhEDp4FOlbOIot2Og== +react-native-external-keyboard@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/react-native-external-keyboard/-/react-native-external-keyboard-0.8.2.tgz#2929460223f1ed3a1153e631ee28b062c66dac75" + integrity sha512-UMchkfHwC6p9hQOoMSO+OwX31VC4Pzjyul0XArH/eZLZS+GDDDpIn6q15QUwYUudrt+rXB+DtwSszTyxZbIY2g== + react-native-file-viewer@2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/react-native-file-viewer/-/react-native-file-viewer-2.1.4.tgz#987b2902f0f0ac87b42f3ac3d3037c8ae98f17a6" From e45b71471535d854c710955aae5d8b362d25b3b0 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 25 Mar 2026 17:13:00 -0300 Subject: [PATCH 038/108] fix: focus on thread and reactions --- app/containers/message/Reactions.tsx | 5 +++++ app/containers/message/Thread.tsx | 12 +++++++++--- app/containers/message/Touchable.tsx | 13 +++++++++++-- 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/app/containers/message/Reactions.tsx b/app/containers/message/Reactions.tsx index 1d571b12065..28f9763fb31 100644 --- a/app/containers/message/Reactions.tsx +++ b/app/containers/message/Reactions.tsx @@ -39,6 +39,8 @@ const AddReaction = React.memo(({ theme }: { theme: TSupportedThemes }) => { onPress={reactionInit} key='message-add-reaction' testID='message-add-reaction' + accessibilityRole='button' + accessibilityLabel='Add reaction' style={[styles.reactionButton, { backgroundColor: themes[theme].surfaceRoom }]} hitSlop={BUTTON_HIT_SLOP}> @@ -61,6 +63,9 @@ const Reaction = React.memo(({ reaction, getCustomEmoji, theme }: IMessageReacti onLongPress={onReactionLongPress} key={reaction.emoji} testID={`message-reaction-${reaction.emoji}`} + accessibilityRole='button' + accessibilityLabel={`${reaction.emoji}, ${reaction.usernames.length}`} + accessibilityState={{ selected: reacted }} style={[styles.reactionButton, { backgroundColor: reacted ? themes[theme].surfaceNeutral : themes[theme].surfaceRoom }]} hitSlop={BUTTON_HIT_SLOP}> { 'use memo'; const { theme, colors } = useTheme(); - const { threadBadgeColor, toggleFollowThread, user, replies } = useContext(MessageContext); + const { threadBadgeColor, toggleFollowThread, user, replies, onThreadPress } = useContext(MessageContext); const backgroundColor = threadBadgeColor ? colors.badgeBackgroundLevel2 : colors.buttonBackgroundSecondaryDefault; const textColor = threadBadgeColor || theme !== 'light' ? colors.fontWhite : colors.fontPureBlack; @@ -24,9 +25,14 @@ const Thread = React.memo( return ( - + {I18n.t('View_Thread')} - + void; } +const KeyboardPressable = withKeyboardFocus(Pressable); + const RCTouchable: React.FC = React.memo(({ children, ...props }) => { 'use memo'; const { onLongPress } = useContext(MessageContext); + const { onHoverIn, onHoverOut, ...rest } = props; return ( - + {children} - + ); }); From 9cf9ad091789d4c9cef96545525dd2d62ed8e7c3 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 25 Mar 2026 17:21:44 -0300 Subject: [PATCH 039/108] feat: onThreadPress to open threads on keyboard --- app/containers/message/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/containers/message/index.tsx b/app/containers/message/index.tsx index 31522bd7f5c..a352240850a 100644 --- a/app/containers/message/index.tsx +++ b/app/containers/message/index.tsx @@ -441,6 +441,7 @@ class MessageContainer extends React.Component Date: Thu, 26 Mar 2026 13:14:41 -0300 Subject: [PATCH 040/108] feat: usePressable gh --- .../Avatar/__snapshots__/Avatar.test.tsx.snap | 70 +- app/containers/Button/Button.test.tsx | 3 +- .../Button/__snapshots__/Button.test.tsx.snap | 950 +- app/containers/Button/index.tsx | 21 +- .../__snapshots__/DirectoryItem.test.tsx.snap | 560 +- .../NotifierComponent.test.tsx.snap | 560 +- .../List/__snapshots__/List.test.tsx.snap | 1674 +- .../__snapshots__/LoginServices.test.tsx.snap | 558 +- .../__snapshots__/RoomItem.test.tsx.snap | 4250 +- .../__snapshots__/ServerItem.test.tsx.snap | 564 +- .../__snapshots__/TextInput.test.tsx.snap | 149 +- .../__snapshots__/UiKitMessage.test.tsx.snap | 1750 +- .../__snapshots__/UiKitModal.test.tsx.snap | 1964 +- .../__snapshots__/Message.test.tsx.snap | 79083 ++++++++-------- .../CannedResponseItem.test.tsx.snap | 438 +- .../__snapshots__/Item.test.tsx.snap | 560 +- .../ServersHistoryItem.test.tsx.snap | 574 +- .../__snapshots__/LoadMore.test.tsx.snap | 2159 +- .../__snapshots__/Item.test.tsx.snap | 1680 +- 19 files changed, 51119 insertions(+), 46448 deletions(-) diff --git a/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap b/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap index a4fe18c8b84..46651f8208f 100644 --- a/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap +++ b/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap @@ -835,24 +835,40 @@ exports[`Story Snapshots: Touchable should match snapshot 1`] = ` } testID="avatar" > - - - + `; diff --git a/app/containers/Button/Button.test.tsx b/app/containers/Button/Button.test.tsx index 97a3d21987d..d6e92a863f2 100644 --- a/app/containers/Button/Button.test.tsx +++ b/app/containers/Button/Button.test.tsx @@ -64,8 +64,7 @@ describe('ButtonTests', () => { test('disabled button is in disabled state', async () => { const { findByTestId } = render(); const button = await findByTestId(testProps.testID); - // RectButton uses enabled={false}; RNGestureHandlerButton in Jest still invokes onPress from fireEvent.press - expect(button.props.enabled).toBe(false); + expect(button.props.accessibilityState.disabled).toBe(true); }); test('should trigger onPress function on button press', async () => { diff --git a/app/containers/Button/__snapshots__/Button.test.tsx.snap b/app/containers/Button/__snapshots__/Button.test.tsx.snap index c514b1ae90b..038e84eaf2b 100644 --- a/app/containers/Button/__snapshots__/Button.test.tsx.snap +++ b/app/containers/Button/__snapshots__/Button.test.tsx.snap @@ -1,511 +1,687 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Story Snapshots: CustomButton should match snapshot 1`] = ` - - - Press me! - - + + Press me! + + + `; exports[`Story Snapshots: DisabledButton should match snapshot 1`] = ` - - - Press me! - - + + Press me! + + + `; exports[`Story Snapshots: DisabledLoadingButton should match snapshot 1`] = ` - - - + accessible={true} + collapsable={false} + focusable={true} + onBlur={[Function]} + onClick={[Function]} + onFocus={[Function]} + onResponderGrant={[Function]} + onResponderMove={[Function]} + onResponderRelease={[Function]} + onResponderTerminate={[Function]} + onResponderTerminationRequest={[Function]} + onStartShouldSetResponder={[Function]} + style={ + [ + [ + { + "justifyContent": "center", + "paddingHorizontal": 16, + "paddingVertical": 14, + }, + { + "borderRadius": 4, + "marginBottom": 12, + }, + { + "backgroundColor": "#D1EBFE", + }, + {}, + undefined, + ], + undefined, + ] + } + testID="testButton" + > + + + `; exports[`Story Snapshots: LoadingButton should match snapshot 1`] = ` - - - + accessible={true} + collapsable={false} + focusable={true} + onBlur={[Function]} + onClick={[Function]} + onFocus={[Function]} + onResponderGrant={[Function]} + onResponderMove={[Function]} + onResponderRelease={[Function]} + onResponderTerminate={[Function]} + onResponderTerminationRequest={[Function]} + onStartShouldSetResponder={[Function]} + style={ + [ + [ + { + "justifyContent": "center", + "paddingHorizontal": 16, + "paddingVertical": 14, + }, + { + "borderRadius": 4, + "marginBottom": 12, + }, + { + "backgroundColor": "#D1EBFE", + }, + {}, + undefined, + ], + undefined, + ] + } + testID="testButton" + > + + + `; exports[`Story Snapshots: PrimaryButton should match snapshot 1`] = ` - - - Press me! - - + + Press me! + + + `; exports[`Story Snapshots: SecondaryButton should match snapshot 1`] = ` - - - Press me! - - + + Press me! + + + `; exports[`Story Snapshots: SmallButton should match snapshot 1`] = ` - - - Press me! - - + + Press me! + + + `; diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index 10eb486142e..2901b6a74e7 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -1,12 +1,14 @@ import React from 'react'; -import { type StyleProp, StyleSheet, Text, type TextStyle, type ViewStyle } from 'react-native'; -import { RectButton, type RectButtonProps } from 'react-native-gesture-handler'; +import { Pressable, type PressableProps, type StyleProp, StyleSheet, Text, type TextStyle, type ViewStyle } from 'react-native'; +import { withKeyboardFocus } from 'react-native-external-keyboard'; import { useTheme } from '../../theme'; import sharedStyles from '../../views/Styles'; import ActivityIndicator from '../ActivityIndicator'; -interface IButtonProps extends Omit { +const KeyboardFocusablePressable = withKeyboardFocus(Pressable); + +interface IButtonProps extends Omit { title: string; onPress: () => void; type?: 'primary' | 'secondary'; @@ -88,19 +90,18 @@ const Button: React.FC = ({ ]; return ( - {loading ? : {title}} - + ); }; diff --git a/app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap b/app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap index 3f8cb65864b..179fa79de2a 100644 --- a/app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap +++ b/app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap @@ -14,24 +14,40 @@ exports[`Story Snapshots: CustomStyle should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - - @@ -252,7 +250,7 @@ exports[`Story Snapshots: CustomStyle should match snapshot 1`] = ` - + @@ -272,24 +270,40 @@ exports[`Story Snapshots: Default should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - - @@ -508,7 +504,7 @@ exports[`Story Snapshots: Default should match snapshot 1`] = ` - + @@ -528,24 +524,40 @@ exports[`Story Snapshots: DirectMessage should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - - @@ -733,7 +727,7 @@ exports[`Story Snapshots: DirectMessage should match snapshot 1`] = ` - + @@ -753,24 +747,40 @@ exports[`Story Snapshots: LongRoomName should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - - @@ -1008,7 +1000,7 @@ exports[`Story Snapshots: LongRoomName should match snapshot 1`] = ` - + @@ -1028,24 +1020,40 @@ exports[`Story Snapshots: OnlyTitle should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - - @@ -1175,7 +1165,7 @@ exports[`Story Snapshots: OnlyTitle should match snapshot 1`] = ` - + @@ -1195,24 +1185,40 @@ exports[`Story Snapshots: TeamMain should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - - @@ -1431,7 +1419,7 @@ exports[`Story Snapshots: TeamMain should match snapshot 1`] = ` - + @@ -1451,24 +1439,40 @@ exports[`Story Snapshots: WithRightLabel should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - - @@ -1706,7 +1692,7 @@ exports[`Story Snapshots: WithRightLabel should match snapshot 1`] = ` - + @@ -1726,24 +1712,40 @@ exports[`Story Snapshots: WithoutDescription should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - - @@ -1929,7 +1913,7 @@ exports[`Story Snapshots: WithoutDescription should match snapshot 1`] = ` - + diff --git a/app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap b/app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap index 8d1472aa1b2..07fc6643e34 100644 --- a/app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap +++ b/app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap @@ -23,13 +23,27 @@ exports[`Story Snapshots: ChannelMessage should match snapshot 1`] = ` ] } > - - - - + - @@ -289,7 +285,7 @@ exports[`Story Snapshots: ChannelMessage should match snapshot 1`] = `  - + `; @@ -316,13 +312,27 @@ exports[`Story Snapshots: DirectMessage should match snapshot 1`] = ` ] } > - - - - + - @@ -582,7 +574,7 @@ exports[`Story Snapshots: DirectMessage should match snapshot 1`] = `  - + `; @@ -609,13 +601,27 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` ] } > - - - - + - @@ -875,7 +863,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = `  - + `; @@ -902,13 +890,27 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` ] } > - - - - + - @@ -1168,6 +1152,6 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = `  - + `; diff --git a/app/containers/List/__snapshots__/List.test.tsx.snap b/app/containers/List/__snapshots__/List.test.tsx.snap index 2be6919ee62..ae377263caf 100644 --- a/app/containers/List/__snapshots__/List.test.tsx.snap +++ b/app/containers/List/__snapshots__/List.test.tsx.snap @@ -702,24 +702,41 @@ exports[`Story Snapshots: Icon should match snapshot 1`] = ` `; exports[`Story Snapshots: ListItemWithRightContainerStyle should match snapshot 1`] = ` - - @@ -937,7 +936,7 @@ exports[`Story Snapshots: ListItemWithRightContainerStyle should match snapshot - + `; exports[`Story Snapshots: Pressable should match snapshot 1`] = ` @@ -969,24 +968,41 @@ exports[`Story Snapshots: Pressable should match snapshot 1`] = ` ] } /> - - @@ -1087,7 +1085,7 @@ exports[`Story Snapshots: Pressable should match snapshot 1`] = ` - + - - @@ -1221,7 +1218,7 @@ exports[`Story Snapshots: Pressable should match snapshot 1`] = ` - + - - @@ -1435,7 +1431,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = ` - + - - @@ -1616,7 +1611,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = ` - + - - @@ -1797,7 +1791,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = ` - + - - @@ -1997,7 +1990,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = ` - + - - @@ -3667,7 +3659,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = ` - + - - @@ -3915,7 +3906,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = ` - + - - @@ -4238,7 +4228,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = ` - + - - @@ -4486,7 +4475,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = ` - + - - @@ -4851,7 +4839,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` - + - - @@ -5099,7 +5086,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` - + - - @@ -5422,7 +5408,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` - + - - @@ -5670,7 +5655,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` - + - - @@ -5946,7 +5930,7 @@ exports[`Story Snapshots: WithCustomColors should match snapshot 1`] = ` - + - - @@ -6281,7 +6264,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` - + - - @@ -6529,7 +6511,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` - + - - @@ -6852,7 +6833,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` - + - - @@ -7100,7 +7080,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` - + - - @@ -9097,7 +9076,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = ` - + - - @@ -9345,7 +9323,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = ` - + - - @@ -9668,7 +9645,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = ` - + - - @@ -9916,7 +9892,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = ` - + - - More options - - , + + More options + + + , , - - - Less options - - , + + Less options + + + , - - , - , + - - , - , + - - , - , + - - , + , ] `; diff --git a/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap b/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap index a04cc71c4f2..764fc2307f1 100644 --- a/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap +++ b/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap @@ -374,24 +374,40 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` } } > - - @@ -638,7 +636,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -1318,7 +1314,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -1998,7 +1992,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -2678,7 +2670,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -3358,7 +3348,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -4038,7 +4026,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -4718,7 +4704,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -5398,7 +5382,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -6078,7 +6060,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -6758,7 +6738,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - - @@ -7438,7 +7416,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , ] @@ -7514,7 +7492,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={67} + handlerTag={56} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -7633,7 +7611,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={68} + handlerTag={57} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -7735,7 +7713,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={69} + handlerTag={58} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -7817,24 +7795,40 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` } } > - - @@ -8066,7 +8042,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` - + `; @@ -8142,7 +8118,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={73} + handlerTag={61} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -8261,7 +8237,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={74} + handlerTag={62} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -8363,7 +8339,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={75} + handlerTag={63} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -8445,24 +8421,40 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` } } > - - @@ -8750,7 +8724,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` - + , - - @@ -9430,7 +9402,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` - + , - - @@ -10090,7 +10060,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` - + , ] @@ -10167,7 +10137,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={91} + handlerTag={76} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -10286,7 +10256,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={92} + handlerTag={77} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -10388,7 +10358,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={93} + handlerTag={78} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -10470,24 +10440,40 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 } } > - - @@ -10719,7 +10687,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 - + , - - @@ -11287,7 +11253,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 - + , - - @@ -11891,7 +11855,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 - + , ] @@ -11968,7 +11932,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={109} + handlerTag={91} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -12087,7 +12051,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={110} + handlerTag={92} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -12189,7 +12153,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={111} + handlerTag={93} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -12271,24 +12235,40 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` } } > - - @@ -12566,7 +12528,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` - + , - - @@ -13236,7 +13196,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` - + , - - @@ -13865,7 +13823,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` - + , ] @@ -13942,7 +13900,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={127} + handlerTag={106} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -14061,7 +14019,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={128} + handlerTag={107} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -14163,7 +14121,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={129} + handlerTag={108} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -14245,24 +14203,40 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` } } > - - @@ -14522,7 +14478,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` - + , - - @@ -15174,7 +15128,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` - + , ] @@ -15251,7 +15205,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={139} + handlerTag={116} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -15370,7 +15324,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={140} + handlerTag={117} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -15472,7 +15426,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={141} + handlerTag={118} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -15554,24 +15508,40 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` } } > - - @@ -15834,7 +15786,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - - @@ -16489,7 +16439,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - - @@ -17144,7 +17092,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - - @@ -17799,7 +17745,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - - @@ -18510,7 +18454,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - - @@ -19221,7 +19163,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - - @@ -19932,7 +19872,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , ] @@ -20009,7 +19949,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={181} + handlerTag={151} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -20128,7 +20068,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={182} + handlerTag={152} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -20230,7 +20170,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={183} + handlerTag={153} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -20312,24 +20252,40 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` } } > - - @@ -20561,7 +20499,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -21185,7 +21121,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -21809,7 +21743,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -22433,7 +22365,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -23057,7 +22987,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -23681,7 +23609,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -24305,7 +24231,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -24929,7 +24853,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -25553,7 +25475,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - - @@ -26177,7 +26097,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , ] @@ -26254,7 +26174,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={241} + handlerTag={201} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -26373,7 +26293,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={242} + handlerTag={202} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -26475,7 +26395,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={243} + handlerTag={203} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -26557,24 +26477,40 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` } } > - - @@ -26842,7 +26760,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` - + , - - @@ -27534,7 +27450,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` - + , - - @@ -28194,7 +28108,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` - + , - - @@ -28886,7 +28798,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` - + , ] @@ -28962,7 +28874,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={265} + handlerTag={221} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29081,7 +28993,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={266} + handlerTag={222} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29183,7 +29095,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={267} + handlerTag={223} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29265,24 +29177,40 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` } } > - - @@ -29514,7 +29424,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` - + `; @@ -29590,7 +29500,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={271} + handlerTag={226} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29709,7 +29619,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={272} + handlerTag={227} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29811,7 +29721,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={273} + handlerTag={228} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29893,24 +29803,40 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` } } > - - @@ -30149,7 +30057,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - - @@ -30773,7 +30679,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - - @@ -31397,7 +31301,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - - @@ -32021,7 +31923,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - - @@ -32645,7 +32545,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - - @@ -33269,7 +33167,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - - @@ -33893,7 +33789,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - - @@ -34517,7 +34411,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - - @@ -35141,7 +35033,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , ] @@ -35218,7 +35110,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={325} + handlerTag={271} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -35337,7 +35229,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={326} + handlerTag={272} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -35439,7 +35331,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={327} + handlerTag={273} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -35521,24 +35413,40 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` } } > - - @@ -35777,7 +35667,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` - + , - - @@ -36408,7 +36296,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` - + , ] diff --git a/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap b/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap index d0c4feeeb28..ce9eef18181 100644 --- a/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap +++ b/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap @@ -2,25 +2,41 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` [ - - - , - , + - - , - , + - - , + , ] `; @@ -671,7 +665,7 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={4} + handlerTag={1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -754,24 +748,40 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` } } > - - - + , - - - + , ] @@ -1321,25 +1311,41 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` exports[`Story Snapshots: Themes should match snapshot 1`] = ` [ - - - , - , + - - , - , + - - , + , ] `; diff --git a/app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap b/app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap index ca58551553e..7738cadaa13 100644 --- a/app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap +++ b/app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap @@ -536,24 +536,47 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` underlineColorAndroid="transparent" value="https://open.rocket.chat/images/logo/android-chrome-512x512.png" /> - - - + @@ -1188,24 +1191,40 @@ exports[`Story Snapshots: SecureTextEntry should match snapshot 1`] = ` ] } > - - - + diff --git a/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap index 5e2e329aa8b..0c9c180c164 100644 --- a/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap @@ -3,369 +3,611 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` [ - - - Approve - - + + Approve + + + , - - - Deny - - + + Deny + + + , - - - Deny - - + + Deny + + + , - - - Deny - - + + Deny + + + , - + + Deny + + + + , + + + - - Deny - - + + Deny + + + , - - - Deny - - + + Deny + + + , - - - - Deny + Show more - - , - - - - Show more - - , + + , ] `; @@ -4877,77 +5091,104 @@ exports[`Story Snapshots: SectionButton should match snapshot 1`] = ` - - - button - - + + button + + + `; @@ -5031,77 +5272,102 @@ exports[`Story Snapshots: SectionDatePicker should match snapshot 1`] = ` - - - Select a date - - + + Select a date + + + `; @@ -5392,77 +5658,102 @@ exports[`Story Snapshots: SectionMultiSelect should match snapshot 1`] = ` - - - 2 selecteds - - + + 2 selecteds + + + , - - - 0 selecteds - - + + 0 selecteds + + + , ] `; @@ -5698,13 +6014,27 @@ exports[`Story Snapshots: SectionOverflow should match snapshot 1`] = ` - - - + `; diff --git a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap index a46779159a9..1f3d356ff0c 100644 --- a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap @@ -1011,369 +1011,611 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` } />, - - - Primary Action - - + + Primary Action + + + , - - - Secondary - - + + Secondary + + + , - - - Danger Action - - + + Danger Action + + + , - - - Button 4 - - + + Button 4 + + + , - + + Button 5 + + + + , + + + - - Button 5 - - + + Button 6 - Hidden + + + , - - - Button 6 - Hidden - - + + Button 7 - Hidden + + + , - - - Button 7 - Hidden - - + + Button 8 - Hidden + + + , - - - - Button 8 - Hidden + Show more - - , - - - - Show more - - , + + , - - - + , - - - + , - - - + , ] `; @@ -2484,24 +2719,40 @@ exports[`Story Snapshots: ModalDatePickerWithError should match snapshot 1`] = ` > Label - - @@ -2607,7 +2840,7 @@ exports[`Story Snapshots: ModalDatePickerWithError should match snapshot 1`] = ` - + Set a date - - @@ -2988,7 +3219,7 @@ exports[`Story Snapshots: ModalFormInput should match snapshot 1`] = ` - + , ] `; @@ -3107,77 +3338,104 @@ exports[`Story Snapshots: ModalFormTextArea should match snapshot 1`] = ` - - - Change - - + + Change + + + , Share with... - - @@ -3896,7 +4153,7 @@ exports[`Story Snapshots: ModalMultiSelect should match snapshot 1`] = ` - + Share with... - - @@ -4030,24 +4286,40 @@ exports[`Story Snapshots: ModalMultiSelect should match snapshot 1`] = ` } } > - - - + - + - - - + - - - + - - - + - - - + - - - + - - - + + + + + + + + Rocket.Chat + + + + + + + Rocket.Chat + + + , the best open source chat + + + + + + + + + + + + - - - Rocket.Chat - - - - - - - Rocket.Chat - - - , the best open source chat - - - - - - - - - - - - - - - + - + -  - - - +  + + + + /> + - + @@ -1741,24 +1779,40 @@ exports[`Story Snapshots: AttachmentWithTextAndLinkLargeFont should match snapsh } testID="avatar" > - - - + - - - + - - - Rocket.Chat - - - - + Rocket.Chat + + + - Rocket.Chat - - - , the best open source chat + + Rocket.Chat + + + , the best open source chat + - + - + - - + - + - + -  - - - +  + + + + /> + - + @@ -2481,24 +2565,40 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - -  - - + - Reply - + +  + + + Reply + + - + @@ -8903,24 +8956,40 @@ exports[`Story Snapshots: BroadcastLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - -  - - + - Reply - + +  + + + Reply + + - + @@ -9464,24 +9538,40 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - + + + Title collapsed + + + + - Title collapsed +  - - -  - - - + @@ -10044,24 +10139,40 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - Title collapsed - - - - - - Title collapsed - + Title collapsed - - - + - Field 1 + + + Title collapsed + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - - + - - - + - + + + Title collapsed + + + + - Title collapsed +  - - -  - - - + @@ -11419,24 +11556,40 @@ exports[`Story Snapshots: CollapsedAttachmentsLargeFont should match snapshot 1` } testID="avatar" > - - - + - - - + - - - Title collapsed - - - - - - Title collapsed - + Title collapsed - - - + - Field 1 + + + Title collapsed + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - - + - - - + - + + + Collapsed attachment block + + + + - Collapsed attachment block +  - - -  - - - + @@ -12796,24 +12975,40 @@ exports[`Story Snapshots: CollapsibleAttachmentWithText should match snapshot 1` } testID="avatar" > - - - + - - - + - - - Collapsed attachment block - - - - - - This attachment text should NOT appear as plain text above the message or duplicate before the block. - + Collapsed attachment block - - - + - Field 1 + + + This attachment text should NOT appear as plain text above the message or duplicate before the block. + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - - - Long field - - + Long field + + - This field value could also contribute to duplicate text when expanded. + + This field value could also contribute to duplicate text when expanded. + - + - + - - - + - - - + - + + + Collapsed attachment block + + + + - Collapsed attachment block +  - - -  - - - + @@ -14314,24 +14535,40 @@ exports[`Story Snapshots: CollapsibleAttachmentWithTextLargeFont should match sn } testID="avatar" > - - - + - - - + - - - Collapsed attachment block - - - - - - This attachment text should NOT appear as plain text above the message or duplicate before the block. - + Collapsed attachment block - - - + - Field 1 + + + This attachment text should NOT appear as plain text above the message or duplicate before the block. + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - - - Long field - - + Long field + + - This field value could also contribute to duplicate text when expanded. + + This field value could also contribute to duplicate text when expanded. + - + - + - - - + - - - + - - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + @@ -16453,24 +16766,40 @@ exports[`Story Snapshots: ColoredAttachmentsLargeFont should match snapshot 1`] } testID="avatar" > - - - + - - - + - - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - + - - Field 1 - - + Field 1 + + - Value 1 - - - - - - - + Value 1 + + + + + + - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + @@ -17656,24 +18040,40 @@ exports[`Story Snapshots: CustomFields should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - - + - - - + - - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 - - - - Value 1 - + Custom fields - + - - Field 2 - - + Field 1 + + - Value 2 + + Value 1 + - + - - - - Field 3 - - + Field 2 + + - Value 3 + + Value 2 + - + - - - - Field 4 - - + Field 3 + + - Value 4 + + Value 3 + - + - - - - Field 5 - - + Field 4 + + + + + Value 4 + + + + + + + + Field 5 + + + - Value 5 + + Value 5 + - + - + - - - + - - - + - - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - - + - - - + - - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 - - - - Value 1 - + Custom fields - + - - Field 2 - - + Field 1 + + - Value 2 + + Value 1 + - + - - - - Field 3 - - + Field 2 + + - Value 3 + + Value 2 + - + - - - - Field 4 - - + Field 3 + + - Value 4 + + Value 3 + - + - - - - Field 5 - - + Field 4 + + + + + Value 4 + + + + + + + + Field 5 + + + - Value 5 + + Value 5 + - + - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - -  - - + - No messages yet - + +  + + + No messages yet + + - + - - - + - - - + - - -  - - + - 1 message - + +  + + + 1 message + + - + - - - + - - - + - - -  - - + - 10 messages - + +  + + + 10 messages + + - + - - - + - - - + - - -  - - + - +999 messages - + +  + + + +999 messages + + - + - - - + - - - + - - -  - - + - No messages yet - + +  + + + No messages yet + + - + - - - + - - - + - - -  - - + - 1 message - + +  + + + 1 message + + - + - - - + - - - + - - -  - - + - 10 messages - + +  + + + 10 messages + + - + - - - + - - - + - - -  - - + - +999 messages - + +  + + + +999 messages + + - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - + - -  - - + +  + + + - + - -  - - + +  + + + @@ -38459,24 +39045,40 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - + - -  - - + +  + + + - - - 😂 - - - 1 - + + 😂 + + + 1 + + - - + - - + - 1 - + + + 1 + + - - + - - 🤔 - - - 1 - + + 🤔 + + + 1 + + - - + - -  - + +  + + - + @@ -39506,24 +40221,40 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - -  - - + +  + + + - - - + - - - + - + - -  - - + +  + + + - - - + - - - + - + - -  - - - +  + + + + + - - î§š - - + + î§š + + + - - - + - - - + - + - -  - - + +  + + + - + - -  - - + +  + + + - - - + - - - + - + - -  - - + +  + + + - + - -  - - + +  + + + @@ -42894,24 +43787,40 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - + - -  - - + +  + + + - - - 😂 - - - 1 - + + 😂 + + + 1 + + - - + - - + - 1 - + + + 1 + + - - + - - 🤔 - - - 1 - + + 🤔 + + + 1 + + - - + - -  - + +  + + - + @@ -43941,24 +44963,40 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - + - -  - - + +  + + + - - - + - - - + - - -  - - + +  + + + - - - + - - - + - + - -  - - - +  + + + + + - - î§š - - + + î§š + + + - - - + - - - + - + - -  - - + +  + + + - + - -  - - + +  + + + - - - + - - - + - + - - î§š - - + + î§š + + + - + - - î§š - - + + î§š + + + @@ -47174,24 +48374,40 @@ exports[`Story Snapshots: ErrorLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - + - - î§š - - + + î§š + + + - + - - î§š - - + + î§š + + + @@ -47892,24 +49138,40 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] } testID="avatar" > - - - + - - - + - + + + test.py + + test.py - - test.py - - + - - - + - - - + - + + + Component.tsx + + Component.tsx - - Component.tsx - - + - - - + - - - + - + + + config.json + + config.json - - config.json - - + - - - + - - - + - - - main.go - - - - + main.go + + + - - This is the - - main + This is the - - - entry point for the application + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontWeight": "700", + "textAlign": "left", + } + } + > + + main + + + + entry point for the application + - + - + - + + + document.pdf + + document.pdf - - document.pdf - - + - + + + image.png + + image.png - - image.png - - + @@ -50654,24 +52034,40 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna } testID="avatar" > - - - + - - - + - + + + test.py + + test.py - - test.py - - + - - - + - - - + - + + + Component.tsx + + Component.tsx - - Component.tsx - - + - - - + - - - + - + + + config.json + + config.json - - config.json - - + - - - + - - - + - - - main.go - - - - + main.go + + + - - This is the - - main + This is the - - - entry point for the application + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontWeight": "700", + "textAlign": "left", + } + } + > + + main + + + + entry point for the application + - + - + - + + + document.pdf + + document.pdf - - document.pdf - - + - + + + image.png + + image.png - - image.png - - + @@ -53403,24 +54917,40 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna } testID="avatar" > - - - + - - - + - - - + - File.pdf + + File.pdf + - + - + - - - + - File.pdf + + File.pdf + - + - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - + - -  - - + +  + + + - - - + - - - + - + - - î§š - - + + î§š + + + - - - + - - - + - - - + - - - + - + - -  - - + +  + + + - - - + - - - + - + - -  - - + +  + + + - + - - î§š - - + + î§š + + + - + - -  - - + +  + + + - + - - î§š - - + + î§š + + + - + - -  - - + +  + + + - + - - î§š - - + + î§š + + + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - + - -  - - + +  + + + - - - + - - - + - + - - î§š - - + + î§š + + + - - - + - - - + - - - + - - - + - + - -  - - + +  + + + - - - + - - - + - + - -  - - + +  + + + - + - - î§š - - + + î§š + + + - + + +  + + + + -  +  - - -  - - - - - î§š - - + + î§š + + + - + - -  - - + +  + + + - + - - î§š - - + + î§š + + + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - rocket.cat - - - 10:00 AM - + + rocket.cat + + + 10:00 AM + + - + @@ -77849,24 +79712,40 @@ exports[`Story Snapshots: MessageWithNestedReplyAndFile should match snapshot 1` } testID="avatar" > - - - + - - - + - - - rocket.cat - - - + + rocket.cat + + - - Nested image from forwarded message + + Nested image from forwarded message + - - - - + - - - + + + + +  + + + -  - + "bottom": 8, + "flexDirection": "row", + "gap": 8, + "position": "absolute", + "right": 8, + } + } + /> + - - + - + @@ -78637,24 +80546,40 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - I'm a very long long title and I'll break - - - - + I'm a very long long title and I'll break + + + - How are you? + + How are you? + - + - + - - - + - - - + - - - rocket.cat - - - - + rocket.cat + + + - How are you? - - - + How are you? + + - + > + + + - + - + - - - rocket.cat - - - - + rocket.cat + + + - How are you? - - - + How are you? + + - + > + + + - + - + - - - + - - - + - - - rocket.cat - - - + + rocket.cat + + - - What you think about this one? + + What you think about this one? + - - - - + - - - + + + + +  + + + -  - + "bottom": 8, + "flexDirection": "row", + "gap": 8, + "position": "absolute", + "right": 8, + } + } + /> + - - + - + @@ -83677,24 +85683,40 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - rocket.cat - - - + + rocket.cat + + - - Are you seeing this mario - - - + Are you seeing this mario + + - - - ? + > + + + + ? + - - - - + - - - + + + + +  + + + -  - + "bottom": 8, + "flexDirection": "row", + "gap": 8, + "position": "absolute", + "right": 8, + } + } + /> + - - + - + @@ -84526,24 +86578,40 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - rocket.cat - + + rocket.cat + + + script.sh + + script.sh - - script.sh - - + - - - + - - - + - - - rocket.cat - - - config.yaml - - - - + rocket.cat + + + config.yaml + + + - - This is a configuration file with - - important + This is a configuration file with - - - settings + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontWeight": "700", + "textAlign": "left", + } + } + > + + important + + + + settings + - + - + - - - + - - - + - - - rocket.cat - + + rocket.cat + + + index.ts + + index.ts - - index.ts - - + - - - rocket.cat - + + rocket.cat + + + styles.css + + styles.css - - styles.css - - + - - - + - - - + - - - rocket.cat - + + rocket.cat + + + script.sh + + script.sh - - script.sh - - + - - - + - - - + - - - rocket.cat - - - config.yaml - - - - + rocket.cat + + + config.yaml + + + - - This is a configuration file with - - important + This is a configuration file with - - - settings + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontWeight": "700", + "textAlign": "left", + } + } + > + + important + + + + settings + - + - + - - - + - - - + - - - rocket.cat - + + rocket.cat + + + index.ts + + index.ts - - index.ts - - + - - - rocket.cat - + + rocket.cat + + + styles.css + + styles.css - - styles.css - - + - - - + - - - + - - - I'm a very long long title and I'll break - - - - + I'm a very long long title and I'll break + + + - How are you? + + How are you? + - + - + - - - + - - - + - - - rocket.cat - - - - + rocket.cat + + + - How are you? - - - + How are you? + + - + > + + + - + - + - - - + - - - + - - - rocket.cat - - - + + rocket.cat + + - - What you think about this one? + + What you think about this one? + - - - - + - - - + + + + +  + + + -  - + "bottom": 8, + "flexDirection": "row", + "gap": 8, + "position": "absolute", + "right": 8, + } + } + /> + - - + - + @@ -90549,24 +92865,40 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = } testID="avatar" > - - - + - - - + - - - rocket.cat - - - + + rocket.cat + + - - Are you seeing this mario - - - + Are you seeing this mario + + - - - ? + > + + + + ? + - - - - + - - - + + + + +  + + + -  - + "bottom": 8, + "flexDirection": "row", + "gap": 8, + "position": "absolute", + "right": 8, + } + } + /> + - - + - + @@ -91398,24 +93760,40 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - View thread - - + + View thread + + + - - - + @@ -92235,24 +94647,40 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - View thread - - + + View thread + + + - - - + @@ -95227,24 +97677,40 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } testID="avatar" > - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - 😂 - - - 1 - + + 😂 + + + 1 + + - - + - - + - 99 - + + + 99 + + - - + - - 🤔 - - - 999 - + + 🤔 + + + 999 + + - - + - - 🤔 - - - 9999 - + + 🤔 + + + 9999 + + - - + - -  - + +  + + - + @@ -99732,24 +102293,40 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - 1 - + + + 1 + + - - + - - + - 1 - + + + 1 + + - - + - - + - 1 - + + + 1 + + - - + - - â¤ï¸ - - - 1 - + + â¤ï¸ + + + 1 + + - - + - - 🶠- - - 1 - + + 🶠+ + + 1 + + - - + - - 😀 - - - 1 - + + 😀 + + + 1 + + - - + - - 😬 - - + - 1 - + + 😬 + + + 1 + + - - + - - 😠- - - 1 - + + 😠+ + + 1 + + - - + - -  - + +  + + - + @@ -101155,24 +103955,40 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - 😂 - - - 1 - + + 😂 + + + 1 + + - - + - - + - 99 - + + + 99 + + - - + - - 🤔 - - - 999 - + + 🤔 + + + 999 + + - - + - - 🤔 - - - 9999 - + + 🤔 + + + 9999 + + - - + + - - -  - + +  + + - + @@ -102117,24 +105048,40 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - 1 - + + + 1 + + - - + - - + - 1 - + + + 1 + + - - + - - + - 1 - + + + 1 + + - - + - - â¤ï¸ - - - 1 - + + â¤ï¸ + + + 1 + + - - + - - 🶠- - - 1 - + + 🶠+ + + 1 + + - - + - - 😀 - - - 1 - + + 😀 + + + 1 + + - - + - - 😬 - - - 1 - + + 😬 + + + 1 + + - - + - - 😠- - - 1 - + + 😠+ + + 1 + + - - + - -  - + +  + + - + @@ -103540,24 +106710,40 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m } testID="avatar" > - - - + - - - + - - - View thread - - + + View thread + + + - - - + @@ -104260,24 +107480,40 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m } testID="avatar" > - - - + - - - + - - - + - - - + - - - + - - - View thread - - + + View thread + + + - - - + @@ -105761,24 +109025,40 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } testID="avatar" > - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - Text button - - + + Text button + + + @@ -109361,24 +112624,40 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - Text button - - + + Text button + + + @@ -110042,24 +113326,40 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot } testID="avatar" > - - - + - - - + - - - Text button - - + + Text button + + + @@ -110545,24 +113850,40 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot } testID="avatar" > - - - + - - - + - - - Text button - - + + Text button + + + @@ -111226,24 +114552,40 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - Title - - - - + Title + + + - Image text + + Image text + - + - - + transition={null} + width={80} + /> + - + - - - + - - - + - - - Title - - - - + Title + + + - Image text + + Image text + - + - - + transition={null} + width={80} + /> + - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - - rocket.cat - - - - - - Custom fields 2 - + rocket.cat - - - + - Field 1 + + + Custom fields 2 + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - - + - - - + - - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - - rocket.cat - - - - - - Custom fields 2 - + rocket.cat - - - + - Field 1 + + + Custom fields 2 + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - + - - - + - - - + - - - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - + - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - + + Rocket.Chat - Free, Open Source, Enterprise Team Chat + + + Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. + + - - + - - Google - - + - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - + @@ -130551,24 +133921,40 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - Google - - + - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - + @@ -131128,104 +134519,129 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` } } > - - - Google - - + - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - + @@ -131366,24 +134782,40 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - Google - - + - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - + @@ -131833,24 +135270,40 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` } testID="avatar" > - - - + - + - - + - + > + + @@ -132256,24 +135714,40 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - Google - - + - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - + @@ -132723,24 +136202,40 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - + > + + @@ -133146,24 +136646,40 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - + - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - + + Rocket.Chat - Free, Open Source, Enterprise Team Chat + + + Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. + + - - + - - Google - - + - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - + @@ -133711,24 +137257,40 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - Google - - + - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - + @@ -134288,104 +137855,129 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` } } > - - - Google - - + - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - + + Google + + + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + + - + @@ -134526,24 +138118,40 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - - - + - File.pdf + + File.pdf + - + - + - - - + - File.pdf + + File.pdf + - + - + - - - + - File.pdf + + File.pdf + - + - + - - - + - - - + - - - + - File.pdf + + File.pdf + - + - + - - - + - File.pdf + + File.pdf + - + - + - - - + - - - + - - + - + - + -  - - - +  + + + + /> + - + @@ -144969,24 +148675,40 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + - + -  - - - +  + + + + /> + - + + This is a description + + + + + + + + + + + + - This is a description - + /> - + > +  + - - - + + + + + + - - - - - - - -  - - - - - + @@ -146096,24 +149873,40 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + - + -  - - - +  + + + + /> + - - + - + - + - + -  - - - +  + + + + /> + - + @@ -146850,24 +150673,40 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + - + + + + - - + @@ -147493,24 +151337,40 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + - + -  - - - +  + + + + /> + - + @@ -148168,72 +152033,77 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` - - + - + - + -  - - - +  + + + + /> + - + @@ -148456,24 +152346,40 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + - + -  - - - +  + + + + /> + - - + - + - + - + -  - + > + +  + + + - - + @@ -149210,24 +153146,40 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + - + + + + - - + @@ -149853,24 +153810,40 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + -  - + +  + + - + @@ -150532,125 +154510,150 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` - - + - + -  - + +  + + - + @@ -150780,24 +154783,40 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + -  - + +  + + - + - - - + -  - + +  + + - + @@ -151483,24 +155532,40 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + -  - + +  + + - + @@ -152086,24 +156156,40 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + -  - + +  + + - + @@ -152590,24 +156681,40 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - + - + -  - + +  + + - + - - + - + -  - + +  + + - + diff --git a/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap b/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap index 267b24753aa..ac922224f7a 100644 --- a/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap +++ b/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap @@ -2,24 +2,40 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` [ - - - - - Use - - + + Use + + + - , - , + - - - - Use - - + + Use + + + - , + , ] `; diff --git a/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap b/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap index 3449e2022df..7f1a5454b88 100644 --- a/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap +++ b/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap @@ -16,24 +16,40 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` ] } /> - - @@ -362,7 +360,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - - @@ -722,7 +718,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - - @@ -1084,7 +1078,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - - @@ -1444,7 +1436,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - - @@ -1804,7 +1794,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - - @@ -2184,25 +2172,41 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` - - + - @@ -2531,25 +2517,41 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` - - + - @@ -2878,7 +2862,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` - + - - - + , - - - + , - - - + , ] @@ -983,7 +977,7 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={10} + handlerTag={7} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -1066,24 +1060,40 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` } } > - - - + , - - - + , ] @@ -1602,7 +1592,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={16} + handlerTag={11} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -1685,24 +1675,40 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } } > - - - + , - - - + , - - - + , ] diff --git a/app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap b/app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap index 024d83bbc1a..babfddd4c87 100644 --- a/app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap +++ b/app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap @@ -2,24 +2,41 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` [ - - - , - , + - - , - , + - - , - , + - - , + , ] `; @@ -331,24 +327,41 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` } > - - - + @@ -524,24 +519,40 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - - + - - + @@ -1504,24 +1493,40 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - - + - - - + @@ -2842,24 +2822,40 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - - + - - + @@ -3822,24 +3796,40 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - - + - - - + @@ -5160,24 +5125,40 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - - + - - + @@ -6140,24 +6099,40 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` } testID="avatar" > - - - + - - - + - - - + - - - + - - @@ -389,24 +387,40 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` } } > - - - + - + - - @@ -867,24 +861,40 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` } } > - - - + - + - - @@ -1345,24 +1335,40 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` } } > - - - + - - + - @@ -1810,24 +1796,40 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` } } > - - - + - + - - @@ -2292,24 +2274,40 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - - - + - + - - @@ -2754,24 +2732,40 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - - - + - + - - @@ -3216,24 +3190,40 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - - - + - + - - @@ -3678,24 +3648,40 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - - - + - + - - @@ -4140,24 +4106,40 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - - - + - + - - @@ -4638,24 +4600,40 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } } > - - - + - - + - @@ -5103,24 +5061,40 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } } > - - - + - - + - @@ -5568,24 +5522,40 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } } > - - - + - + Date: Thu, 26 Mar 2026 15:56:53 -0300 Subject: [PATCH 041/108] fix: gesture handler iOS focusable on keyboard --- app/containers/Button/Button.test.tsx | 2 +- .../Button/__snapshots__/Button.test.tsx.snap | 950 +- app/containers/Button/index.tsx | 21 +- .../__snapshots__/LoginServices.test.tsx.snap | 278 +- .../__snapshots__/UiKitMessage.test.tsx.snap | 1680 +- .../__snapshots__/UiKitModal.test.tsx.snap | 1394 +- .../__snapshots__/Message.test.tsx.snap | 574 +- .../CannedResponseItem.test.tsx.snap | 298 +- .../react-native-gesture-handler+2.24.0.patch | 28441 ++++++++++++++++ 9 files changed, 30551 insertions(+), 3087 deletions(-) create mode 100644 patches/react-native-gesture-handler+2.24.0.patch diff --git a/app/containers/Button/Button.test.tsx b/app/containers/Button/Button.test.tsx index d6e92a863f2..5c98db24f85 100644 --- a/app/containers/Button/Button.test.tsx +++ b/app/containers/Button/Button.test.tsx @@ -64,7 +64,7 @@ describe('ButtonTests', () => { test('disabled button is in disabled state', async () => { const { findByTestId } = render(); const button = await findByTestId(testProps.testID); - expect(button.props.accessibilityState.disabled).toBe(true); + expect(button.props.enabled).toBe(false); }); test('should trigger onPress function on button press', async () => { diff --git a/app/containers/Button/__snapshots__/Button.test.tsx.snap b/app/containers/Button/__snapshots__/Button.test.tsx.snap index 038e84eaf2b..c514b1ae90b 100644 --- a/app/containers/Button/__snapshots__/Button.test.tsx.snap +++ b/app/containers/Button/__snapshots__/Button.test.tsx.snap @@ -1,687 +1,511 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Story Snapshots: CustomButton should match snapshot 1`] = ` - + - - Press me! - - - + Press me! + + `; exports[`Story Snapshots: DisabledButton should match snapshot 1`] = ` - + - - Press me! - - - + Press me! + + `; exports[`Story Snapshots: DisabledLoadingButton should match snapshot 1`] = ` - + - - - + /> + `; exports[`Story Snapshots: LoadingButton should match snapshot 1`] = ` - + - - - + /> + `; exports[`Story Snapshots: PrimaryButton should match snapshot 1`] = ` - + - - Press me! - - - + Press me! + + `; exports[`Story Snapshots: SecondaryButton should match snapshot 1`] = ` - + - - Press me! - - - + Press me! + + `; exports[`Story Snapshots: SmallButton should match snapshot 1`] = ` - + - - Press me! - - - + Press me! + + `; diff --git a/app/containers/Button/index.tsx b/app/containers/Button/index.tsx index 2901b6a74e7..10eb486142e 100644 --- a/app/containers/Button/index.tsx +++ b/app/containers/Button/index.tsx @@ -1,14 +1,12 @@ import React from 'react'; -import { Pressable, type PressableProps, type StyleProp, StyleSheet, Text, type TextStyle, type ViewStyle } from 'react-native'; -import { withKeyboardFocus } from 'react-native-external-keyboard'; +import { type StyleProp, StyleSheet, Text, type TextStyle, type ViewStyle } from 'react-native'; +import { RectButton, type RectButtonProps } from 'react-native-gesture-handler'; import { useTheme } from '../../theme'; import sharedStyles from '../../views/Styles'; import ActivityIndicator from '../ActivityIndicator'; -const KeyboardFocusablePressable = withKeyboardFocus(Pressable); - -interface IButtonProps extends Omit { +interface IButtonProps extends Omit { title: string; onPress: () => void; type?: 'primary' | 'secondary'; @@ -90,18 +88,19 @@ const Button: React.FC = ({ ]; return ( - {loading ? : {title}} - + ); }; diff --git a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap index 94a31cb823c..9edd1c16989 100644 --- a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap +++ b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap @@ -2,104 +2,77 @@ exports[`Story Snapshots: Separators should match snapshot 1`] = ` [ - + - - More options - - - , + More options + + , , - + - - Less options - - - , + Less options + + , - + - - Approve - - - + Approve + + , - + - - Deny - - - + Deny + + , - + - - Deny - - - + Deny + + , - + - - Deny - - - + Deny + + , - - - - Deny - - - - , - - + - - Deny - - - + Deny + + , - + - - Deny - - - + Deny + + , - - + - Show more + Deny - - , + + , + + + + Show more + + , ] `; @@ -5091,104 +4877,77 @@ exports[`Story Snapshots: SectionButton should match snapshot 1`] = ` - + - - button - - - + button + + `; @@ -5272,102 +5031,77 @@ exports[`Story Snapshots: SectionDatePicker should match snapshot 1`] = ` - + - - Select a date - - - + Select a date + + `; @@ -5658,102 +5392,77 @@ exports[`Story Snapshots: SectionMultiSelect should match snapshot 1`] = ` - + - - 2 selecteds - - - + 2 selecteds + + , - + - - 0 selecteds - - - + 0 selecteds + + , ] `; diff --git a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap index 1f3d356ff0c..b7912e577fa 100644 --- a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap @@ -1011,504 +1011,369 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` } />, - + - - Primary Action - - - + Primary Action + + , - + - - Secondary - - - + Secondary + + , - + - - Danger Action - - - + Danger Action + + , - + - - Button 4 - - - + Button 4 + + , - + - - Button 5 - - - + Button 5 + + , - + - - Button 6 - Hidden - - - + Button 6 - Hidden + + , - + - - Button 7 - Hidden - - - + Button 7 - Hidden + + , - + - - Button 8 - Hidden - - - + Button 8 - Hidden + + , - + - - Show more - - - , + Show more + + , - + - - Change - - - + Change + + , - + - - Text button - - - + Text button + + @@ -113096,102 +113071,77 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` - + - - Text button - - - + Text button + + @@ -113633,102 +113583,77 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot - + - - Text button - - - + Text button + + @@ -114322,102 +114247,77 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot - + - - Text button - - - + Text button + + @@ -140478,7 +140378,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` - + - - Use - - - + Use + + - + - - Use - - - + Use + + >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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..fbd117b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..0969e44 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..96564a1 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,264 @@ ++The target system is: Android - 1 - aarch64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/otavio.stasiak/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;;-O2;-frtti;-fexceptions;-Wall;-Werror;-std=c++20;-DANDROID ++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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_5f974 && [1/2] Building C object CMakeFiles/cmTC_5f974.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_5f974.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_5f974.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0 ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/otavio.stasiak/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_5f974 ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_5f974 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_5f974 && [1/2] Building C object CMakeFiles/cmTC_5f974.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_5f974.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_5f974.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/otavio.stasiak/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_5f974] ++ 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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_5f974 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/otavio.stasiak/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_5f974] ==> ignore ++ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_2449c && [1/2] Building CXX object CMakeFiles/cmTC_2449c.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0 ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/otavio.stasiak/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_2449c ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_2449c /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/otavio.stasiak/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_2449c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_2449c && [1/2] Building CXX object CMakeFiles/cmTC_2449c.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/otavio.stasiak/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_2449c] ++ 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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_2449c /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/otavio.stasiak/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_2449c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/otavio.stasiak/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_2449c] ==> ignore ++ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/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_2449c.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..ec631a6 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/gesturehandler.dir ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/edit_cache.dir ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o +new file mode 100644 +index 0000000..d987723 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..853ac08 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# 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: GestureHandler ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__gesturehandler_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/otavio.stasiak/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__gesturehandler_Debug ++ command = $PRE_LINK && /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/additional_project_files.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json +new file mode 100644 +index 0000000..3ba125a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json +@@ -0,0 +1,41 @@ ++{ ++ "buildFiles": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "gesturehandler::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "gesturehandler", ++ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so", ++ "runtimeFiles": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..9f29b89 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build_mini.json +@@ -0,0 +1,30 @@ ++{ ++ "buildFiles": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "gesturehandler::@6890427a1f51a3e7e1df": { ++ "artifactName": "gesturehandler", ++ "abi": "arm64-v8a", ++ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so", ++ "runtimeFiles": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja +new file mode 100644 +index 0000000..99249fd +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja +@@ -0,0 +1,156 @@ ++# 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: GestureHandler ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target gesturehandler ++ ++ ++############################################# ++# Order-only phony target for gesturehandler ++ ++build cmake_object_order_depends_target_gesturehandler: phony || CMakeFiles/gesturehandler.dir ++ ++build CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o: CXX_COMPILER__gesturehandler_Debug /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp || cmake_object_order_depends_target_gesturehandler ++ DEFINES = -Dgesturehandler_EXPORTS ++ DEP_FILE = CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 ++ INCLUDES = -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/gesturehandler.dir ++ OBJECT_FILE_DIR = CMakeFiles/gesturehandler.dir ++ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ ++ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target gesturehandler ++ ++ ++############################################# ++# Link the shared library /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so ++ ++build /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so: CXX_SHARED_LIBRARY_LINKER__gesturehandler_Debug CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o | /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -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 ++ LINK_LIBRARIES = /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/gesturehandler.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libgesturehandler.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ ++ TARGET_FILE = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so ++ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build gesturehandler: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so ++ ++build libgesturehandler.so: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a ++ ++build all: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build_file_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build_file_index.txt +new file mode 100644 +index 0000000..d6c5787 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build_file_index.txt +@@ -0,0 +1 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/cmake_install.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/cmake_install.cmake +new file mode 100644 +index 0000000..cc387dc +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++ ++# 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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..343a961 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json +@@ -0,0 +1,7 @@ ++[ ++{ ++ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", ++ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", ++ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json.bin +new file mode 100644 +index 0000000..87049ce +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/configure_fingerprint.bin +new file mode 100644 +index 0000000..7693e91 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/configure_fingerprint.bin +@@ -0,0 +1,30 @@ ++C/C++ Structured Logµ ++² ++¯/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ù•¢ÙÒ3  Áâ”´Ò3² ++¯ ++¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json  ù•¢ÙÒ3å Áâ”´Ò3· ++´ ++±/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build_mini.json  ù•¢ÙÒ3¯ Ââ”´Ò3¤ ++¡ ++ž/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja  ù•¢ÙÒ3þŒ ·â”´Ò3¨ ++¥ ++¢/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja.txt  ù•¢ÙÒ3­ ++ª ++§/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build_file_index.txt  ù•¢ÙÒ3 Ââ”´Ò3® ++« ++¨/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json  ù•¢ÙÒ3é ·â”´Ò3² ++¯ ++¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json.bin  ù•¢ÙÒ3 Š ·â”´Ò3¸ ++µ ++²/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/metadata_generation_command.txt  ù•¢ÙÒ3 ++© Ââ”´Ò3« ++¨ ++¥/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/prefab_config.json  ù•¢ÙÒ3 Œ Ââ”´Ò3° ++­ ++ª/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/symbol_folder_index.txt  ù•¢ÙÒ3 © Ââ”´Ò3– ++“ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt  ù•¢ÙÒ3 — ¥®°Ò3à ++Ý ++Ú/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/metadata_generation_command.txt +new file mode 100644 +index 0000000..10cac2b +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/metadata_generation_command.txt +@@ -0,0 +1,24 @@ ++ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab ++-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a ++-GNinja ++-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native ++-DREACT_NATIVE_MINOR_VERSION=79 ++-DANDROID_STL=c++_shared ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/prefab_config.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/prefab_config.json +new file mode 100644 +index 0000000..729bee5 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/prefab_config.json +@@ -0,0 +1,9 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/symbol_folder_index.txt +new file mode 100644 +index 0000000..77c7fb9 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cache-v2-cb9dca4205b87fb7ddbe.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cache-v2-cb9dca4205b87fb7ddbe.json +new file mode 100644 +index 0000000..8dcfb07 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cache-v2-cb9dca4205b87fb7ddbe.json +@@ -0,0 +1,1427 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "armeabi-v7a" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/otavio.stasiak/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" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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" : "armeabi-v7a" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a" ++ }, ++ { ++ "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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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" : "-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" ++ }, ++ { ++ "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", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ { ++ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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" : "GestureHandler" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a" ++ }, ++ { ++ "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/otavio.stasiak/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" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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" : "GestureHandler_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a" ++ }, ++ { ++ "name" : "GestureHandler_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "GestureHandler_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ { ++ "name" : "REACT_NATIVE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native" ++ }, ++ { ++ "name" : "REACT_NATIVE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "79" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "gesturehandler_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::reactnative;general;ReactAndroid::jsi;" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-c1b453b18e90914810a1.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-c1b453b18e90914810a1.json +new file mode 100644 +index 0000000..377a495 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-c1b453b18e90914810a1.json +@@ -0,0 +1,815 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-6fcda735bec4f0114fa8.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-6fcda735bec4f0114fa8.json +new file mode 100644 +index 0000000..1daf5cb +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-6fcda735bec4f0114fa8.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" : "GestureHandler", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "gesturehandler::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-gesturehandler-Debug-bf8aa2ee2e706b313811.json", ++ "name" : "gesturehandler", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/index-2026-03-25T19-42-37-0758.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/index-2026-03-25T19-42-37-0758.json +new file mode 100644 +index 0000000..4c62cfb +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/index-2026-03-25T19-42-37-0758.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/otavio.stasiak/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-6fcda735bec4f0114fa8.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-cb9dca4205b87fb7ddbe.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-c1b453b18e90914810a1.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-cb9dca4205b87fb7ddbe.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-c1b453b18e90914810a1.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-6fcda735bec4f0114fa8.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/target-gesturehandler-Debug-bf8aa2ee2e706b313811.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/target-gesturehandler-Debug-bf8aa2ee2e706b313811.json +new file mode 100644 +index 0000000..a6bc354 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/target-gesturehandler-Debug-bf8aa2ee2e706b313811.json +@@ -0,0 +1,193 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 17, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 30, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "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 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "gesturehandler_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "gesturehandler::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "gesturehandler", ++ "nameOnDisk" : "libgesturehandler.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "cpp-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_deps b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_deps +new file mode 100644 +index 0000000..d3d784a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_deps differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_log +new file mode 100644 +index 0000000..c3fa559 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_log +@@ -0,0 +1,3 @@ ++# ninja log v5 ++0 764 1774467758529681996 CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o 608f7a062521de76 ++766 806 1774467758573042000 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so bf73c9dcd4d3c0e7 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeCache.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeCache.txt +new file mode 100644 +index 0000000..eb45355 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeCache.txt +@@ -0,0 +1,416 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a ++# It was generated by CMake: /Users/otavio.stasiak/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=armeabi-v7a ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/otavio.stasiak/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 ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/otavio.stasiak/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=armeabi-v7a ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID ++ ++//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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/otavio.stasiak/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=GestureHandler ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a ++ ++//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/otavio.stasiak/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 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/otavio.stasiak/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 ++ ++//Value Computed by CMake ++GestureHandler_BINARY_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a ++ ++//Value Computed by CMake ++GestureHandler_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++GestureHandler_SOURCE_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_DIR:UNINITIALIZED=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid ++ ++//Dependencies for the target ++gesturehandler_LIB_DEPENDS:STATIC=general;ReactAndroid::reactnative;general;ReactAndroid::jsi; ++ ++ ++######################## ++# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a ++//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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++//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/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..6a46449 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/otavio.stasiak/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 "4") ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..5b55fa7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/otavio.stasiak/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 "20") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/otavio.stasiak/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 "4") ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..00af166 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..8cccd21 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..0ed54a6 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/otavio.stasiak/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 "armv7-a") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..0f0baaf +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..ab19a4a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..e64f963 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,266 @@ ++The target system is: Android - 1 - armv7-a ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/otavio.stasiak/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;-march=armv7-a;-mthumb;-Wformat;-Werror=format-security; ++Id flags: -c;--target=armv7-none-linux-androideabi24 ++ ++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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/otavio.stasiak/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;-march=armv7-a;-mthumb;-Wformat;-Werror=format-security;;-O2;-frtti;-fexceptions;-Wall;-Werror;-std=c++20;-DANDROID ++Id flags: -c;--target=armv7-none-linux-androideabi24 ++ ++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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_19763 && [1/2] Building C object CMakeFiles/cmTC_19763.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: armv7-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple thumbv7-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=1 -target-cpu generic -target-feature +soft-float-abi -target-feature +vfp2 -target-feature +vfp2sp -target-feature +vfp3 -target-feature +vfp3d16 -target-feature +vfp3d16sp -target-feature +vfp3sp -target-feature -fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature -vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature +fp64 -target-feature +d32 -target-feature +neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs-linux -mfloat-abi soft -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0 ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi ++ /Users/otavio.stasiak/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_19763 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: armv7-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL -z now -z relro -z max-page-size=4096 -X --hash-style=gnu --eh-frame-hdr -m armelf_linux_eabi -pie -dynamic-linker /system/bin/linker -o cmTC_19763 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ++ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_19763 && [1/2] Building C object CMakeFiles/cmTC_19763.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: armv7-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple thumbv7-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=1 -target-cpu generic -target-feature +soft-float-abi -target-feature +vfp2 -target-feature +vfp2sp -target-feature +vfp3 -target-feature +vfp3d16 -target-feature +vfp3d16sp -target-feature +vfp3sp -target-feature -fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature -vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature +fp64 -target-feature +d32 -target-feature +neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs-linux -mfloat-abi soft -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ++ ignore line: [ /Users/otavio.stasiak/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_19763] ++ 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: armv7-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL -z now -z relro -z max-page-size=4096 -X --hash-style=gnu --eh-frame-hdr -m armelf_linux_eabi -pie -dynamic-linker /system/bin/linker -o cmTC_19763 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [-X] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [armelf_linux_eabi] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_19763] ==> ignore ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ 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_19763.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ++ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ++ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ++ implicit dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_90c96 && [1/2] Building CXX object CMakeFiles/cmTC_90c96.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: armv7-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple thumbv7-none-linux-android24 -emit-obj -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=1 -target-cpu generic -target-feature +soft-float-abi -target-feature +vfp2 -target-feature +vfp2sp -target-feature +vfp3 -target-feature +vfp3d16 -target-feature +vfp3d16sp -target-feature +vfp3sp -target-feature -fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature -vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature +fp64 -target-feature +d32 -target-feature +neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs-linux -mfloat-abi soft -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0 ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi ++ /Users/otavio.stasiak/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_90c96 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: armv7-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL -z now -z relro -z max-page-size=4096 -X --hash-style=gnu --eh-frame-hdr -m armelf_linux_eabi -pie -dynamic-linker /system/bin/linker -o cmTC_90c96 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ++ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_90c96 && [1/2] Building CXX object CMakeFiles/cmTC_90c96.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: armv7-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple thumbv7-none-linux-android24 -emit-obj -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=1 -target-cpu generic -target-feature +soft-float-abi -target-feature +vfp2 -target-feature +vfp2sp -target-feature +vfp3 -target-feature +vfp3d16 -target-feature +vfp3d16sp -target-feature +vfp3sp -target-feature -fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature -vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature +fp64 -target-feature +d32 -target-feature +neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs-linux -mfloat-abi soft -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ++ ignore line: [ /Users/otavio.stasiak/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_90c96] ++ 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: armv7-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL -z now -z relro -z max-page-size=4096 -X --hash-style=gnu --eh-frame-hdr -m armelf_linux_eabi -pie -dynamic-linker /system/bin/linker -o cmTC_90c96 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [-X] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [armelf_linux_eabi] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_90c96] ==> ignore ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ 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_90c96.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ++ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ++ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ++ implicit dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..415af89 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/gesturehandler.dir ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/edit_cache.dir ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/cmake.check_cache b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o +new file mode 100644 +index 0000000..b4d6d88 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/rules.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..cfea65e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# 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: GestureHandler ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__gesturehandler_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi24 --sysroot=/Users/otavio.stasiak/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__gesturehandler_Debug ++ command = $PRE_LINK && /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi24 --sysroot=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/additional_project_files.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json +new file mode 100644 +index 0000000..351b2f8 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json +@@ -0,0 +1,41 @@ ++{ ++ "buildFiles": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "gesturehandler::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "armeabi-v7a", ++ "artifactName": "gesturehandler", ++ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so", ++ "runtimeFiles": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build_mini.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..1c0476d +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build_mini.json +@@ -0,0 +1,30 @@ ++{ ++ "buildFiles": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "gesturehandler::@6890427a1f51a3e7e1df": { ++ "artifactName": "gesturehandler", ++ "abi": "armeabi-v7a", ++ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so", ++ "runtimeFiles": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja +new file mode 100644 +index 0000000..0a4e191 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja +@@ -0,0 +1,156 @@ ++# 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: GestureHandler ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target gesturehandler ++ ++ ++############################################# ++# Order-only phony target for gesturehandler ++ ++build cmake_object_order_depends_target_gesturehandler: phony || CMakeFiles/gesturehandler.dir ++ ++build CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o: CXX_COMPILER__gesturehandler_Debug /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp || cmake_object_order_depends_target_gesturehandler ++ DEFINES = -Dgesturehandler_EXPORTS ++ DEP_FILE = CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 ++ INCLUDES = -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/gesturehandler.dir ++ OBJECT_FILE_DIR = CMakeFiles/gesturehandler.dir ++ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ ++ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target gesturehandler ++ ++ ++############################################# ++# Link the shared library /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so ++ ++build /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so: CXX_SHARED_LIBRARY_LINKER__gesturehandler_Debug CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o | /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.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 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info ++ LINK_FLAGS = -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments ++ LINK_LIBRARIES = /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/gesturehandler.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libgesturehandler.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ ++ TARGET_FILE = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so ++ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a ++ 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build gesturehandler: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so ++ ++build libgesturehandler.so: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a ++ ++build all: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build_file_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build_file_index.txt +new file mode 100644 +index 0000000..d6c5787 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build_file_index.txt +@@ -0,0 +1 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/cmake_install.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/cmake_install.cmake +new file mode 100644 +index 0000000..4d95154 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++ ++# 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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json +new file mode 100644 +index 0000000..9b46301 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json +@@ -0,0 +1,7 @@ ++[ ++{ ++ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", ++ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json.bin +new file mode 100644 +index 0000000..ddbd7c3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/configure_fingerprint.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/configure_fingerprint.bin +new file mode 100644 +index 0000000..bcb7553 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/configure_fingerprint.bin +@@ -0,0 +1,30 @@ ++C/C++ Structured Log· ++´ ++±/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ‹–¢ÙÒ3  Âí”´Ò3´ ++± ++®/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json  ‹–¢ÙÒ3ñ Âí”´Ò3¹ ++¶ ++³/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build_mini.json  ‹–¢ÙÒ3» Ãí”´Ò3¦ ++£ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja  ‹–¢ÙÒ3½ ¹í”´Ò3ª ++§ ++¤/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja.txt  ‹–¢ÙÒ3¯ ++¬ ++©/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build_file_index.txt  ‹–¢ÙÒ3 Ãí”´Ò3° ++­ ++ª/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json  ‹–¢ÙÒ3„ ¹í”´Ò3´ ++± ++®/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json.bin  ‹–¢ÙÒ3 ³ ¹í”´Ò3º ++· ++´/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/metadata_generation_command.txt  ‹–¢ÙÒ3 ++µ Ãí”´Ò3­ ++ª ++§/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/prefab_config.json  ‹–¢ÙÒ3 Œ Ãí”´Ò3² ++¯ ++¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/symbol_folder_index.txt  ‹–¢ÙÒ3 « Ãí”´Ò3– ++“ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt  ‹–¢ÙÒ3 — ¥®°Ò3à ++Ý ++Ú/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/metadata_generation_command.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/metadata_generation_command.txt +new file mode 100644 +index 0000000..7404f0e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/metadata_generation_command.txt +@@ -0,0 +1,24 @@ ++ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=armeabi-v7a ++-DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a ++-DANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab ++-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a ++-GNinja ++-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native ++-DREACT_NATIVE_MINOR_VERSION=79 ++-DANDROID_STL=c++_shared ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/prefab_config.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/prefab_config.json +new file mode 100644 +index 0000000..729bee5 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/prefab_config.json +@@ -0,0 +1,9 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/symbol_folder_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/symbol_folder_index.txt +new file mode 100644 +index 0000000..250afa2 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/hash_key.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/hash_key.txt +new file mode 100644 +index 0000000..3575c5c +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/hash_key.txt +@@ -0,0 +1,31 @@ ++# Values used to calculate the hash in this folder name. ++# Should not depend on the absolute path of the project itself. ++# - AGP: 8.8.2. ++# - $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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++-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_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab ++-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI ++-GNinja ++-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native ++-DREACT_NATIVE_MINOR_VERSION=79 ++-DANDROID_STL=c++_shared ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ba35918 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/libs/android.arm64-v8a/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..6bfe942 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.4) ++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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..c3a3a08 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +new file mode 100644 +index 0000000..71da67b +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +@@ -0,0 +1,16 @@ ++if(NOT TARGET react-native-reanimated::reanimated) ++add_library(react-native-reanimated::reanimated INTERFACE IMPORTED) ++set_target_properties(react-native-reanimated::reanimated PROPERTIES ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET react-native-reanimated::worklets) ++add_library(react-native-reanimated::worklets INTERFACE IMPORTED) ++set_target_properties(react-native-reanimated::worklets PROPERTIES ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake +new file mode 100644 +index 0000000..7d1d8c4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.17.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..4228fd7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/libs/android.armeabi-v7a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/libs/android.armeabi-v7a/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..6bfe942 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.4) ++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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..87ace3c +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/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/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.armeabi-v7a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +new file mode 100644 +index 0000000..71da67b +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +@@ -0,0 +1,16 @@ ++if(NOT TARGET react-native-reanimated::reanimated) ++add_library(react-native-reanimated::reanimated INTERFACE IMPORTED) ++set_target_properties(react-native-reanimated::reanimated PROPERTIES ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET react-native-reanimated::worklets) ++add_library(react-native-reanimated::worklets INTERFACE IMPORTED) ++set_target_properties(react-native-reanimated::worklets PROPERTIES ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake +new file mode 100644 +index 0000000..7d1d8c4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.17.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..dbb5d7f +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/libs/android.x86/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/libs/android.x86/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..6bfe942 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.4) ++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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..56b2b2a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-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/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +new file mode 100644 +index 0000000..71da67b +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +@@ -0,0 +1,16 @@ ++if(NOT TARGET react-native-reanimated::reanimated) ++add_library(react-native-reanimated::reanimated INTERFACE IMPORTED) ++set_target_properties(react-native-reanimated::reanimated PROPERTIES ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET react-native-reanimated::worklets) ++add_library(react-native-reanimated::worklets INTERFACE IMPORTED) ++set_target_properties(react-native-reanimated::worklets PROPERTIES ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake +new file mode 100644 +index 0000000..7d1d8c4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.17.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..462041d +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/libs/android.x86_64/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..6bfe942 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.4) ++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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..2f2f12a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +new file mode 100644 +index 0000000..71da67b +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +@@ -0,0 +1,16 @@ ++if(NOT TARGET react-native-reanimated::reanimated) ++add_library(react-native-reanimated::reanimated INTERFACE IMPORTED) ++set_target_properties(react-native-reanimated::reanimated PROPERTIES ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET react-native-reanimated::worklets) ++add_library(react-native-reanimated::worklets INTERFACE IMPORTED) ++set_target_properties(react-native-reanimated::worklets PROPERTIES ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake +new file mode 100644 +index 0000000..7d1d8c4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.17.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cache-v2-24f647c05be31dc9c191.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cache-v2-24f647c05be31dc9c191.json +new file mode 100644 +index 0000000..b6c8b24 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cache-v2-24f647c05be31dc9c191.json +@@ -0,0 +1,1427 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/otavio.stasiak/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" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86" ++ }, ++ { ++ "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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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" : "-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" ++ }, ++ { ++ "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", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ { ++ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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" : "GestureHandler" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86" ++ }, ++ { ++ "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/otavio.stasiak/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" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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" : "GestureHandler_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86" ++ }, ++ { ++ "name" : "GestureHandler_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "GestureHandler_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ { ++ "name" : "REACT_NATIVE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native" ++ }, ++ { ++ "name" : "REACT_NATIVE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "79" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "gesturehandler_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::reactnative;general;ReactAndroid::jsi;" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cmakeFiles-v1-806d11a324d8346665cd.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cmakeFiles-v1-806d11a324d8346665cd.json +new file mode 100644 +index 0000000..184c82f +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cmakeFiles-v1-806d11a324d8346665cd.json +@@ -0,0 +1,815 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/codemodel-v2-470fb88baf3a9e0aae7c.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/codemodel-v2-470fb88baf3a9e0aae7c.json +new file mode 100644 +index 0000000..46792b4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/codemodel-v2-470fb88baf3a9e0aae7c.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" : "GestureHandler", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "gesturehandler::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-gesturehandler-Debug-5943cd00c6b389c5fb62.json", ++ "name" : "gesturehandler", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/index-2026-03-25T19-42-39-0142.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/index-2026-03-25T19-42-39-0142.json +new file mode 100644 +index 0000000..589c9be +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/index-2026-03-25T19-42-39-0142.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/otavio.stasiak/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-470fb88baf3a9e0aae7c.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-24f647c05be31dc9c191.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-806d11a324d8346665cd.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-24f647c05be31dc9c191.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-806d11a324d8346665cd.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-470fb88baf3a9e0aae7c.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/target-gesturehandler-Debug-5943cd00c6b389c5fb62.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/target-gesturehandler-Debug-5943cd00c6b389c5fb62.json +new file mode 100644 +index 0000000..2360e7c +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/target-gesturehandler-Debug-5943cd00c6b389c5fb62.json +@@ -0,0 +1,193 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 17, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 30, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "gesturehandler_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "gesturehandler::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "gesturehandler", ++ "nameOnDisk" : "libgesturehandler.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "cpp-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_deps b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_deps +new file mode 100644 +index 0000000..ee48351 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_deps differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_log +new file mode 100644 +index 0000000..180993b +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_log +@@ -0,0 +1,3 @@ ++# ninja log v5 ++0 767 1774467759916131231 CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o d4835c308332be40 ++768 808 1774467759959537944 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so 348bd13f70fe846f +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeCache.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeCache.txt +new file mode 100644 +index 0000000..6e6ffb8 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeCache.txt +@@ -0,0 +1,416 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 ++# It was generated by CMake: /Users/otavio.stasiak/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 ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/otavio.stasiak/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 ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/otavio.stasiak/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 ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID ++ ++//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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/otavio.stasiak/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=GestureHandler ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 ++ ++//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/otavio.stasiak/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 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/otavio.stasiak/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 ++ ++//Value Computed by CMake ++GestureHandler_BINARY_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 ++ ++//Value Computed by CMake ++GestureHandler_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++GestureHandler_SOURCE_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_DIR:UNINITIALIZED=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid ++ ++//Dependencies for the target ++gesturehandler_LIB_DEPENDS:STATIC=general;ReactAndroid::reactnative;general;ReactAndroid::jsi; ++ ++ ++######################## ++# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 ++//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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++//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/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..b0a409d +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/otavio.stasiak/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 "4") ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..f2b6aa2 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/otavio.stasiak/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 "20") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/otavio.stasiak/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 "4") ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..608eb70 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..b85a34f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..44587d3 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/otavio.stasiak/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 "i686") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..0690c03 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..c4cd645 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeOutput.log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..795eb66 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,256 @@ ++The target system is: Android - 1 - i686 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/otavio.stasiak/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=i686-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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/otavio.stasiak/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;;-O2;-frtti;-fexceptions;-Wall;-Werror;-std=c++20;-DANDROID ++Id flags: -c;--target=i686-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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_f3842 && [1/2] Building C object CMakeFiles/cmTC_f3842.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: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple i686-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 i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_f3842.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0 ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android ++ /Users/otavio.stasiak/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_f3842 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_i386 -pie -dynamic-linker /system/bin/linker -o cmTC_f3842 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_f3842 && [1/2] Building C object CMakeFiles/cmTC_f3842.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: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple i686-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 i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_f3842.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ ignore line: [ /Users/otavio.stasiak/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_f3842] ++ 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: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_i386 -pie -dynamic-linker /system/bin/linker -o cmTC_f3842 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/otavio.stasiak/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_i386] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_f3842] ==> ignore ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ 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_f3842.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c5844 && [1/2] Building CXX object CMakeFiles/cmTC_c5844.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: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple i686-none-linux-android24 -emit-obj -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=none -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0 ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android ++ /Users/otavio.stasiak/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_c5844 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_i386 -pie -dynamic-linker /system/bin/linker -o cmTC_c5844 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c5844 && [1/2] Building CXX object CMakeFiles/cmTC_c5844.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: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple i686-none-linux-android24 -emit-obj -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=none -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ ignore line: [ /Users/otavio.stasiak/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_c5844] ++ 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: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_i386 -pie -dynamic-linker /system/bin/linker -o cmTC_c5844 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/otavio.stasiak/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_i386] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_c5844] ==> ignore ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ 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_c5844.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..d4930d1 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/gesturehandler.dir ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/edit_cache.dir ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/cmake.check_cache b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o +new file mode 100644 +index 0000000..9f40ba2 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/rules.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..334cd33 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# 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: GestureHandler ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__gesturehandler_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/otavio.stasiak/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__gesturehandler_Debug ++ command = $PRE_LINK && /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/additional_project_files.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json +new file mode 100644 +index 0000000..ee80673 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json +@@ -0,0 +1,41 @@ ++{ ++ "buildFiles": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "gesturehandler::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86", ++ "artifactName": "gesturehandler", ++ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so", ++ "runtimeFiles": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build_mini.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build_mini.json +new file mode 100644 +index 0000000..c77b6f1 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build_mini.json +@@ -0,0 +1,30 @@ ++{ ++ "buildFiles": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "gesturehandler::@6890427a1f51a3e7e1df": { ++ "artifactName": "gesturehandler", ++ "abi": "x86", ++ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so", ++ "runtimeFiles": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja +new file mode 100644 +index 0000000..4404133 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja +@@ -0,0 +1,156 @@ ++# 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: GestureHandler ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target gesturehandler ++ ++ ++############################################# ++# Order-only phony target for gesturehandler ++ ++build cmake_object_order_depends_target_gesturehandler: phony || CMakeFiles/gesturehandler.dir ++ ++build CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o: CXX_COMPILER__gesturehandler_Debug /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp || cmake_object_order_depends_target_gesturehandler ++ DEFINES = -Dgesturehandler_EXPORTS ++ DEP_FILE = CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 ++ INCLUDES = -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/gesturehandler.dir ++ OBJECT_FILE_DIR = CMakeFiles/gesturehandler.dir ++ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ ++ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target gesturehandler ++ ++ ++############################################# ++# Link the shared library /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so ++ ++build /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so: CXX_SHARED_LIBRARY_LINKER__gesturehandler_Debug CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o | /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info ++ LINK_FLAGS = -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments ++ LINK_LIBRARIES = /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/gesturehandler.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libgesturehandler.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ ++ TARGET_FILE = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so ++ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 ++ 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build gesturehandler: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so ++ ++build libgesturehandler.so: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 ++ ++build all: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build_file_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build_file_index.txt +new file mode 100644 +index 0000000..d6c5787 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build_file_index.txt +@@ -0,0 +1 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/cmake_install.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/cmake_install.cmake +new file mode 100644 +index 0000000..1ecace6 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++ ++# 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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json +new file mode 100644 +index 0000000..006abc9 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json +@@ -0,0 +1,7 @@ ++[ ++{ ++ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", ++ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json.bin +new file mode 100644 +index 0000000..238cd7a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/configure_fingerprint.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/configure_fingerprint.bin +new file mode 100644 +index 0000000..9a2ec76 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/configure_fingerprint.bin +@@ -0,0 +1,30 @@ ++C/C++ Structured Log¯ ++¬ ++©/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  Ÿ–¢ÙÒ3  ©ø”´Ò3¬ ++© ++¦/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json  Ÿ–¢ÙÒ3Á ©ø”´Ò3± ++® ++«/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build_mini.json  Ÿ–¢ÙÒ3‹ ªø”´Ò3ž ++› ++˜/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja  Ÿ–¢ÙÒ3Ó‹  ø”´Ò3¢ ++Ÿ ++œ/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja.txt  Ÿ–¢ÙÒ3§ ++¤ ++¡/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build_file_index.txt  Ÿ–¢ÙÒ3 ªø”´Ò3¨ ++¥ ++¢/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json  Ÿ–¢ÙÒ3à  ø”´Ò3¬ ++© ++¦/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json.bin  Ÿ–¢ÙÒ3   ø”´Ò3² ++¯ ++¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/metadata_generation_command.txt  Ÿ–¢ÙÒ3 ++… ªø”´Ò3¥ ++¢ ++Ÿ/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/prefab_config.json  Ÿ–¢ÙÒ3 Œ ªø”´Ò3ª ++§ ++¤/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/symbol_folder_index.txt  Ÿ–¢ÙÒ3 £ ªø”´Ò3– ++“ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt  Ÿ–¢ÙÒ3 — ¥®°Ò3à ++Ý ++Ú/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/metadata_generation_command.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/metadata_generation_command.txt +new file mode 100644 +index 0000000..a29e9c6 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/metadata_generation_command.txt +@@ -0,0 +1,24 @@ ++ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=x86 ++-DCMAKE_ANDROID_ARCH_ABI=x86 ++-DANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab ++-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 ++-GNinja ++-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native ++-DREACT_NATIVE_MINOR_VERSION=79 ++-DANDROID_STL=c++_shared ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/prefab_config.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/prefab_config.json +new file mode 100644 +index 0000000..729bee5 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/prefab_config.json +@@ -0,0 +1,9 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/symbol_folder_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/symbol_folder_index.txt +new file mode 100644 +index 0000000..4592d58 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cache-v2-0791228dcb33ff9ef9b0.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cache-v2-0791228dcb33ff9ef9b0.json +new file mode 100644 +index 0000000..1df26f6 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cache-v2-0791228dcb33ff9ef9b0.json +@@ -0,0 +1,1427 @@ ++{ ++ "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/otavio.stasiak/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" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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" : "-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" ++ }, ++ { ++ "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", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ { ++ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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" : "GestureHandler" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/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/otavio.stasiak/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" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/otavio.stasiak/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" : "GestureHandler_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64" ++ }, ++ { ++ "name" : "GestureHandler_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "GestureHandler_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ { ++ "name" : "REACT_NATIVE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native" ++ }, ++ { ++ "name" : "REACT_NATIVE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "79" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "gesturehandler_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::reactnative;general;ReactAndroid::jsi;" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-97f321fee200f4855df2.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-97f321fee200f4855df2.json +new file mode 100644 +index 0000000..85ab67d +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-97f321fee200f4855df2.json +@@ -0,0 +1,815 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/codemodel-v2-1ce6e1107b27aef6ade2.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/codemodel-v2-1ce6e1107b27aef6ade2.json +new file mode 100644 +index 0000000..54094ec +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/codemodel-v2-1ce6e1107b27aef6ade2.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" : "GestureHandler", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "gesturehandler::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-gesturehandler-Debug-1447ebbd7a7590eafedc.json", ++ "name" : "gesturehandler", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/index-2026-03-25T19-42-40-0527.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/index-2026-03-25T19-42-40-0527.json +new file mode 100644 +index 0000000..f25035b +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/index-2026-03-25T19-42-40-0527.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/otavio.stasiak/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-1ce6e1107b27aef6ade2.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-0791228dcb33ff9ef9b0.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-97f321fee200f4855df2.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-0791228dcb33ff9ef9b0.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-97f321fee200f4855df2.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-1ce6e1107b27aef6ade2.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/target-gesturehandler-Debug-1447ebbd7a7590eafedc.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/target-gesturehandler-Debug-1447ebbd7a7590eafedc.json +new file mode 100644 +index 0000000..bbc860d +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/target-gesturehandler-Debug-1447ebbd7a7590eafedc.json +@@ -0,0 +1,193 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 17, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 30, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "gesturehandler_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "gesturehandler::@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", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "gesturehandler", ++ "nameOnDisk" : "libgesturehandler.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "cpp-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_deps b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_deps +new file mode 100644 +index 0000000..c87b41e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_deps differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_log +new file mode 100644 +index 0000000..8e440a7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_log +@@ -0,0 +1,3 @@ ++# ninja log v5 ++0 771 1774467761306574770 CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o 833bdfd93f0158bc ++773 812 1774467761350111774 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so de6a14b45c3ae8a2 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeCache.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeCache.txt +new file mode 100644 +index 0000000..bd2fba1 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeCache.txt +@@ -0,0 +1,416 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 ++# It was generated by CMake: /Users/otavio.stasiak/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/otavio.stasiak/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 ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID ++ ++//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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/otavio.stasiak/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=GestureHandler ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/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/otavio.stasiak/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 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/otavio.stasiak/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 ++ ++//Value Computed by CMake ++GestureHandler_BINARY_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 ++ ++//Value Computed by CMake ++GestureHandler_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++GestureHandler_SOURCE_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_DIR:UNINITIALIZED=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid ++ ++//Dependencies for the target ++gesturehandler_LIB_DEPENDS:STATIC=general;ReactAndroid::reactnative;general;ReactAndroid::jsi; ++ ++ ++######################## ++# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++//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/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..0ddbb20 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..2386787 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/otavio.stasiak/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 "20") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..16c3f39 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..71756e5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..bcfd315 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..fe62e97 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..f116586 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..ffd7962 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,258 @@ ++The target system is: Android - 1 - x86_64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/otavio.stasiak/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;;-O2;-frtti;-fexceptions;-Wall;-Werror;-std=c++20;-DANDROID ++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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_d0969 && [1/2] Building C object CMakeFiles/cmTC_d0969.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_d0969.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_d0969.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0 ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/otavio.stasiak/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_d0969 ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_d0969 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_d0969 && [1/2] Building C object CMakeFiles/cmTC_d0969.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_d0969.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_d0969.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/otavio.stasiak/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_d0969] ++ 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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_d0969 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/otavio.stasiak/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_d0969] ==> ignore ++ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_66462 && [1/2] Building CXX object CMakeFiles/cmTC_66462.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -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=none -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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0 ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/otavio.stasiak/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_66462 ++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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_66462 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/otavio.stasiak/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_66462.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_66462 && [1/2] Building CXX object CMakeFiles/cmTC_66462.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -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=none -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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/otavio.stasiak/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_66462] ++ 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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_66462 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/otavio.stasiak/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_66462.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/otavio.stasiak/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_66462] ==> ignore ++ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/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_66462.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..7e96c16 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/gesturehandler.dir ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/edit_cache.dir ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o +new file mode 100644 +index 0000000..0b1248f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..3be7900 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# 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: GestureHandler ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__gesturehandler_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/otavio.stasiak/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__gesturehandler_Debug ++ command = $PRE_LINK && /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/additional_project_files.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json +new file mode 100644 +index 0000000..b024df2 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json +@@ -0,0 +1,41 @@ ++{ ++ "buildFiles": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "gesturehandler::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86_64", ++ "artifactName": "gesturehandler", ++ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so", ++ "runtimeFiles": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build_mini.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build_mini.json +new file mode 100644 +index 0000000..ec8b24c +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build_mini.json +@@ -0,0 +1,30 @@ ++{ ++ "buildFiles": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "gesturehandler::@6890427a1f51a3e7e1df": { ++ "artifactName": "gesturehandler", ++ "abi": "x86_64", ++ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so", ++ "runtimeFiles": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja +new file mode 100644 +index 0000000..9deea98 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja +@@ -0,0 +1,156 @@ ++# 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: GestureHandler ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target gesturehandler ++ ++ ++############################################# ++# Order-only phony target for gesturehandler ++ ++build cmake_object_order_depends_target_gesturehandler: phony || CMakeFiles/gesturehandler.dir ++ ++build CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o: CXX_COMPILER__gesturehandler_Debug /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp || cmake_object_order_depends_target_gesturehandler ++ DEFINES = -Dgesturehandler_EXPORTS ++ DEP_FILE = CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 ++ INCLUDES = -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/gesturehandler.dir ++ OBJECT_FILE_DIR = CMakeFiles/gesturehandler.dir ++ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ ++ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target gesturehandler ++ ++ ++############################################# ++# Link the shared library /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so ++ ++build /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so: CXX_SHARED_LIBRARY_LINKER__gesturehandler_Debug CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o | /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -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 ++ LINK_LIBRARIES = /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/gesturehandler.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libgesturehandler.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ ++ TARGET_FILE = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so ++ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build gesturehandler: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so ++ ++build libgesturehandler.so: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 ++ ++build all: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build_file_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build_file_index.txt +new file mode 100644 +index 0000000..d6c5787 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build_file_index.txt +@@ -0,0 +1 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/cmake_install.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/cmake_install.cmake +new file mode 100644 +index 0000000..66e3bd3 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++ ++# 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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json +new file mode 100644 +index 0000000..91958d1 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json +@@ -0,0 +1,7 @@ ++[ ++{ ++ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", ++ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json.bin +new file mode 100644 +index 0000000..831dfab +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/configure_fingerprint.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/configure_fingerprint.bin +new file mode 100644 +index 0000000..f8ce337 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/configure_fingerprint.bin +@@ -0,0 +1,30 @@ ++C/C++ Structured Log² ++¯ ++¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ±–¢ÙÒ3  ’ƒ•´Ò3¯ ++¬ ++©/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json  ±–¢ÙÒ3Ó “ƒ•´Ò3´ ++± ++®/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build_mini.json  ±–¢ÙÒ3 “ƒ•´Ò3¡ ++ž ++›/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja  ±–¢ÙÒ3¸Œ ‰ƒ•´Ò3¥ ++¢ ++Ÿ/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja.txt  ±–¢ÙÒ3ª ++§ ++¤/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build_file_index.txt  ±–¢ÙÒ3 ”ƒ•´Ò3« ++¨ ++¥/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json  ±–¢ÙÒ3å ‰ƒ•´Ò3¯ ++¬ ++©/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json.bin  ±–¢ÙÒ3 † ‰ƒ•´Ò3µ ++² ++¯/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/metadata_generation_command.txt  ±–¢ÙÒ3 ++— ”ƒ•´Ò3¨ ++¥ ++¢/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/prefab_config.json  ±–¢ÙÒ3 Œ ”ƒ•´Ò3­ ++ª ++§/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/symbol_folder_index.txt  ±–¢ÙÒ3 ¦ ”ƒ•´Ò3– ++“ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt  ±–¢ÙÒ3 — ¥®°Ò3à ++Ý ++Ú/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/metadata_generation_command.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/metadata_generation_command.txt +new file mode 100644 +index 0000000..7a4ef72 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/metadata_generation_command.txt +@@ -0,0 +1,24 @@ ++ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni ++-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab ++-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 ++-GNinja ++-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native ++-DREACT_NATIVE_MINOR_VERSION=79 ++-DANDROID_STL=c++_shared ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/prefab_config.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/prefab_config.json +new file mode 100644 +index 0000000..729bee5 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/prefab_config.json +@@ -0,0 +1,9 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/symbol_folder_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/symbol_folder_index.txt +new file mode 100644 +index 0000000..585a90d +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..343a961 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +@@ -0,0 +1,7 @@ ++[ ++{ ++ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", ++ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", ++ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/armeabi-v7a/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/armeabi-v7a/compile_commands.json +new file mode 100644 +index 0000000..9b46301 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/armeabi-v7a/compile_commands.json +@@ -0,0 +1,7 @@ ++[ ++{ ++ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", ++ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86/compile_commands.json +new file mode 100644 +index 0000000..006abc9 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86/compile_commands.json +@@ -0,0 +1,7 @@ ++[ ++{ ++ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", ++ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86_64/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86_64/compile_commands.json +new file mode 100644 +index 0000000..91958d1 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86_64/compile_commands.json +@@ -0,0 +1,7 @@ ++[ ++{ ++ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", ++ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/.project b/node_modules/react-native-gesture-handler/android/.project +new file mode 100644 +index 0000000..d6a6551 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/.project +@@ -0,0 +1,28 @@ ++ ++ ++ react-native-gesture-handler ++ Project react-native-gesture-handler created by Buildship. ++ ++ ++ ++ ++ org.eclipse.buildship.core.gradleprojectbuilder ++ ++ ++ ++ ++ ++ org.eclipse.buildship.core.gradleprojectnature ++ ++ ++ ++ 1769703269993 ++ ++ 30 ++ ++ org.eclipse.core.resources.regexFilterMatcher ++ node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ ++ ++ ++ ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/results.bin b/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..e77f75e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/results.bin b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/results.bin +new file mode 100644 +index 0000000..7ed749e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirDebug +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.dex +new file mode 100644 +index 0000000..1de775c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.dex +new file mode 100644 +index 0000000..e0eda1f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.dex +new file mode 100644 +index 0000000..392ec08 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.dex +new file mode 100644 +index 0000000..a76d778 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/BuildConfig.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/BuildConfig.dex +new file mode 100644 +index 0000000..710c259 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/BuildConfig.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.dex +new file mode 100644 +index 0000000..28c6359 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/RNGestureHandlerPackage.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/RNGestureHandlerPackage.dex +new file mode 100644 +index 0000000..75c639a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/RNGestureHandlerPackage.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReactContextExtensionsKt.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReactContextExtensionsKt.dex +new file mode 100644 +index 0000000..e51c734 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReactContextExtensionsKt.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReanimatedEventDispatcher.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReanimatedEventDispatcher.dex +new file mode 100644 +index 0000000..8cc06c3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReanimatedEventDispatcher.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/DiagonalDirections.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/DiagonalDirections.dex +new file mode 100644 +index 0000000..df19599 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/DiagonalDirections.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.dex +new file mode 100644 +index 0000000..65d9644 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler.dex +new file mode 100644 +index 0000000..03bedeb +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.dex +new file mode 100644 +index 0000000..822c178 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$Companion.dex +new file mode 100644 +index 0000000..a56a3e4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$PointerData.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$PointerData.dex +new file mode 100644 +index 0000000..3d5dd3c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$PointerData.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler.dex +new file mode 100644 +index 0000000..85ce573 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.dex +new file mode 100644 +index 0000000..4cc03be +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.dex +new file mode 100644 +index 0000000..c15b4af +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.dex +new file mode 100644 +index 0000000..42e8e31 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.dex +new file mode 100644 +index 0000000..42a3561 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerRegistry.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerRegistry.dex +new file mode 100644 +index 0000000..ea49fc3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerRegistry.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureUtils.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureUtils.dex +new file mode 100644 +index 0000000..f6773cf +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureUtils.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.dex +new file mode 100644 +index 0000000..ac4cc2b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler.dex +new file mode 100644 +index 0000000..e554c18 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.dex +new file mode 100644 +index 0000000..1d587eb +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler.dex +new file mode 100644 +index 0000000..abe9591 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ManualGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ManualGestureHandler.dex +new file mode 100644 +index 0000000..c98f094 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ManualGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.dex +new file mode 100644 +index 0000000..2519f48 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.dex +new file mode 100644 +index 0000000..7e9bf5d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.dex +new file mode 100644 +index 0000000..8783862 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.dex +new file mode 100644 +index 0000000..b863508 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.dex +new file mode 100644 +index 0000000..d3267ee +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.dex +new file mode 100644 +index 0000000..fe76f55 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.dex +new file mode 100644 +index 0000000..7438b72 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.dex +new file mode 100644 +index 0000000..59f70c7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.dex +new file mode 100644 +index 0000000..d7f4127 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler.dex +new file mode 100644 +index 0000000..ee92674 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/OnTouchEventListener.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/OnTouchEventListener.dex +new file mode 100644 +index 0000000..52220fe +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/OnTouchEventListener.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.dex +new file mode 100644 +index 0000000..710c43c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler.dex +new file mode 100644 +index 0000000..b2b101b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.dex +new file mode 100644 +index 0000000..ca8f445 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler.dex +new file mode 100644 +index 0000000..6d1ae15 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PointerEventsConfig.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PointerEventsConfig.dex +new file mode 100644 +index 0000000..74c80c4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PointerEventsConfig.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.dex +new file mode 100644 +index 0000000..a809005 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector.dex +new file mode 100644 +index 0000000..91d159b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.dex +new file mode 100644 +index 0000000..a90f39d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.dex +new file mode 100644 +index 0000000..b6df3a3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler.dex +new file mode 100644 +index 0000000..de294a4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.dex +new file mode 100644 +index 0000000..1325d17 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.dex +new file mode 100644 +index 0000000..67c73b0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.dex +new file mode 100644 +index 0000000..e3cbafe +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector.dex +new file mode 100644 +index 0000000..5c5bd84 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData$Companion.dex +new file mode 100644 +index 0000000..86e0c46 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData.dex +new file mode 100644 +index 0000000..772270d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.dex +new file mode 100644 +index 0000000..efbdbb3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler.dex +new file mode 100644 +index 0000000..7dbe6a4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector$Companion.dex +new file mode 100644 +index 0000000..9d42c47 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector.dex +new file mode 100644 +index 0000000..bc58908 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ViewConfigurationHelper.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ViewConfigurationHelper.dex +new file mode 100644 +index 0000000..864b76b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ViewConfigurationHelper.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/ExtensionsKt.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/ExtensionsKt.dex +new file mode 100644 +index 0000000..9731c43 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/ExtensionsKt.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.dex +new file mode 100644 +index 0000000..19750c3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.dex +new file mode 100644 +index 0000000..b708d57 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.dex +new file mode 100644 +index 0000000..00df2bd +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.dex +new file mode 100644 +index 0000000..4700444 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.dex +new file mode 100644 +index 0000000..81b1abd +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.dex +new file mode 100644 +index 0000000..7c8984c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.dex +new file mode 100644 +index 0000000..275dc25 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.dex +new file mode 100644 +index 0000000..cbb9da1 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.dex +new file mode 100644 +index 0000000..e62f823 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.dex +new file mode 100644 +index 0000000..ec3b4c7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.dex +new file mode 100644 +index 0000000..b548fbd +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.dex +new file mode 100644 +index 0000000..97ad39a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.dex +new file mode 100644 +index 0000000..93bdb64 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.dex +new file mode 100644 +index 0000000..4a3b15d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.dex +new file mode 100644 +index 0000000..e8a657e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.dex +new file mode 100644 +index 0000000..d425ef6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.dex +new file mode 100644 +index 0000000..c19e805 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.dex +new file mode 100644 +index 0000000..31365e4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.dex +new file mode 100644 +index 0000000..98ff356 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.dex +new file mode 100644 +index 0000000..9e07a9e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.dex +new file mode 100644 +index 0000000..cd86257 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.dex +new file mode 100644 +index 0000000..2416307 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule.dex +new file mode 100644 +index 0000000..7141fb1 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.dex +new file mode 100644 +index 0000000..db95eae +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.dex +new file mode 100644 +index 0000000..9597a69 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.dex +new file mode 100644 +index 0000000..a72dd6a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.dex +new file mode 100644 +index 0000000..7780703 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.dex +new file mode 100644 +index 0000000..2f97288 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.dex +new file mode 100644 +index 0000000..60cefdb +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.dex +new file mode 100644 +index 0000000..3518010 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.dex +new file mode 100644 +index 0000000..7df6abb +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.dex +new file mode 100644 +index 0000000..390c08a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.dex +new file mode 100644 +index 0000000..97d2e5e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.dex +new file mode 100644 +index 0000000..da49a87 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.dex +new file mode 100644 +index 0000000..6a79422 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.dex +new file mode 100644 +index 0000000..4089502 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.dex +new file mode 100644 +index 0000000..4ecb7b0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.dex +new file mode 100644 +index 0000000..5213775 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..c1aaf53 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..3e665bc +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..35a1251 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..63d335e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..16eb182 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..7cdc55b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..452a2fe +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..bd0abab +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..fd0aea4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.dex +new file mode 100644 +index 0000000..befcfb9 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.dex differ +diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin +new file mode 100644 +index 0000000..a825eb1 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/buildConfig/debug/com/swmansion/gesturehandler/BuildConfig.java b/node_modules/react-native-gesture-handler/android/build/generated/source/buildConfig/debug/com/swmansion/gesturehandler/BuildConfig.java +new file mode 100644 +index 0000000..b83a119 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/buildConfig/debug/com/swmansion/gesturehandler/BuildConfig.java +@@ -0,0 +1,14 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.swmansion.gesturehandler; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.swmansion.gesturehandler"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = true; ++ // Field from default config. ++ public static final int REACT_NATIVE_MINOR_VERSION = 79; ++} +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +new file mode 100644 +index 0000000..755f026 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java +@@ -0,0 +1,60 @@ ++/** ++* 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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.ColorPropConverter; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNGestureHandlerButtonManagerDelegate & RNGestureHandlerButtonManagerInterface> extends BaseViewManagerDelegate { ++ public RNGestureHandlerButtonManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "exclusive": ++ mViewManager.setExclusive(view, value == null ? true : (boolean) value); ++ break; ++ case "foreground": ++ mViewManager.setForeground(view, value == null ? false : (boolean) value); ++ break; ++ case "borderless": ++ mViewManager.setBorderless(view, value == null ? false : (boolean) value); ++ break; ++ case "enabled": ++ mViewManager.setEnabled(view, value == null ? true : (boolean) value); ++ break; ++ case "rippleColor": ++ mViewManager.setRippleColor(view, ColorPropConverter.getColor(value, view.getContext())); ++ break; ++ case "rippleRadius": ++ mViewManager.setRippleRadius(view, value == null ? 0 : ((Double) value).intValue()); ++ break; ++ case "touchSoundDisabled": ++ mViewManager.setTouchSoundDisabled(view, value == null ? false : (boolean) value); ++ break; ++ case "borderWidth": ++ mViewManager.setBorderWidth(view, value == null ? 0f : ((Double) value).floatValue()); ++ break; ++ case "borderColor": ++ mViewManager.setBorderColor(view, ColorPropConverter.getColor(value, view.getContext())); ++ break; ++ case "borderStyle": ++ mViewManager.setBorderStyle(view, value == null ? "solid" : (String) value); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +new file mode 100644 +index 0000000..975704f +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java +@@ -0,0 +1,27 @@ ++/** ++* 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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNGestureHandlerButtonManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setExclusive(T view, boolean value); ++ void setForeground(T view, boolean value); ++ void setBorderless(T view, boolean value); ++ void setEnabled(T view, boolean value); ++ void setRippleColor(T view, @Nullable Integer value); ++ void setRippleRadius(T view, int value); ++ void setTouchSoundDisabled(T view, boolean value); ++ void setBorderWidth(T view, float value); ++ void setBorderColor(T view, @Nullable Integer value); ++ void setBorderStyle(T view, @Nullable String value); ++} +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +new file mode 100644 +index 0000000..99dfe01 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java +@@ -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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNGestureHandlerRootViewManagerDelegate & RNGestureHandlerRootViewManagerInterface> extends BaseViewManagerDelegate { ++ public RNGestureHandlerRootViewManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ super.setProperty(view, propName, value); ++ } ++} +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +new file mode 100644 +index 0000000..c94080e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java +@@ -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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNGestureHandlerRootViewManagerInterface extends ViewManagerWithGeneratedInterface { ++ // No props ++} +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.java +new file mode 100644 +index 0000000..e789525 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.java +@@ -0,0 +1,66 @@ ++ ++/** ++ * 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.gesturehandler; ++ ++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.bridge.ReadableMap; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++ ++public abstract class NativeRNGestureHandlerModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNGestureHandlerModule"; ++ ++ public NativeRNGestureHandlerModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void handleSetJSResponder(double tag, boolean blockNativeResponder); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void handleClearJSResponder(); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void createGestureHandler(String handlerName, double handlerTag, ReadableMap config); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void attachGestureHandler(double handlerTag, double newView, double actionType); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void updateGestureHandler(double handlerTag, ReadableMap newConfig); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void dropGestureHandler(double handlerTag); ++ ++ @ReactMethod(isBlockingSynchronousMethod = true) ++ @DoNotStrip ++ public abstract boolean install(); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void flushOperations(); ++} +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/CMakeLists.txt +new file mode 100644 +index 0000000..7b82c5f +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/CMakeLists.txt +@@ -0,0 +1,36 @@ ++# 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/rngesturehandler_codegen/*.cpp) ++ ++add_library( ++ react_codegen_rngesturehandler_codegen ++ OBJECT ++ ${react_codegen_SRCS} ++) ++ ++target_include_directories(react_codegen_rngesturehandler_codegen PUBLIC . react/renderer/components/rngesturehandler_codegen) ++ ++target_link_libraries( ++ react_codegen_rngesturehandler_codegen ++ 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_options( ++ react_codegen_rngesturehandler_codegen ++ PRIVATE ++ -DLOG_TAG=\"ReactNative\" ++ -fexceptions ++ -frtti ++ -std=c++20 ++ -Wall ++) +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.cpp +new file mode 100644 +index 0000000..7c4ad29 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.cpp +@@ -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: GenerateComponentDescriptorCpp.js ++ */ ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++void rngesturehandler_codegen_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry) { ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h +new file mode 100644 +index 0000000..d52c8b3 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h +@@ -0,0 +1,25 @@ ++ ++/** ++ * 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 { ++ ++using RNGestureHandlerButtonComponentDescriptor = ConcreteComponentDescriptor; ++using RNGestureHandlerRootViewComponentDescriptor = ConcreteComponentDescriptor; ++ ++void rngesturehandler_codegen_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry); ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.cpp +new file mode 100644 +index 0000000..f6088d4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.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: GenerateEventEmitterCpp.js ++ */ ++ ++#include ++ ++ ++namespace facebook::react { ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.h +new file mode 100644 +index 0000000..38a62d7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.h +@@ -0,0 +1,30 @@ ++ ++/** ++ * 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 { ++class RNGestureHandlerButtonEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNGestureHandlerRootViewEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.cpp +new file mode 100644 +index 0000000..63a1785 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.cpp +@@ -0,0 +1,41 @@ ++ ++/** ++ * 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 { ++ ++RNGestureHandlerButtonProps::RNGestureHandlerButtonProps( ++ const PropsParserContext &context, ++ const RNGestureHandlerButtonProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ exclusive(convertRawProp(context, rawProps, "exclusive", sourceProps.exclusive, {true})), ++ foreground(convertRawProp(context, rawProps, "foreground", sourceProps.foreground, {false})), ++ borderless(convertRawProp(context, rawProps, "borderless", sourceProps.borderless, {false})), ++ enabled(convertRawProp(context, rawProps, "enabled", sourceProps.enabled, {true})), ++ rippleColor(convertRawProp(context, rawProps, "rippleColor", sourceProps.rippleColor, {})), ++ rippleRadius(convertRawProp(context, rawProps, "rippleRadius", sourceProps.rippleRadius, {0})), ++ touchSoundDisabled(convertRawProp(context, rawProps, "touchSoundDisabled", sourceProps.touchSoundDisabled, {false})), ++ borderWidth(convertRawProp(context, rawProps, "borderWidth", sourceProps.borderWidth, {0.0})), ++ borderColor(convertRawProp(context, rawProps, "borderColor", sourceProps.borderColor, {})), ++ borderStyle(convertRawProp(context, rawProps, "borderStyle", sourceProps.borderStyle, {"solid"})) ++ {} ++RNGestureHandlerRootViewProps::RNGestureHandlerRootViewProps( ++ const PropsParserContext &context, ++ const RNGestureHandlerRootViewProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps) ++ ++ ++ {} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.h +new file mode 100644 +index 0000000..7164354 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.h +@@ -0,0 +1,47 @@ ++ ++/** ++ * 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 ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++class RNGestureHandlerButtonProps final : public ViewProps { ++ public: ++ RNGestureHandlerButtonProps() = default; ++ RNGestureHandlerButtonProps(const PropsParserContext& context, const RNGestureHandlerButtonProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ bool exclusive{true}; ++ bool foreground{false}; ++ bool borderless{false}; ++ bool enabled{true}; ++ SharedColor rippleColor{}; ++ int rippleRadius{0}; ++ bool touchSoundDisabled{false}; ++ Float borderWidth{0.0}; ++ SharedColor borderColor{}; ++ std::string borderStyle{"solid"}; ++}; ++ ++class RNGestureHandlerRootViewProps final : public ViewProps { ++ public: ++ RNGestureHandlerRootViewProps() = default; ++ RNGestureHandlerRootViewProps(const PropsParserContext& context, const RNGestureHandlerRootViewProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.cpp +new file mode 100644 +index 0000000..d398757 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.cpp +@@ -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: GenerateShadowNodeCpp.js ++ */ ++ ++#include ++ ++namespace facebook::react { ++ ++extern const char RNGestureHandlerButtonComponentName[] = "RNGestureHandlerButton"; ++extern const char RNGestureHandlerRootViewComponentName[] = "RNGestureHandlerRootView"; ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.h +new file mode 100644 +index 0000000..0cafb3e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.h +@@ -0,0 +1,43 @@ ++ ++/** ++ * 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 { ++ ++JSI_EXPORT extern const char RNGestureHandlerButtonComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNGestureHandlerButtonShadowNode = ConcreteViewShadowNode< ++ RNGestureHandlerButtonComponentName, ++ RNGestureHandlerButtonProps, ++ RNGestureHandlerButtonEventEmitter, ++ RNGestureHandlerButtonState>; ++ ++JSI_EXPORT extern const char RNGestureHandlerRootViewComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNGestureHandlerRootViewShadowNode = ConcreteViewShadowNode< ++ RNGestureHandlerRootViewComponentName, ++ RNGestureHandlerRootViewProps, ++ RNGestureHandlerRootViewEventEmitter, ++ RNGestureHandlerRootViewState>; ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.cpp +new file mode 100644 +index 0000000..e61488c +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/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-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.h +new file mode 100644 +index 0000000..bbafc33 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.h +@@ -0,0 +1,41 @@ ++/** ++ * 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 ++ ++#ifdef ANDROID ++#include ++#endif ++ ++namespace facebook::react { ++ ++class RNGestureHandlerButtonState { ++public: ++ RNGestureHandlerButtonState() = default; ++ ++#ifdef ANDROID ++ RNGestureHandlerButtonState(RNGestureHandlerButtonState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNGestureHandlerRootViewState { ++public: ++ RNGestureHandlerRootViewState() = default; ++ ++#ifdef ANDROID ++ RNGestureHandlerRootViewState(RNGestureHandlerRootViewState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++} // namespace facebook::react +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI-generated.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI-generated.cpp +new file mode 100644 +index 0000000..7855e77 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI-generated.cpp +@@ -0,0 +1,86 @@ ++/** ++ * 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 "rngesturehandler_codegenJSI.h" ++ ++namespace facebook::react { ++ ++static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_handleSetJSResponder(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ static_cast(&turboModule)->handleSetJSResponder( ++ rt, ++ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asNumber(), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asBool() ++ ); ++ return jsi::Value::undefined(); ++} ++static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_handleClearJSResponder(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ static_cast(&turboModule)->handleClearJSResponder( ++ rt ++ ); ++ return jsi::Value::undefined(); ++} ++static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_createGestureHandler(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ static_cast(&turboModule)->createGestureHandler( ++ rt, ++ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asString(rt), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asNumber(), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt) ++ ); ++ return jsi::Value::undefined(); ++} ++static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_attachGestureHandler(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ static_cast(&turboModule)->attachGestureHandler( ++ rt, ++ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asNumber(), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asNumber(), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber() ++ ); ++ return jsi::Value::undefined(); ++} ++static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_updateGestureHandler(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ static_cast(&turboModule)->updateGestureHandler( ++ rt, ++ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asNumber(), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt) ++ ); ++ return jsi::Value::undefined(); ++} ++static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_dropGestureHandler(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ static_cast(&turboModule)->dropGestureHandler( ++ rt, ++ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asNumber() ++ ); ++ return jsi::Value::undefined(); ++} ++static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_install(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->install( ++ rt ++ ); ++} ++static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_flushOperations(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ static_cast(&turboModule)->flushOperations( ++ rt ++ ); ++ return jsi::Value::undefined(); ++} ++ ++NativeRNGestureHandlerModuleCxxSpecJSI::NativeRNGestureHandlerModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNGestureHandlerModule", jsInvoker) { ++ methodMap_["handleSetJSResponder"] = MethodMetadata {2, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_handleSetJSResponder}; ++ methodMap_["handleClearJSResponder"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_handleClearJSResponder}; ++ methodMap_["createGestureHandler"] = MethodMetadata {3, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_createGestureHandler}; ++ methodMap_["attachGestureHandler"] = MethodMetadata {3, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_attachGestureHandler}; ++ methodMap_["updateGestureHandler"] = MethodMetadata {2, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_updateGestureHandler}; ++ methodMap_["dropGestureHandler"] = MethodMetadata {1, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_dropGestureHandler}; ++ methodMap_["install"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_install}; ++ methodMap_["flushOperations"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_flushOperations}; ++} ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI.h +new file mode 100644 +index 0000000..1e438db +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI.h +@@ -0,0 +1,134 @@ ++/** ++ * 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 NativeRNGestureHandlerModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNGestureHandlerModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual void handleSetJSResponder(jsi::Runtime &rt, double tag, bool blockNativeResponder) = 0; ++ virtual void handleClearJSResponder(jsi::Runtime &rt) = 0; ++ virtual void createGestureHandler(jsi::Runtime &rt, jsi::String handlerName, double handlerTag, jsi::Object config) = 0; ++ virtual void attachGestureHandler(jsi::Runtime &rt, double handlerTag, double newView, double actionType) = 0; ++ virtual void updateGestureHandler(jsi::Runtime &rt, double handlerTag, jsi::Object newConfig) = 0; ++ virtual void dropGestureHandler(jsi::Runtime &rt, double handlerTag) = 0; ++ virtual bool install(jsi::Runtime &rt) = 0; ++ virtual void flushOperations(jsi::Runtime &rt) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNGestureHandlerModuleCxxSpec : 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 = "RNGestureHandlerModule"; ++ ++protected: ++ NativeRNGestureHandlerModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNGestureHandlerModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNGestureHandlerModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNGestureHandlerModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ void handleSetJSResponder(jsi::Runtime &rt, double tag, bool blockNativeResponder) override { ++ static_assert( ++ bridging::getParameterCount(&T::handleSetJSResponder) == 3, ++ "Expected handleSetJSResponder(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::handleSetJSResponder, jsInvoker_, instance_, std::move(tag), std::move(blockNativeResponder)); ++ } ++ void handleClearJSResponder(jsi::Runtime &rt) override { ++ static_assert( ++ bridging::getParameterCount(&T::handleClearJSResponder) == 1, ++ "Expected handleClearJSResponder(...) to have 1 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::handleClearJSResponder, jsInvoker_, instance_); ++ } ++ void createGestureHandler(jsi::Runtime &rt, jsi::String handlerName, double handlerTag, jsi::Object config) override { ++ static_assert( ++ bridging::getParameterCount(&T::createGestureHandler) == 4, ++ "Expected createGestureHandler(...) to have 4 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::createGestureHandler, jsInvoker_, instance_, std::move(handlerName), std::move(handlerTag), std::move(config)); ++ } ++ void attachGestureHandler(jsi::Runtime &rt, double handlerTag, double newView, double actionType) override { ++ static_assert( ++ bridging::getParameterCount(&T::attachGestureHandler) == 4, ++ "Expected attachGestureHandler(...) to have 4 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::attachGestureHandler, jsInvoker_, instance_, std::move(handlerTag), std::move(newView), std::move(actionType)); ++ } ++ void updateGestureHandler(jsi::Runtime &rt, double handlerTag, jsi::Object newConfig) override { ++ static_assert( ++ bridging::getParameterCount(&T::updateGestureHandler) == 3, ++ "Expected updateGestureHandler(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::updateGestureHandler, jsInvoker_, instance_, std::move(handlerTag), std::move(newConfig)); ++ } ++ void dropGestureHandler(jsi::Runtime &rt, double handlerTag) override { ++ static_assert( ++ bridging::getParameterCount(&T::dropGestureHandler) == 2, ++ "Expected dropGestureHandler(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::dropGestureHandler, jsInvoker_, instance_, std::move(handlerTag)); ++ } ++ bool install(jsi::Runtime &rt) override { ++ static_assert( ++ bridging::getParameterCount(&T::install) == 1, ++ "Expected install(...) to have 1 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::install, jsInvoker_, instance_); ++ } ++ void flushOperations(jsi::Runtime &rt) override { ++ static_assert( ++ bridging::getParameterCount(&T::flushOperations) == 1, ++ "Expected flushOperations(...) to have 1 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::flushOperations, jsInvoker_, instance_); ++ } ++ ++ private: ++ friend class NativeRNGestureHandlerModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen-generated.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen-generated.cpp +new file mode 100644 +index 0000000..cbf6143 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen-generated.cpp +@@ -0,0 +1,74 @@ ++ ++/** ++ * 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 "rngesturehandler_codegen.h" ++ ++namespace facebook::react { ++ ++static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_handleSetJSResponder(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "handleSetJSResponder", "(DZ)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_handleClearJSResponder(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "handleClearJSResponder", "()V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_createGestureHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "createGestureHandler", "(Ljava/lang/String;DLcom/facebook/react/bridge/ReadableMap;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_attachGestureHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "attachGestureHandler", "(DDD)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_updateGestureHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "updateGestureHandler", "(DLcom/facebook/react/bridge/ReadableMap;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_dropGestureHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "dropGestureHandler", "(D)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_install(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, "install", "()Z", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_flushOperations(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "flushOperations", "()V", args, count, cachedMethodId); ++} ++ ++NativeRNGestureHandlerModuleSpecJSI::NativeRNGestureHandlerModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["handleSetJSResponder"] = MethodMetadata {2, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_handleSetJSResponder}; ++ methodMap_["handleClearJSResponder"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_handleClearJSResponder}; ++ methodMap_["createGestureHandler"] = MethodMetadata {3, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_createGestureHandler}; ++ methodMap_["attachGestureHandler"] = MethodMetadata {3, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_attachGestureHandler}; ++ methodMap_["updateGestureHandler"] = MethodMetadata {2, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_updateGestureHandler}; ++ methodMap_["dropGestureHandler"] = MethodMetadata {1, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_dropGestureHandler}; ++ methodMap_["install"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_install}; ++ methodMap_["flushOperations"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_flushOperations}; ++} ++ ++std::shared_ptr rngesturehandler_codegen_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { ++ if (moduleName == "RNGestureHandlerModule") { ++ return std::make_shared(params); ++ } ++ return nullptr; ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen.h +new file mode 100644 +index 0000000..4ebb0dd +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen.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 'NativeRNGestureHandlerModule' ++ */ ++class JSI_EXPORT NativeRNGestureHandlerModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNGestureHandlerModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++ ++JSI_EXPORT ++std::shared_ptr rngesturehandler_codegen_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/schema.json b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/schema.json +new file mode 100644 +index 0000000..3eb84fa +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/schema.json +@@ -0,0 +1 @@ ++{"modules":{"NativeRNGestureHandlerModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"handleSetJSResponder","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"blockNativeResponder","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation"}}]}},{"name":"handleClearJSResponder","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[]}},{"name":"createGestureHandler","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"handlerName","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"handlerTag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"config","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}},{"name":"attachGestureHandler","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"handlerTag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"newView","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"actionType","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}},{"name":"updateGestureHandler","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"handlerTag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"newConfig","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}},{"name":"dropGestureHandler","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"handlerTag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}},{"name":"install","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"BooleanTypeAnnotation"},"params":[]}},{"name":"flushOperations","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[]}}]},"moduleName":"RNGestureHandlerModule"},"RNGestureHandlerButton":{"type":"Component","components":{"RNGestureHandlerButton":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"exclusive","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":true}},{"name":"foreground","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"borderless","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enabled","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":true}},{"name":"rippleColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"rippleRadius","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}},{"name":"touchSoundDisabled","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"borderWidth","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"borderColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderStyle","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":"solid"}}],"commands":[]}}},"RNGestureHandlerRootView":{"type":"Component","components":{"RNGestureHandlerRootView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[],"commands":[]}}}}} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..be16dee +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-gesture-handler/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..ee2ec18 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/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.gesturehandler", ++ "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-gesture-handler/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-gesture-handler/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-gesture-handler/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..5bf2b26 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..82be33a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_command_gesturehandler b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_command_gesturehandler +new file mode 100755 +index 0000000..18f6486 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_command_gesturehandler +@@ -0,0 +1,4 @@ ++/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a \ ++ gesturehandler +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_model.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_model.json +new file mode 100644 +index 0000000..e22780d +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_model.json +@@ -0,0 +1,223 @@ ++{ ++ "info": { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", ++ "soFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a", ++ "soRepublishFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cmake/debug/obj/arm64-v8a", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [ ++ "-O2", ++ "-frtti", ++ "-fexceptions", ++ "-Wall", ++ "-Werror", ++ "-std\u003dc++20", ++ "-DANDROID" ++ ], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx", ++ "intermediatesBaseFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates", ++ "intermediatesFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react-native-gesture-handler", ++ "moduleRootFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android", ++ "moduleBuildFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build.gradle", ++ "makeFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/android", ++ "sdkFolder": "/Users/otavio.stasiak/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" ++ ], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "4l4l1n3t4n1s223p5w351f2h3f4ab4iy441u4u3h4ovy4y1h2362134p", ++ "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.8.2.\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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni\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_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native\n-DREACT_NATIVE_MINOR_VERSION\u003d79\n-DANDROID_STL\u003dc++_shared\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "configurationArguments": [ ++ "-H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni", ++ "-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab", ++ "-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", ++ "-GNinja", ++ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" ++ ], ++ "stlLibraryFile": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stderr_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stderr_gesturehandler.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stdout_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stdout_gesturehandler.txt +new file mode 100644 +index 0000000..8c50b98 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stdout_gesturehandler.txt +@@ -0,0 +1,2 @@ ++ninja: Entering directory `/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a' ++ninja: no work to do. +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_command +new file mode 100755 +index 0000000..39ee455 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_command +@@ -0,0 +1,23 @@ ++/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni \ ++ -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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab \ ++ -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a \ ++ -GNinja \ ++ -DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native \ ++ -DREACT_NATIVE_MINOR_VERSION=79 \ ++ -DANDROID_STL=c++_shared \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stdout.txt +new file mode 100644 +index 0000000..5f78df0 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1037_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1037_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1037_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_106_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_106_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_106_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_111_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_111_timing.txt +new file mode 100644 +index 0000000..aefd807 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_111_timing.txt +@@ -0,0 +1,10 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 280ms ++ generate-prefab-packages completed in 287ms ++ execute-generate-process ++ exec-configure 277ms ++ execute-generate-process completed in 279ms ++generate_cxx_metadata completed in 571ms ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1257_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1257_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1257_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1495_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1495_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1495_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_348_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_348_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_348_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_577_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_577_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_577_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_581_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_581_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_581_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_796_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_796_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_796_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_813_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_813_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_813_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/metadata_generation_record.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/metadata_generation_record.json +new file mode 100644 +index 0000000..f3bece0 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/metadata_generation_record.json +@@ -0,0 +1,41 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: arm64-v8a", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON \u0027/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json\u0027 was up-to-date", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/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-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_command +new file mode 100755 +index 0000000..f18ee4a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_command +@@ -0,0 +1,21 @@ ++/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/otavio.stasiak/.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/ht/7469xbl10hjcqprhc3q4tych0000gq/T/agp-prefab-staging3784266250826846830/staged-cli-output \ ++ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab \ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a \ ++ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_command_gesturehandler b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_command_gesturehandler +new file mode 100755 +index 0000000..ac40666 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_command_gesturehandler +@@ -0,0 +1,4 @@ ++/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a \ ++ gesturehandler +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_model.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_model.json +new file mode 100644 +index 0000000..cd8dfd0 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_model.json +@@ -0,0 +1,223 @@ ++{ ++ "info": { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ "cxxBuildFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "soFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a", ++ "soRepublishFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cmake/debug/obj/armeabi-v7a", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [ ++ "-O2", ++ "-frtti", ++ "-fexceptions", ++ "-Wall", ++ "-Werror", ++ "-std\u003dc++20", ++ "-DANDROID" ++ ], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx", ++ "intermediatesBaseFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates", ++ "intermediatesFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react-native-gesture-handler", ++ "moduleRootFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android", ++ "moduleBuildFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build.gradle", ++ "makeFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/android", ++ "sdkFolder": "/Users/otavio.stasiak/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" ++ ], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "4l4l1n3t4n1s223p5w351f2h3f4ab4iy441u4u3h4ovy4y1h2362134p", ++ "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.8.2.\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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni\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_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native\n-DREACT_NATIVE_MINOR_VERSION\u003d79\n-DANDROID_STL\u003dc++_shared\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "configurationArguments": [ ++ "-H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003darmeabi-v7a", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003darmeabi-v7a", ++ "-DANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab", ++ "-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", ++ "-GNinja", ++ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" ++ ], ++ "stlLibraryFile": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stderr_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stderr_gesturehandler.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stdout_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stdout_gesturehandler.txt +new file mode 100644 +index 0000000..8d051c6 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stdout_gesturehandler.txt +@@ -0,0 +1,2 @@ ++ninja: Entering directory `/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a' ++ninja: no work to do. +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_command +new file mode 100755 +index 0000000..8619d30 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_command +@@ -0,0 +1,23 @@ ++/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=armeabi-v7a \ ++ -DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a \ ++ -DANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab \ ++ -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a \ ++ -GNinja \ ++ -DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native \ ++ -DREACT_NATIVE_MINOR_VERSION=79 \ ++ -DANDROID_STL=c++_shared \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stdout.txt +new file mode 100644 +index 0000000..978ca4a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1037_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1037_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1037_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_106_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_106_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_106_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_114_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_114_timing.txt +new file mode 100644 +index 0000000..f020418 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_114_timing.txt +@@ -0,0 +1,10 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 283ms ++ generate-prefab-packages completed in 289ms ++ execute-generate-process ++ exec-configure 269ms ++ execute-generate-process completed in 271ms ++generate_cxx_metadata completed in 564ms ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1257_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1257_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1257_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1495_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1495_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1495_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_348_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_348_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_348_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_577_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_577_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_577_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_581_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_581_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_581_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_796_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_796_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_796_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_813_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_813_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_813_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/metadata_generation_record.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/metadata_generation_record.json +new file mode 100644 +index 0000000..47fa39e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/metadata_generation_record.json +@@ -0,0 +1,41 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: armeabi-v7a", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "tag_": "debug|armeabi-v7a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON \u0027/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json\u0027 was up-to-date", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "tag_": "debug|armeabi-v7a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "tag_": "debug|armeabi-v7a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_command +new file mode 100755 +index 0000000..10b6e97 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_command +@@ -0,0 +1,21 @@ ++/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/otavio.stasiak/.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 \ ++ armeabi-v7a \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/ht/7469xbl10hjcqprhc3q4tych0000gq/T/agp-prefab-staging6213892464658074650/staged-cli-output \ ++ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab \ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a \ ++ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_command_gesturehandler b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_command_gesturehandler +new file mode 100755 +index 0000000..88653f9 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_command_gesturehandler +@@ -0,0 +1,4 @@ ++/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 \ ++ gesturehandler +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_model.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_model.json +new file mode 100644 +index 0000000..7d9fc5e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_model.json +@@ -0,0 +1,223 @@ ++{ ++ "info": { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "soFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86", ++ "soRepublishFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cmake/debug/obj/x86", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [ ++ "-O2", ++ "-frtti", ++ "-fexceptions", ++ "-Wall", ++ "-Werror", ++ "-std\u003dc++20", ++ "-DANDROID" ++ ], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx", ++ "intermediatesBaseFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates", ++ "intermediatesFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react-native-gesture-handler", ++ "moduleRootFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android", ++ "moduleBuildFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build.gradle", ++ "makeFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/android", ++ "sdkFolder": "/Users/otavio.stasiak/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" ++ ], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "4l4l1n3t4n1s223p5w351f2h3f4ab4iy441u4u3h4ovy4y1h2362134p", ++ "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.8.2.\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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni\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_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native\n-DREACT_NATIVE_MINOR_VERSION\u003d79\n-DANDROID_STL\u003dc++_shared\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "configurationArguments": [ ++ "-H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003dx86", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003dx86", ++ "-DANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab", ++ "-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", ++ "-GNinja", ++ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" ++ ], ++ "stlLibraryFile": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stderr_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stderr_gesturehandler.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stdout_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stdout_gesturehandler.txt +new file mode 100644 +index 0000000..0ec4d6b +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stdout_gesturehandler.txt +@@ -0,0 +1,2 @@ ++ninja: Entering directory `/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86' ++ninja: no work to do. +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_command +new file mode 100755 +index 0000000..b2db894 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_command +@@ -0,0 +1,23 @@ ++/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=x86 \ ++ -DCMAKE_ANDROID_ARCH_ABI=x86 \ ++ -DANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab \ ++ -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 \ ++ -GNinja \ ++ -DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native \ ++ -DREACT_NATIVE_MINOR_VERSION=79 \ ++ -DANDROID_STL=c++_shared \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stdout.txt +new file mode 100644 +index 0000000..b38cfc4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1037_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1037_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1037_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_106_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_106_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_106_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_114_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_114_timing.txt +new file mode 100644 +index 0000000..4f79f93 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_114_timing.txt +@@ -0,0 +1,10 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 283ms ++ generate-prefab-packages completed in 289ms ++ execute-generate-process ++ exec-configure 272ms ++ execute-generate-process completed in 275ms ++generate_cxx_metadata completed in 567ms ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1257_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1257_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1257_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1500_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1500_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1500_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_348_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_348_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_348_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_577_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_577_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_577_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_581_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_581_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_581_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_796_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_796_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_796_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_813_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_813_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_813_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/metadata_generation_record.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/metadata_generation_record.json +new file mode 100644 +index 0000000..f0516dc +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/metadata_generation_record.json +@@ -0,0 +1,41 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "tag_": "debug|x86", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON \u0027/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json\u0027 was up-to-date", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "tag_": "debug|x86", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "tag_": "debug|x86", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_command +new file mode 100755 +index 0000000..8145d59 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_command +@@ -0,0 +1,21 @@ ++/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/otavio.stasiak/.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 \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/ht/7469xbl10hjcqprhc3q4tych0000gq/T/agp-prefab-staging17351827393999859803/staged-cli-output \ ++ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab \ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a \ ++ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_command_gesturehandler b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_command_gesturehandler +new file mode 100755 +index 0000000..5d336f3 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_command_gesturehandler +@@ -0,0 +1,4 @@ ++/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 \ ++ gesturehandler +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_model.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_model.json +new file mode 100644 +index 0000000..a25c9ce +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_model.json +@@ -0,0 +1,223 @@ ++{ ++ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "soFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64", ++ "soRepublishFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cmake/debug/obj/x86_64", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [ ++ "-O2", ++ "-frtti", ++ "-fexceptions", ++ "-Wall", ++ "-Werror", ++ "-std\u003dc++20", ++ "-DANDROID" ++ ], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx", ++ "intermediatesBaseFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates", ++ "intermediatesFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react-native-gesture-handler", ++ "moduleRootFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android", ++ "moduleBuildFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build.gradle", ++ "makeFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/android", ++ "sdkFolder": "/Users/otavio.stasiak/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" ++ ], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "4l4l1n3t4n1s223p5w351f2h3f4ab4iy441u4u3h4ovy4y1h2362134p", ++ "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.8.2.\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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni\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_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native\n-DREACT_NATIVE_MINOR_VERSION\u003d79\n-DANDROID_STL\u003dc++_shared\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "configurationArguments": [ ++ "-H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni", ++ "-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab", ++ "-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", ++ "-GNinja", ++ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" ++ ], ++ "stlLibraryFile": "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stderr_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stderr_gesturehandler.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stdout_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stdout_gesturehandler.txt +new file mode 100644 +index 0000000..f04680d +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stdout_gesturehandler.txt +@@ -0,0 +1,2 @@ ++ninja: Entering directory `/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64' ++ninja: no work to do. +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_command +new file mode 100755 +index 0000000..91125e7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_command +@@ -0,0 +1,23 @@ ++/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni \ ++ -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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab \ ++ -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 \ ++ -GNinja \ ++ -DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native \ ++ -DREACT_NATIVE_MINOR_VERSION=79 \ ++ -DANDROID_STL=c++_shared \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stdout.txt +new file mode 100644 +index 0000000..388977e +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1037_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1037_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1037_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_106_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_106_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_106_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_114_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_114_timing.txt +new file mode 100644 +index 0000000..22de85a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_114_timing.txt +@@ -0,0 +1,10 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 285ms ++ generate-prefab-packages completed in 290ms ++ execute-generate-process ++ exec-configure 270ms ++ execute-generate-process completed in 272ms ++generate_cxx_metadata completed in 567ms ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1257_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1257_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1257_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1500_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1500_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1500_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_348_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_348_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_348_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_577_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_577_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_577_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_581_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_581_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_581_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_796_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_796_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_796_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_809_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_809_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_809_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/metadata_generation_record.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/metadata_generation_record.json +new file mode 100644 +index 0000000..41b0ba2 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/metadata_generation_record.json +@@ -0,0 +1,41 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86_64", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON \u0027/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json\u0027 was up-to-date", ++ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/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-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_command +new file mode 100755 +index 0000000..85ab141 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_command +@@ -0,0 +1,21 @@ ++/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/otavio.stasiak/.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/ht/7469xbl10hjcqprhc3q4tych0000gq/T/agp-prefab-staging14021346595931702203/staged-cli-output \ ++ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab \ ++ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a \ ++ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..2c72c65 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so +new file mode 100755 +index 0000000..274e9d3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libjsi.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..65ec2dd +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..58b1064 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libc++_shared.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libc++_shared.so +new file mode 100755 +index 0000000..9865180 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libc++_shared.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so +new file mode 100755 +index 0000000..5320c03 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libjsi.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libjsi.so +new file mode 100644 +index 0000000..15e8bef +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libjsi.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libreactnative.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libreactnative.so +new file mode 100644 +index 0000000..6438f9d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libreactnative.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libc++_shared.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libc++_shared.so +new file mode 100755 +index 0000000..8648c4c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libc++_shared.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so +new file mode 100755 +index 0000000..b651e26 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libjsi.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libjsi.so +new file mode 100644 +index 0000000..de3aaa2 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libjsi.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libreactnative.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libreactnative.so +new file mode 100644 +index 0000000..71af24f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libreactnative.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libc++_shared.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libc++_shared.so +new file mode 100755 +index 0000000..8e3a868 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so +new file mode 100755 +index 0000000..4ff4c5e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libjsi.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libjsi.so +new file mode 100644 +index 0000000..e1b87af +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libreactnative.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libreactnative.so +new file mode 100644 +index 0000000..e3e9043 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libreactnative.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/include/placeholder.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/module.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/include/placeholder.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/module.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab.json +new file mode 100644 +index 0000000..3551a3a +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "react-native-reanimated", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "3.17.1" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab_publication.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab_publication.json +new file mode 100644 +index 0000000..63c9ed3 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab_publication.json +@@ -0,0 +1,24 @@ ++{ ++ "installationFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react-native-reanimated", ++ "packageInfo": { ++ "packageName": "react-native-reanimated", ++ "packageVersion": "3.17.1", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "reanimated", ++ "moduleHeaders": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [] ++ }, ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..a3c83fa +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Wed Mar 25 16:39:33 BRT 2026 +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..6dee191 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..167d639 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..efea247 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..0ff610c +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-gesture-handler_debug.kotlin_module b/node_modules/react-native-gesture-handler/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-gesture-handler_debug.kotlin_module +new file mode 100644 +index 0000000..dfb30f0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-gesture-handler_debug.kotlin_module differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class +new file mode 100644 +index 0000000..bc3f477 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class +new file mode 100644 +index 0000000..c1a0ebf +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class +new file mode 100644 +index 0000000..4c1aad3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class +new file mode 100644 +index 0000000..2e38837 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/BuildConfig.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/BuildConfig.class +new file mode 100644 +index 0000000..6125ae1 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/BuildConfig.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class +new file mode 100644 +index 0000000..7f95852 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class +new file mode 100644 +index 0000000..b712a67 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class +new file mode 100644 +index 0000000..efd1d43 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class +new file mode 100644 +index 0000000..6e85b69 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector.class +new file mode 100644 +index 0000000..7585a1e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class +new file mode 100644 +index 0000000..f1ab5cc +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libgesturehandler.so +new file mode 100644 +index 0000000..274e9d3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libgesturehandler.so +new file mode 100644 +index 0000000..5320c03 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libgesturehandler.so +new file mode 100644 +index 0000000..b651e26 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libgesturehandler.so +new file mode 100644 +index 0000000..4ff4c5e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-gesture-handler/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-gesture-handler/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-gesture-handler/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..1c77fbb +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..be16dee +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libgesturehandler.so +new file mode 100644 +index 0000000..274e9d3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libgesturehandler.so +new file mode 100644 +index 0000000..5320c03 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libgesturehandler.so +new file mode 100644 +index 0000000..b651e26 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libgesturehandler.so +new file mode 100644 +index 0000000..4ff4c5e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libgesturehandler.so differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-gesture-handler/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-gesture-handler/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-gesture-handler/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-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-gesture-handler_debug.kotlin_module b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-gesture-handler_debug.kotlin_module +new file mode 100644 +index 0000000..dfb30f0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-gesture-handler_debug.kotlin_module differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class +new file mode 100644 +index 0000000..bc3f477 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class +new file mode 100644 +index 0000000..c1a0ebf +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class +new file mode 100644 +index 0000000..4c1aad3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class +new file mode 100644 +index 0000000..2e38837 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/BuildConfig.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/BuildConfig.class +new file mode 100644 +index 0000000..6125ae1 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/BuildConfig.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class +new file mode 100644 +index 0000000..7f95852 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class +new file mode 100644 +index 0000000..6bb5f72 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class +new file mode 100644 +index 0000000..27d4185 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class +new file mode 100644 +index 0000000..5c76edc +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/DiagonalDirections.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/DiagonalDirections.class +new file mode 100644 +index 0000000..f2f7932 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/DiagonalDirections.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class +new file mode 100644 +index 0000000..7af9bba +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler.class +new file mode 100644 +index 0000000..90338b4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class +new file mode 100644 +index 0000000..39fae9e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class +new file mode 100644 +index 0000000..0550bfe +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class +new file mode 100644 +index 0000000..236bcd4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler.class +new file mode 100644 +index 0000000..3ba1426 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class +new file mode 100644 +index 0000000..63360cf +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class +new file mode 100644 +index 0000000..d16d344 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class +new file mode 100644 +index 0000000..6e922b0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class +new file mode 100644 +index 0000000..2ee7fe8 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class +new file mode 100644 +index 0000000..9e32f51 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureUtils.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureUtils.class +new file mode 100644 +index 0000000..cdde93f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureUtils.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class +new file mode 100644 +index 0000000..1891a1e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler.class +new file mode 100644 +index 0000000..37c22e7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class +new file mode 100644 +index 0000000..c0d9f2d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class +new file mode 100644 +index 0000000..488d090 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ManualGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ManualGestureHandler.class +new file mode 100644 +index 0000000..6a4b4e5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ManualGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class +new file mode 100644 +index 0000000..72ab1ee +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class +new file mode 100644 +index 0000000..76c275d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class +new file mode 100644 +index 0000000..c321c72 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class +new file mode 100644 +index 0000000..80b55e0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class +new file mode 100644 +index 0000000..ebe6535 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class +new file mode 100644 +index 0000000..a172437 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class +new file mode 100644 +index 0000000..202c055 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class +new file mode 100644 +index 0000000..893059e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class +new file mode 100644 +index 0000000..0dff367 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class +new file mode 100644 +index 0000000..921ebbf +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/OnTouchEventListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/OnTouchEventListener.class +new file mode 100644 +index 0000000..a1701b6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/OnTouchEventListener.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class +new file mode 100644 +index 0000000..c9a119f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler.class +new file mode 100644 +index 0000000..2755614 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class +new file mode 100644 +index 0000000..474a8c4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler.class +new file mode 100644 +index 0000000..ebabc3c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PointerEventsConfig.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PointerEventsConfig.class +new file mode 100644 +index 0000000..8195414 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PointerEventsConfig.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class +new file mode 100644 +index 0000000..fd49651 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector.class +new file mode 100644 +index 0000000..9b8aee6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class +new file mode 100644 +index 0000000..c4c115f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class +new file mode 100644 +index 0000000..6b58177 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler.class +new file mode 100644 +index 0000000..3486ba3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class +new file mode 100644 +index 0000000..b712a67 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class +new file mode 100644 +index 0000000..efd1d43 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class +new file mode 100644 +index 0000000..6e85b69 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector.class +new file mode 100644 +index 0000000..7585a1e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData$Companion.class +new file mode 100644 +index 0000000..238f0ad +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData.class +new file mode 100644 +index 0000000..98081c5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class +new file mode 100644 +index 0000000..8d84545 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler.class +new file mode 100644 +index 0000000..079a2ad +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector$Companion.class +new file mode 100644 +index 0000000..301dfa7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector.class +new file mode 100644 +index 0000000..c6b3cab +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class +new file mode 100644 +index 0000000..67d4157 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/ExtensionsKt.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/ExtensionsKt.class +new file mode 100644 +index 0000000..cc22ec6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/ExtensionsKt.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class +new file mode 100644 +index 0000000..cd5ba20 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class +new file mode 100644 +index 0000000..9c08fe0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class +new file mode 100644 +index 0000000..e3e1c08 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class +new file mode 100644 +index 0000000..64d51fc +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class +new file mode 100644 +index 0000000..f1ab5cc +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class +new file mode 100644 +index 0000000..6a3467b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class +new file mode 100644 +index 0000000..fd04c66 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class +new file mode 100644 +index 0000000..c37b3b0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class +new file mode 100644 +index 0000000..e714869 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class +new file mode 100644 +index 0000000..d2afc82 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class +new file mode 100644 +index 0000000..1553bd3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class +new file mode 100644 +index 0000000..e0f060c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class +new file mode 100644 +index 0000000..44f64ca +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class +new file mode 100644 +index 0000000..74f52b7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class +new file mode 100644 +index 0000000..9b4fc4c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class +new file mode 100644 +index 0000000..fa9fa17 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class +new file mode 100644 +index 0000000..32d903b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class +new file mode 100644 +index 0000000..8a505a2 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class +new file mode 100644 +index 0000000..5e16237 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class +new file mode 100644 +index 0000000..8a31819 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class +new file mode 100644 +index 0000000..12286a2 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class +new file mode 100644 +index 0000000..7282cfa +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class +new file mode 100644 +index 0000000..f58792b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class +new file mode 100644 +index 0000000..82ae1ce +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class +new file mode 100644 +index 0000000..7e33f8f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class +new file mode 100644 +index 0000000..eb3d177 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class +new file mode 100644 +index 0000000..2dae260 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class +new file mode 100644 +index 0000000..a3b0e09 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class +new file mode 100644 +index 0000000..050cc04 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class +new file mode 100644 +index 0000000..ed8b7c8 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class +new file mode 100644 +index 0000000..157e5ee +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class +new file mode 100644 +index 0000000..e12c9fe +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class +new file mode 100644 +index 0000000..33da11d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class +new file mode 100644 +index 0000000..bf8fa3c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class +new file mode 100644 +index 0000000..f0cdb5f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class +new file mode 100644 +index 0000000..02e87b7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class +new file mode 100644 +index 0000000..5bd04ca +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class +new file mode 100644 +index 0000000..e25a1e5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..44e01f5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..1236c66 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..1665e6b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..0646a1e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..3e60a26 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..cb7cbed +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..52450de +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..307e8e4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..ac5e201 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..711d7b5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..7d5eec4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..3bd36e7 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1 @@ ++com.swmansion.gesturehandler +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +new file mode 100644 +index 0000000..e089615 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +new file mode 100644 +index 0000000..30d5b0e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +new file mode 100644 +index 0000000..d2c5398 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +new file mode 100644 +index 0000000..b4da131 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +new file mode 100644 +index 0000000..12f7a07 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +new file mode 100644 +index 0000000..16ac96a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +new file mode 100644 +index 0000000..95f3c75 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +new file mode 100644 +index 0000000..d4c1e98 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +new file mode 100644 +index 0000000..de0dda7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +new file mode 100644 +index 0000000..be2ce70 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +new file mode 100644 +index 0000000..896622a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +new file mode 100644 +index 0000000..b125c79 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +new file mode 100644 +index 0000000..d4a65c6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +new file mode 100644 +index 0000000..d4c1e98 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..de0dda7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +new file mode 100644 +index 0000000..be2ce70 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +new file mode 100644 +index 0000000..c800c13 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +new file mode 100644 +index 0000000..b125c79 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab +new file mode 100644 +index 0000000..a85e6f1 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream +new file mode 100644 +index 0000000..41e0f99 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len +new file mode 100644 +index 0000000..d6cf07a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len +new file mode 100644 +index 0000000..fa606b6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at +new file mode 100644 +index 0000000..cd70988 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i +new file mode 100644 +index 0000000..e67d094 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab +new file mode 100644 +index 0000000..bdf584a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream +new file mode 100644 +index 0000000..40c63db +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len +new file mode 100644 +index 0000000..c32b442 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len +new file mode 100644 +index 0000000..2a17e6e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at +new file mode 100644 +index 0000000..94d9d28 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i +new file mode 100644 +index 0000000..be41c79 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +new file mode 100644 +index 0000000..a3b6306 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +new file mode 100644 +index 0000000..80a7c76 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..8967150 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +new file mode 100644 +index 0000000..91ce7f2 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +new file mode 100644 +index 0000000..7445559 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +new file mode 100644 +index 0000000..6250ee6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab +new file mode 100644 +index 0000000..a9e5441 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream +new file mode 100644 +index 0000000..da11b90 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +new file mode 100644 +index 0000000..fd5292d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len +new file mode 100644 +index 0000000..01bdaa1 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at +new file mode 100644 +index 0000000..6fcb00a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i +new file mode 100644 +index 0000000..a63b53f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +new file mode 100644 +index 0000000..3fc21bb +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +new file mode 100644 +index 0000000..c60ce1e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +new file mode 100644 +index 0000000..050cb78 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +new file mode 100644 +index 0000000..b4beefb +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values +new file mode 100644 +index 0000000..02b50b0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +new file mode 100644 +index 0000000..a557395 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +new file mode 100644 +index 0000000..c435339 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +@@ -0,0 +1 @@ ++àÖǺ +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +new file mode 100644 +index 0000000..c9e6559 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +new file mode 100644 +index 0000000..7aa68b4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +new file mode 100644 +index 0000000..30d5b0e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +new file mode 100644 +index 0000000..d2c5398 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +new file mode 100644 +index 0000000..b4da131 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +new file mode 100644 +index 0000000..fba52ca +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +new file mode 100644 +index 0000000..16ac96a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +new file mode 100644 +index 0000000..883027f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +new file mode 100644 +index 0000000..56f79e2 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +new file mode 100644 +index 0000000..2ed08d0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +new file mode 100644 +index 0000000..8fe89d8 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +new file mode 100644 +index 0000000..ddb8127 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +new file mode 100644 +index 0000000..e93d8e8 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +new file mode 100644 +index 0000000..89f50e3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +new file mode 100644 +index 0000000..7c02fb8 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +new file mode 100644 +index 0000000..4a028d6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +new file mode 100644 +index 0000000..b4da131 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +new file mode 100644 +index 0000000..ef70dc6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +new file mode 100644 +index 0000000..9606f53 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +new file mode 100644 +index 0000000..a411059 +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +@@ -0,0 +1,2 @@ ++48 ++0 +\ No newline at end of file +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +new file mode 100644 +index 0000000..72d8b57 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +new file mode 100644 +index 0000000..30d5b0e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +new file mode 100644 +index 0000000..d2c5398 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +new file mode 100644 +index 0000000..b4da131 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +new file mode 100644 +index 0000000..f4f6b58 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +new file mode 100644 +index 0000000..16ac96a +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +new file mode 100644 +index 0000000..c389fe0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +new file mode 100644 +index 0000000..8ecabd9 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +new file mode 100644 +index 0000000..7274ac0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +new file mode 100644 +index 0000000..b4da131 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +new file mode 100644 +index 0000000..f70fa2b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +new file mode 100644 +index 0000000..ccc232f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +new file mode 100644 +index 0000000..b7bc782 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +new file mode 100644 +index 0000000..ea29378 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +new file mode 100644 +index 0000000..dbd6935 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +new file mode 100644 +index 0000000..55f6d90 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +new file mode 100644 +index 0000000..2c23939 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +new file mode 100644 +index 0000000..93d9dc5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +new file mode 100644 +index 0000000..4424406 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +new file mode 100644 +index 0000000..2e6e20f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +new file mode 100644 +index 0000000..68ff624 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin +new file mode 100644 +index 0000000..aa21d02 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-gesture-handler/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..801edae +--- /dev/null ++++ b/node_modules/react-native-gesture-handler/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,16 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml:1:1-72 ++INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml:1:1-72 ++ package ++ INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml:1:11-69 ++uses-sdk ++INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml ++INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-gesture-handler/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..3769e5e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/META-INF/react-native-gesture-handler_debug.kotlin_module b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/META-INF/react-native-gesture-handler_debug.kotlin_module +new file mode 100644 +index 0000000..dfb30f0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/META-INF/react-native-gesture-handler_debug.kotlin_module differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class +new file mode 100644 +index 0000000..6bb5f72 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class +new file mode 100644 +index 0000000..27d4185 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class +new file mode 100644 +index 0000000..5c76edc +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/DiagonalDirections.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/DiagonalDirections.class +new file mode 100644 +index 0000000..f2f7932 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/DiagonalDirections.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class +new file mode 100644 +index 0000000..7af9bba +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler.class +new file mode 100644 +index 0000000..90338b4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class +new file mode 100644 +index 0000000..39fae9e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class +new file mode 100644 +index 0000000..0550bfe +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class +new file mode 100644 +index 0000000..236bcd4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler.class +new file mode 100644 +index 0000000..3ba1426 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class +new file mode 100644 +index 0000000..63360cf +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class +new file mode 100644 +index 0000000..d16d344 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class +new file mode 100644 +index 0000000..6e922b0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class +new file mode 100644 +index 0000000..2ee7fe8 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class +new file mode 100644 +index 0000000..9e32f51 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureUtils.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureUtils.class +new file mode 100644 +index 0000000..cdde93f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureUtils.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class +new file mode 100644 +index 0000000..1891a1e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler.class +new file mode 100644 +index 0000000..37c22e7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class +new file mode 100644 +index 0000000..c0d9f2d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class +new file mode 100644 +index 0000000..488d090 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ManualGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ManualGestureHandler.class +new file mode 100644 +index 0000000..6a4b4e5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ManualGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class +new file mode 100644 +index 0000000..72ab1ee +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class +new file mode 100644 +index 0000000..76c275d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class +new file mode 100644 +index 0000000..c321c72 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class +new file mode 100644 +index 0000000..80b55e0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class +new file mode 100644 +index 0000000..ebe6535 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class +new file mode 100644 +index 0000000..a172437 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class +new file mode 100644 +index 0000000..202c055 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class +new file mode 100644 +index 0000000..893059e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class +new file mode 100644 +index 0000000..0dff367 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class +new file mode 100644 +index 0000000..921ebbf +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/OnTouchEventListener.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/OnTouchEventListener.class +new file mode 100644 +index 0000000..a1701b6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/OnTouchEventListener.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class +new file mode 100644 +index 0000000..c9a119f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler.class +new file mode 100644 +index 0000000..2755614 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class +new file mode 100644 +index 0000000..474a8c4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler.class +new file mode 100644 +index 0000000..ebabc3c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PointerEventsConfig.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PointerEventsConfig.class +new file mode 100644 +index 0000000..8195414 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PointerEventsConfig.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class +new file mode 100644 +index 0000000..fd49651 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector.class +new file mode 100644 +index 0000000..9b8aee6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class +new file mode 100644 +index 0000000..c4c115f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class +new file mode 100644 +index 0000000..6b58177 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler.class +new file mode 100644 +index 0000000..3486ba3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData$Companion.class +new file mode 100644 +index 0000000..238f0ad +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData.class +new file mode 100644 +index 0000000..98081c5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class +new file mode 100644 +index 0000000..8d84545 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler.class +new file mode 100644 +index 0000000..079a2ad +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector$Companion.class +new file mode 100644 +index 0000000..301dfa7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector.class +new file mode 100644 +index 0000000..c6b3cab +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class +new file mode 100644 +index 0000000..67d4157 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/ExtensionsKt.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/ExtensionsKt.class +new file mode 100644 +index 0000000..cc22ec6 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/ExtensionsKt.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class +new file mode 100644 +index 0000000..cd5ba20 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class +new file mode 100644 +index 0000000..9c08fe0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class +new file mode 100644 +index 0000000..e3e1c08 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class +new file mode 100644 +index 0000000..64d51fc +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class +new file mode 100644 +index 0000000..6a3467b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class +new file mode 100644 +index 0000000..fd04c66 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class +new file mode 100644 +index 0000000..c37b3b0 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class +new file mode 100644 +index 0000000..e714869 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class +new file mode 100644 +index 0000000..d2afc82 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class +new file mode 100644 +index 0000000..1553bd3 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class +new file mode 100644 +index 0000000..e0f060c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class +new file mode 100644 +index 0000000..44f64ca +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class +new file mode 100644 +index 0000000..74f52b7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class +new file mode 100644 +index 0000000..9b4fc4c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class +new file mode 100644 +index 0000000..fa9fa17 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class +new file mode 100644 +index 0000000..32d903b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class +new file mode 100644 +index 0000000..8a505a2 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class +new file mode 100644 +index 0000000..5e16237 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class +new file mode 100644 +index 0000000..8a31819 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class +new file mode 100644 +index 0000000..12286a2 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class +new file mode 100644 +index 0000000..7282cfa +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class +new file mode 100644 +index 0000000..f58792b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class +new file mode 100644 +index 0000000..82ae1ce +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class +new file mode 100644 +index 0000000..7e33f8f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class +new file mode 100644 +index 0000000..eb3d177 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class +new file mode 100644 +index 0000000..2dae260 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class +new file mode 100644 +index 0000000..a3b0e09 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class +new file mode 100644 +index 0000000..050cc04 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class +new file mode 100644 +index 0000000..ed8b7c8 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class +new file mode 100644 +index 0000000..157e5ee +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class +new file mode 100644 +index 0000000..e12c9fe +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class +new file mode 100644 +index 0000000..33da11d +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class +new file mode 100644 +index 0000000..bf8fa3c +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class +new file mode 100644 +index 0000000..f0cdb5f +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class +new file mode 100644 +index 0000000..02e87b7 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class +new file mode 100644 +index 0000000..5bd04ca +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class +new file mode 100644 +index 0000000..e25a1e5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..44e01f5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..1236c66 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..1665e6b +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..0646a1e +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..3e60a26 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..cb7cbed +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..52450de +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..307e8e4 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..ac5e201 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class +new file mode 100644 +index 0000000..711d7b5 +Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class differ +diff --git a/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.mm b/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.mm +index 2296c39..0a872ba 100644 +--- a/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.mm ++++ b/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.mm +@@ -50,6 +50,8 @@ + if (self) { + _hitTestEdgeInsets = UIEdgeInsetsZero; + _userEnabled = YES; ++ self.isAccessibilityElement = YES; ++ self.accessibilityTraits = self.accessibilityTraits | UIAccessibilityTraitButton; + #if !TARGET_OS_TV && !TARGET_OS_OSX + [self setExclusiveTouch:YES]; + #endif +@@ -57,6 +59,11 @@ + return self; + } + ++- (BOOL)canBecomeFirstResponder ++{ ++ return self.userEnabled && self.enabled && self.userInteractionEnabled; ++} ++ + - (BOOL)shouldHandleTouch:(RNGHUIView *)view + { + if ([view isKindOfClass:[RNGestureHandlerButton class]]) { +@@ -82,6 +89,52 @@ + } + + #if !TARGET_OS_OSX ++- (BOOL)canBecomeFocused ++{ ++ return self.userEnabled && self.enabled && self.userInteractionEnabled; ++} ++ ++- (BOOL)_isActivationKeyPress:(NSSet *)presses ++{ ++ if (@available(iOS 13.4, *)) { ++ for (UIPress *press in presses) { ++ if (press.key != nil && ++ (press.key.keyCode == UIKeyboardHIDUsageKeyboardSpacebar || ++ press.key.keyCode == UIKeyboardHIDUsageKeyboardReturnOrEnter)) { ++ return YES; ++ } ++ } ++ } ++ return NO; ++} ++ ++- (void)pressesBegan:(NSSet *)presses withEvent:(UIPressesEvent *)event ++{ ++ if ([self _isActivationKeyPress:presses]) { ++ [self sendActionsForControlEvents:UIControlEventTouchDown]; ++ } else { ++ [super pressesBegan:presses withEvent:event]; ++ } ++} ++ ++- (void)pressesEnded:(NSSet *)presses withEvent:(UIPressesEvent *)event ++{ ++ if ([self _isActivationKeyPress:presses]) { ++ [self sendActionsForControlEvents:UIControlEventTouchUpInside]; ++ } else { ++ [super pressesEnded:presses withEvent:event]; ++ } ++} ++ ++- (void)pressesCancelled:(NSSet *)presses withEvent:(UIPressesEvent *)event ++{ ++ if ([self _isActivationKeyPress:presses]) { ++ [self sendActionsForControlEvents:UIControlEventTouchCancel]; ++ } else { ++ [super pressesCancelled:presses withEvent:event]; ++ } ++} ++ + - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event + { + if (UIEdgeInsetsEqualToEdgeInsets(self.hitTestEdgeInsets, UIEdgeInsetsZero)) { From ac854d3b92b9842aea14deb00d1ac4463d386b05 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 26 Mar 2026 15:59:28 -0300 Subject: [PATCH 042/108] fix: patch package cleanup --- .../react-native-gesture-handler+2.24.0.patch | 28386 +--------------- 1 file changed, 1 insertion(+), 28385 deletions(-) diff --git a/patches/react-native-gesture-handler+2.24.0.patch b/patches/react-native-gesture-handler+2.24.0.patch index edbfb151173..309449cc7c5 100644 --- a/patches/react-native-gesture-handler+2.24.0.patch +++ b/patches/react-native-gesture-handler+2.24.0.patch @@ -1,28392 +1,8 @@ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/cache-v2-28b81bc848a23e9c6385.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/cache-v2-28b81bc848a23e9c6385.json -new file mode 100644 -index 0000000..f925039 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/cache-v2-28b81bc848a23e9c6385.json -@@ -0,0 +1,1427 @@ -+{ -+ "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/otavio.stasiak/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" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "(This variable does not exist and should not be used)" -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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" : "-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" -+ }, -+ { -+ "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", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "(This variable does not exist and should not be used)" -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ { -+ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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" : "GestureHandler" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/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/otavio.stasiak/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" : "The CMake toolchain file" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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" : "GestureHandler_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a" -+ }, -+ { -+ "name" : "GestureHandler_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "GestureHandler_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ { -+ "name" : "REACT_NATIVE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native" -+ }, -+ { -+ "name" : "REACT_NATIVE_MINOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "79" -+ }, -+ { -+ "name" : "ReactAndroid_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for ReactAndroid." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "gesturehandler_LIB_DEPENDS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Dependencies for the target" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "general;ReactAndroid::reactnative;general;ReactAndroid::jsi;" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-876928e90456e32bb228.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-876928e90456e32bb228.json -new file mode 100644 -index 0000000..9e9c5d0 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-876928e90456e32bb228.json -@@ -0,0 +1,815 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-4f9d257396bcb8682917.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-4f9d257396bcb8682917.json -new file mode 100644 -index 0000000..88fb015 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-4f9d257396bcb8682917.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" : "GestureHandler", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "gesturehandler::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-gesturehandler-Debug-4a826ad6ef3ac97dc3ac.json", -+ "name" : "gesturehandler", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/index-2026-03-25T19-42-36-0349.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/index-2026-03-25T19-42-36-0349.json -new file mode 100644 -index 0000000..445e4c1 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/index-2026-03-25T19-42-36-0349.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/otavio.stasiak/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-4f9d257396bcb8682917.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-28b81bc848a23e9c6385.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-876928e90456e32bb228.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-28b81bc848a23e9c6385.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-876928e90456e32bb228.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-4f9d257396bcb8682917.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/target-gesturehandler-Debug-4a826ad6ef3ac97dc3ac.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/target-gesturehandler-Debug-4a826ad6ef3ac97dc3ac.json -new file mode 100644 -index 0000000..f2933dc ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.cmake/api/v1/reply/target-gesturehandler-Debug-4a826ad6ef3ac97dc3ac.json -@@ -0,0 +1,193 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so" -+ } -+ ], -+ "backtrace" : 1, -+ "backtraceGraph" : -+ { -+ "commands" : -+ [ -+ "add_library", -+ "target_link_libraries", -+ "add_compile_options", -+ "target_include_directories" -+ ], -+ "files" : -+ [ -+ "CMakeLists.txt" -+ ], -+ "nodes" : -+ [ -+ { -+ "file" : 0 -+ }, -+ { -+ "command" : 0, -+ "file" : 0, -+ "line" : 17, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 30, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 15, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 0, -+ "line" : 22, -+ "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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_NO_CONFIG=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_USE_LIBCPP=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_MOBILE=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "define" : "gesturehandler_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 4, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include" -+ } -+ ], -+ "language" : "CXX", -+ "languageStandard" : -+ { -+ "backtraces" : -+ [ -+ 1 -+ ], -+ "standard" : "20" -+ }, -+ "sourceIndexes" : -+ [ -+ 0 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "gesturehandler::@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", -+ "role" : "flags" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "gesturehandler", -+ "nameOnDisk" : "libgesturehandler.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "cpp-adapter.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.ninja_deps b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.ninja_deps -new file mode 100644 -index 0000000..bb040f0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.ninja_deps differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.ninja_log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.ninja_log -new file mode 100644 -index 0000000..eb9b74e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/.ninja_log -@@ -0,0 +1,3 @@ -+# ninja log v5 -+0 778 1774467757136813850 CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o 426f4746df147206 -+779 831 1774467757192738927 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so 717c7ed61736af78 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeCache.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeCache.txt -new file mode 100644 -index 0000000..5b484aa ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeCache.txt -@@ -0,0 +1,416 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a -+# It was generated by CMake: /Users/otavio.stasiak/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/otavio.stasiak/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 -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+ -+//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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/otavio.stasiak/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=GestureHandler -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/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/otavio.stasiak/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 -+ -+//The CMake toolchain file -+CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/otavio.stasiak/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 -+ -+//Value Computed by CMake -+GestureHandler_BINARY_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a -+ -+//Value Computed by CMake -+GestureHandler_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+GestureHandler_SOURCE_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_DIR:UNINITIALIZED=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid -+ -+//Dependencies for the target -+gesturehandler_LIB_DEPENDS:STATIC=general;ReactAndroid::reactnative;general;ReactAndroid::jsi; -+ -+ -+######################## -+# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+//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/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..9ea42dc ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..a5b052f ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/otavio.stasiak/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 "20") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..77846d7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..d5c46d3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..5a58bc6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") -+ -+include("/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..fbd117b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..0969e44 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..96564a1 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,264 @@ -+The target system is: Android - 1 - aarch64 -+The host system is: Darwin - 24.6.0 - arm64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/otavio.stasiak/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;;-O2;-frtti;-fexceptions;-Wall;-Werror;-std=c++20;-DANDROID -+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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_5f974 && [1/2] Building C object CMakeFiles/cmTC_5f974.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_5f974.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_5f974.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0 -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -+ /Users/otavio.stasiak/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_5f974 -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_5f974 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_5f974 && [1/2] Building C object CMakeFiles/cmTC_5f974.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_5f974.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_5f974.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ ignore line: [ /Users/otavio.stasiak/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_5f974] -+ 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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_5f974 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/otavio.stasiak/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_5f974] ==> ignore -+ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/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_5f974.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_2449c && [1/2] Building CXX object CMakeFiles/cmTC_2449c.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0 -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -+ /Users/otavio.stasiak/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_2449c -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_2449c /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/otavio.stasiak/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_2449c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_2449c && [1/2] Building CXX object CMakeFiles/cmTC_2449c.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_2449c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ ignore line: [ /Users/otavio.stasiak/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_2449c] -+ 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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_2449c /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/otavio.stasiak/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_2449c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/otavio.stasiak/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_2449c] ==> ignore -+ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/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_2449c.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..ec631a6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/gesturehandler.dir -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/edit_cache.dir -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -new file mode 100644 -index 0000000..d987723 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..853ac08 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/CMakeFiles/rules.ninja -@@ -0,0 +1,64 @@ -+# 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: GestureHandler -+# Configurations: Debug -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__gesturehandler_Debug -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/otavio.stasiak/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__gesturehandler_Debug -+ command = $PRE_LINK && /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/additional_project_files.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json -new file mode 100644 -index 0000000..3ba125a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json -@@ -0,0 +1,41 @@ -+{ -+ "buildFiles": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "gesturehandler::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "arm64-v8a", -+ "artifactName": "gesturehandler", -+ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so", -+ "runtimeFiles": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build_mini.json -new file mode 100644 -index 0000000..9f29b89 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build_mini.json -@@ -0,0 +1,30 @@ -+{ -+ "buildFiles": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "gesturehandler::@6890427a1f51a3e7e1df": { -+ "artifactName": "gesturehandler", -+ "abi": "arm64-v8a", -+ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so", -+ "runtimeFiles": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja -new file mode 100644 -index 0000000..99249fd ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja -@@ -0,0 +1,156 @@ -+# 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: GestureHandler -+# Configurations: Debug -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.5 -+ -+ -+############################################# -+# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target gesturehandler -+ -+ -+############################################# -+# Order-only phony target for gesturehandler -+ -+build cmake_object_order_depends_target_gesturehandler: phony || CMakeFiles/gesturehandler.dir -+ -+build CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o: CXX_COMPILER__gesturehandler_Debug /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp || cmake_object_order_depends_target_gesturehandler -+ DEFINES = -Dgesturehandler_EXPORTS -+ DEP_FILE = CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -+ INCLUDES = -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -+ OBJECT_DIR = CMakeFiles/gesturehandler.dir -+ OBJECT_FILE_DIR = CMakeFiles/gesturehandler.dir -+ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ -+ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.pdb -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target gesturehandler -+ -+ -+############################################# -+# Link the shared library /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so -+ -+build /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so: CXX_SHARED_LIBRARY_LINKER__gesturehandler_Debug CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o | /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -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 -+ LINK_LIBRARIES = /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/gesturehandler.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = libgesturehandler.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ -+ TARGET_FILE = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so -+ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.pdb -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build gesturehandler: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so -+ -+build libgesturehandler.so: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a -+ -+build all: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE | /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build_file_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build_file_index.txt -new file mode 100644 -index 0000000..d6c5787 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build_file_index.txt -@@ -0,0 +1 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/cmake_install.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/cmake_install.cmake -new file mode 100644 -index 0000000..cc387dc ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+ -+# 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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json -new file mode 100644 -index 0000000..343a961 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json -@@ -0,0 +1,7 @@ -+[ -+{ -+ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", -+ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json.bin -new file mode 100644 -index 0000000..87049ce -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/configure_fingerprint.bin -new file mode 100644 -index 0000000..7693e91 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/configure_fingerprint.bin -@@ -0,0 +1,30 @@ -+C/C++ Structured Logµ -+² -+¯/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/additional_project_files.txtC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ù•¢ÙÒ3  Áâ”´Ò3² -+¯ -+¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json  ù•¢ÙÒ3å Áâ”´Ò3· -+´ -+±/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build_mini.json  ù•¢ÙÒ3¯ Ââ”´Ò3¤ -+¡ -+ž/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja  ù•¢ÙÒ3þŒ ·â”´Ò3¨ -+¥ -+¢/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build.ninja.txt  ù•¢ÙÒ3­ -+ª -+§/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/build_file_index.txt  ù•¢ÙÒ3 Ââ”´Ò3® -+« -+¨/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json  ù•¢ÙÒ3é ·â”´Ò3² -+¯ -+¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/compile_commands.json.bin  ù•¢ÙÒ3 Š ·â”´Ò3¸ -+µ -+²/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/metadata_generation_command.txt  ù•¢ÙÒ3 -+© Ââ”´Ò3« -+¨ -+¥/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/prefab_config.json  ù•¢ÙÒ3 Œ Ââ”´Ò3° -+­ -+ª/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/symbol_folder_index.txt  ù•¢ÙÒ3 © Ââ”´Ò3– -+“ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt  ù•¢ÙÒ3 — ¥®°Ò3à -+Ý -+Ú/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/metadata_generation_command.txt -new file mode 100644 -index 0000000..10cac2b ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/metadata_generation_command.txt -@@ -0,0 +1,24 @@ -+ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab -+-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a -+-GNinja -+-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+-DREACT_NATIVE_MINOR_VERSION=79 -+-DANDROID_STL=c++_shared -+-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/prefab_config.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/prefab_config.json -new file mode 100644 -index 0000000..729bee5 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/prefab_config.json -@@ -0,0 +1,9 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/symbol_folder_index.txt -new file mode 100644 -index 0000000..77c7fb9 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cache-v2-cb9dca4205b87fb7ddbe.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cache-v2-cb9dca4205b87fb7ddbe.json -new file mode 100644 -index 0000000..8dcfb07 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cache-v2-cb9dca4205b87fb7ddbe.json -@@ -0,0 +1,1427 @@ -+{ -+ "entries" : -+ [ -+ { -+ "name" : "ANDROID_ABI", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "armeabi-v7a" -+ }, -+ { -+ "name" : "ANDROID_NDK", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/otavio.stasiak/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" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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" : "armeabi-v7a" -+ }, -+ { -+ "name" : "CMAKE_ANDROID_NDK", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a" -+ }, -+ { -+ "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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "(This variable does not exist and should not be used)" -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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" : "-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" -+ }, -+ { -+ "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", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "(This variable does not exist and should not be used)" -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ { -+ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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" : "GestureHandler" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a" -+ }, -+ { -+ "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/otavio.stasiak/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" : "The CMake toolchain file" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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" : "GestureHandler_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a" -+ }, -+ { -+ "name" : "GestureHandler_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "GestureHandler_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ { -+ "name" : "REACT_NATIVE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native" -+ }, -+ { -+ "name" : "REACT_NATIVE_MINOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "79" -+ }, -+ { -+ "name" : "ReactAndroid_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for ReactAndroid." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "gesturehandler_LIB_DEPENDS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Dependencies for the target" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "general;ReactAndroid::reactnative;general;ReactAndroid::jsi;" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-c1b453b18e90914810a1.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-c1b453b18e90914810a1.json -new file mode 100644 -index 0000000..377a495 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-c1b453b18e90914810a1.json -@@ -0,0 +1,815 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-6fcda735bec4f0114fa8.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-6fcda735bec4f0114fa8.json -new file mode 100644 -index 0000000..1daf5cb ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-6fcda735bec4f0114fa8.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" : "GestureHandler", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "gesturehandler::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-gesturehandler-Debug-bf8aa2ee2e706b313811.json", -+ "name" : "gesturehandler", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/index-2026-03-25T19-42-37-0758.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/index-2026-03-25T19-42-37-0758.json -new file mode 100644 -index 0000000..4c62cfb ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/index-2026-03-25T19-42-37-0758.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/otavio.stasiak/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-6fcda735bec4f0114fa8.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-cb9dca4205b87fb7ddbe.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-c1b453b18e90914810a1.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-cb9dca4205b87fb7ddbe.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-c1b453b18e90914810a1.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-6fcda735bec4f0114fa8.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/target-gesturehandler-Debug-bf8aa2ee2e706b313811.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/target-gesturehandler-Debug-bf8aa2ee2e706b313811.json -new file mode 100644 -index 0000000..a6bc354 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.cmake/api/v1/reply/target-gesturehandler-Debug-bf8aa2ee2e706b313811.json -@@ -0,0 +1,193 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so" -+ } -+ ], -+ "backtrace" : 1, -+ "backtraceGraph" : -+ { -+ "commands" : -+ [ -+ "add_library", -+ "target_link_libraries", -+ "add_compile_options", -+ "target_include_directories" -+ ], -+ "files" : -+ [ -+ "CMakeLists.txt" -+ ], -+ "nodes" : -+ [ -+ { -+ "file" : 0 -+ }, -+ { -+ "command" : 0, -+ "file" : 0, -+ "line" : 17, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 30, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 15, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 0, -+ "line" : 22, -+ "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 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_NO_CONFIG=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_USE_LIBCPP=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_MOBILE=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "define" : "gesturehandler_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 4, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include" -+ } -+ ], -+ "language" : "CXX", -+ "languageStandard" : -+ { -+ "backtraces" : -+ [ -+ 1 -+ ], -+ "standard" : "20" -+ }, -+ "sourceIndexes" : -+ [ -+ 0 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "gesturehandler::@6890427a1f51a3e7e1df", -+ "link" : -+ { -+ "commandFragments" : -+ [ -+ { -+ "fragment" : "-Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments", -+ "role" : "flags" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "gesturehandler", -+ "nameOnDisk" : "libgesturehandler.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "cpp-adapter.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_deps b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_deps -new file mode 100644 -index 0000000..d3d784a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_deps differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_log -new file mode 100644 -index 0000000..c3fa559 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/.ninja_log -@@ -0,0 +1,3 @@ -+# ninja log v5 -+0 764 1774467758529681996 CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o 608f7a062521de76 -+766 806 1774467758573042000 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so bf73c9dcd4d3c0e7 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeCache.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeCache.txt -new file mode 100644 -index 0000000..eb45355 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeCache.txt -@@ -0,0 +1,416 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -+# It was generated by CMake: /Users/otavio.stasiak/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=armeabi-v7a -+ -+//No help, variable specified on the command line. -+ANDROID_NDK:UNINITIALIZED=/Users/otavio.stasiak/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 -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/otavio.stasiak/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=armeabi-v7a -+ -+//No help, variable specified on the command line. -+CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+ -+//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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/otavio.stasiak/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=GestureHandler -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a -+ -+//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/otavio.stasiak/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 -+ -+//The CMake toolchain file -+CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/otavio.stasiak/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 -+ -+//Value Computed by CMake -+GestureHandler_BINARY_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -+ -+//Value Computed by CMake -+GestureHandler_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+GestureHandler_SOURCE_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_DIR:UNINITIALIZED=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid -+ -+//Dependencies for the target -+gesturehandler_LIB_DEPENDS:STATIC=general;ReactAndroid::reactnative;general;ReactAndroid::jsi; -+ -+ -+######################## -+# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -+//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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+//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/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..6a46449 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/otavio.stasiak/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 "4") -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..5b55fa7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/otavio.stasiak/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 "20") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/otavio.stasiak/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 "4") -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..00af166 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..8cccd21 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..0ed54a6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") -+ -+include("/Users/otavio.stasiak/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 "armv7-a") -+ -+set(CMAKE_CROSSCOMPILING "TRUE") -+ -+set(CMAKE_SYSTEM_LOADED 1) -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..0f0baaf -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..ab19a4a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..e64f963 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,266 @@ -+The target system is: Android - 1 - armv7-a -+The host system is: Darwin - 24.6.0 - arm64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/otavio.stasiak/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;-march=armv7-a;-mthumb;-Wformat;-Werror=format-security; -+Id flags: -c;--target=armv7-none-linux-androideabi24 -+ -+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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/otavio.stasiak/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;-march=armv7-a;-mthumb;-Wformat;-Werror=format-security;;-O2;-frtti;-fexceptions;-Wall;-Werror;-std=c++20;-DANDROID -+Id flags: -c;--target=armv7-none-linux-androideabi24 -+ -+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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_19763 && [1/2] Building C object CMakeFiles/cmTC_19763.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: armv7-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple thumbv7-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=1 -target-cpu generic -target-feature +soft-float-abi -target-feature +vfp2 -target-feature +vfp2sp -target-feature +vfp3 -target-feature +vfp3d16 -target-feature +vfp3d16sp -target-feature +vfp3sp -target-feature -fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature -vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature +fp64 -target-feature +d32 -target-feature +neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs-linux -mfloat-abi soft -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0 -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -+ /Users/otavio.stasiak/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_19763 -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: armv7-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL -z now -z relro -z max-page-size=4096 -X --hash-style=gnu --eh-frame-hdr -m armelf_linux_eabi -pie -dynamic-linker /system/bin/linker -o cmTC_19763 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] -+ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_19763 && [1/2] Building C object CMakeFiles/cmTC_19763.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: armv7-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple thumbv7-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=1 -target-cpu generic -target-feature +soft-float-abi -target-feature +vfp2 -target-feature +vfp2sp -target-feature +vfp3 -target-feature +vfp3d16 -target-feature +vfp3d16sp -target-feature +vfp3sp -target-feature -fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature -vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature +fp64 -target-feature +d32 -target-feature +neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs-linux -mfloat-abi soft -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] -+ ignore line: [ /Users/otavio.stasiak/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_19763] -+ 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: armv7-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL -z now -z relro -z max-page-size=4096 -X --hash-style=gnu --eh-frame-hdr -m armelf_linux_eabi -pie -dynamic-linker /system/bin/linker -o cmTC_19763 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_19763.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore -+ arg [-EL] ==> ignore -+ arg [-znow] ==> ignore -+ arg [-zrelro] ==> ignore -+ arg [-zmax-page-size=4096] ==> ignore -+ arg [-X] ==> ignore -+ arg [--hash-style=gnu] ==> ignore -+ arg [--eh-frame-hdr] ==> ignore -+ arg [-m] ==> ignore -+ arg [armelf_linux_eabi] ==> ignore -+ arg [-pie] ==> ignore -+ arg [-dynamic-linker] ==> ignore -+ arg [/system/bin/linker] ==> ignore -+ arg [-o] ==> ignore -+ arg [cmTC_19763] ==> ignore -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ 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_19763.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [-lc] ==> lib [c] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] -+ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] -+ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] -+ implicit dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_90c96 && [1/2] Building CXX object CMakeFiles/cmTC_90c96.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: armv7-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple thumbv7-none-linux-android24 -emit-obj -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=1 -target-cpu generic -target-feature +soft-float-abi -target-feature +vfp2 -target-feature +vfp2sp -target-feature +vfp3 -target-feature +vfp3d16 -target-feature +vfp3d16sp -target-feature +vfp3sp -target-feature -fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature -vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature +fp64 -target-feature +d32 -target-feature +neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs-linux -mfloat-abi soft -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0 -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -+ /Users/otavio.stasiak/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_90c96 -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: armv7-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL -z now -z relro -z max-page-size=4096 -X --hash-style=gnu --eh-frame-hdr -m armelf_linux_eabi -pie -dynamic-linker /system/bin/linker -o cmTC_90c96 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] -+ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_90c96 && [1/2] Building CXX object CMakeFiles/cmTC_90c96.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: armv7-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple thumbv7-none-linux-android24 -emit-obj -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=1 -target-cpu generic -target-feature +soft-float-abi -target-feature +vfp2 -target-feature +vfp2sp -target-feature +vfp3 -target-feature +vfp3d16 -target-feature +vfp3d16sp -target-feature +vfp3sp -target-feature -fp16 -target-feature -vfp4 -target-feature -vfp4d16 -target-feature -vfp4d16sp -target-feature -vfp4sp -target-feature -fp-armv8 -target-feature -fp-armv8d16 -target-feature -fp-armv8d16sp -target-feature -fp-armv8sp -target-feature -fullfp16 -target-feature +fp64 -target-feature +d32 -target-feature +neon -target-feature -sha2 -target-feature -aes -target-feature -fp16fml -target-abi aapcs-linux -mfloat-abi soft -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/arm-linux-androideabi] -+ ignore line: [ /Users/otavio.stasiak/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_90c96] -+ 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: armv7-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL -z now -z relro -z max-page-size=4096 -X --hash-style=gnu --eh-frame-hdr -m armelf_linux_eabi -pie -dynamic-linker /system/bin/linker -o cmTC_90c96 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_90c96.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore -+ arg [-EL] ==> ignore -+ arg [-znow] ==> ignore -+ arg [-zrelro] ==> ignore -+ arg [-zmax-page-size=4096] ==> ignore -+ arg [-X] ==> ignore -+ arg [--hash-style=gnu] ==> ignore -+ arg [--eh-frame-hdr] ==> ignore -+ arg [-m] ==> ignore -+ arg [armelf_linux_eabi] ==> ignore -+ arg [-pie] ==> ignore -+ arg [-dynamic-linker] ==> ignore -+ arg [/system/bin/linker] ==> ignore -+ arg [-o] ==> ignore -+ arg [cmTC_90c96] ==> ignore -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ 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_90c96.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [-lc] ==> lib [c] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] -+ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] -+ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-arm-android.a] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/../lib] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtbegin_dynamic.o;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24/crtend_android.o] -+ implicit dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/arm;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..415af89 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/gesturehandler.dir -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/edit_cache.dir -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/cmake.check_cache b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -new file mode 100644 -index 0000000..b4d6d88 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/rules.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..cfea65e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/CMakeFiles/rules.ninja -@@ -0,0 +1,64 @@ -+# 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: GestureHandler -+# Configurations: Debug -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__gesturehandler_Debug -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi24 --sysroot=/Users/otavio.stasiak/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__gesturehandler_Debug -+ command = $PRE_LINK && /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi24 --sysroot=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/additional_project_files.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json -new file mode 100644 -index 0000000..351b2f8 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json -@@ -0,0 +1,41 @@ -+{ -+ "buildFiles": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "gesturehandler::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "armeabi-v7a", -+ "artifactName": "gesturehandler", -+ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so", -+ "runtimeFiles": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build_mini.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build_mini.json -new file mode 100644 -index 0000000..1c0476d ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build_mini.json -@@ -0,0 +1,30 @@ -+{ -+ "buildFiles": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "gesturehandler::@6890427a1f51a3e7e1df": { -+ "artifactName": "gesturehandler", -+ "abi": "armeabi-v7a", -+ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so", -+ "runtimeFiles": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja -new file mode 100644 -index 0000000..0a4e191 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja -@@ -0,0 +1,156 @@ -+# 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: GestureHandler -+# Configurations: Debug -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.5 -+ -+ -+############################################# -+# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target gesturehandler -+ -+ -+############################################# -+# Order-only phony target for gesturehandler -+ -+build cmake_object_order_depends_target_gesturehandler: phony || CMakeFiles/gesturehandler.dir -+ -+build CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o: CXX_COMPILER__gesturehandler_Debug /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp || cmake_object_order_depends_target_gesturehandler -+ DEFINES = -Dgesturehandler_EXPORTS -+ DEP_FILE = CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -+ INCLUDES = -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -+ OBJECT_DIR = CMakeFiles/gesturehandler.dir -+ OBJECT_FILE_DIR = CMakeFiles/gesturehandler.dir -+ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ -+ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.pdb -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target gesturehandler -+ -+ -+############################################# -+# Link the shared library /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so -+ -+build /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so: CXX_SHARED_LIBRARY_LINKER__gesturehandler_Debug CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o | /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.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 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -+ LINK_FLAGS = -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -+ LINK_LIBRARIES = /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/gesturehandler.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = libgesturehandler.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ -+ TARGET_FILE = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so -+ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.pdb -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -+ 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build gesturehandler: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so -+ -+build libgesturehandler.so: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -+ -+build all: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE | /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build_file_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build_file_index.txt -new file mode 100644 -index 0000000..d6c5787 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build_file_index.txt -@@ -0,0 +1 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/cmake_install.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/cmake_install.cmake -new file mode 100644 -index 0000000..4d95154 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+ -+# 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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json -new file mode 100644 -index 0000000..9b46301 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json -@@ -0,0 +1,7 @@ -+[ -+{ -+ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", -+ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json.bin -new file mode 100644 -index 0000000..ddbd7c3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/configure_fingerprint.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/configure_fingerprint.bin -new file mode 100644 -index 0000000..bcb7553 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/configure_fingerprint.bin -@@ -0,0 +1,30 @@ -+C/C++ Structured Log· -+´ -+±/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/additional_project_files.txtC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ‹–¢ÙÒ3  Âí”´Ò3´ -+± -+®/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json  ‹–¢ÙÒ3ñ Âí”´Ò3¹ -+¶ -+³/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build_mini.json  ‹–¢ÙÒ3» Ãí”´Ò3¦ -+£ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja  ‹–¢ÙÒ3½ ¹í”´Ò3ª -+§ -+¤/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build.ninja.txt  ‹–¢ÙÒ3¯ -+¬ -+©/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/build_file_index.txt  ‹–¢ÙÒ3 Ãí”´Ò3° -+­ -+ª/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json  ‹–¢ÙÒ3„ ¹í”´Ò3´ -+± -+®/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/compile_commands.json.bin  ‹–¢ÙÒ3 ³ ¹í”´Ò3º -+· -+´/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/metadata_generation_command.txt  ‹–¢ÙÒ3 -+µ Ãí”´Ò3­ -+ª -+§/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/prefab_config.json  ‹–¢ÙÒ3 Œ Ãí”´Ò3² -+¯ -+¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/symbol_folder_index.txt  ‹–¢ÙÒ3 « Ãí”´Ò3– -+“ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt  ‹–¢ÙÒ3 — ¥®°Ò3à -+Ý -+Ú/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/metadata_generation_command.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/metadata_generation_command.txt -new file mode 100644 -index 0000000..7404f0e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/metadata_generation_command.txt -@@ -0,0 +1,24 @@ -+ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+-DCMAKE_SYSTEM_NAME=Android -+-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -+-DCMAKE_SYSTEM_VERSION=24 -+-DANDROID_PLATFORM=android-24 -+-DANDROID_ABI=armeabi-v7a -+-DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a -+-DANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab -+-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -+-GNinja -+-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+-DREACT_NATIVE_MINOR_VERSION=79 -+-DANDROID_STL=c++_shared -+-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/prefab_config.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/prefab_config.json -new file mode 100644 -index 0000000..729bee5 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/prefab_config.json -@@ -0,0 +1,9 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/symbol_folder_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/symbol_folder_index.txt -new file mode 100644 -index 0000000..250afa2 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/hash_key.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/hash_key.txt -new file mode 100644 -index 0000000..3575c5c ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/hash_key.txt -@@ -0,0 +1,31 @@ -+# Values used to calculate the hash in this folder name. -+# Should not depend on the absolute path of the project itself. -+# - AGP: 8.8.2. -+# - $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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+-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_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab -+-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI -+-GNinja -+-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+-DREACT_NATIVE_MINOR_VERSION=79 -+-DANDROID_STL=c++_shared -+-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..ba35918 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -@@ -0,0 +1,36 @@ -+if(NOT TARGET ReactAndroid::hermestooling) -+add_library(ReactAndroid::hermestooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::hermestooling PROPERTIES -+ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsctooling) -+add_library(ReactAndroid::jsctooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsctooling PROPERTIES -+ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/libs/android.arm64-v8a/libjsctooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..6bfe942 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.4) -+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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..c3a3a08 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -new file mode 100644 -index 0000000..71da67b ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -@@ -0,0 +1,16 @@ -+if(NOT TARGET react-native-reanimated::reanimated) -+add_library(react-native-reanimated::reanimated INTERFACE IMPORTED) -+set_target_properties(react-native-reanimated::reanimated PROPERTIES -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET react-native-reanimated::worklets) -+add_library(react-native-reanimated::worklets INTERFACE IMPORTED) -+set_target_properties(react-native-reanimated::worklets PROPERTIES -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake -new file mode 100644 -index 0000000..7d1d8c4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 3.17.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..4228fd7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake -@@ -0,0 +1,36 @@ -+if(NOT TARGET ReactAndroid::hermestooling) -+add_library(ReactAndroid::hermestooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::hermestooling PROPERTIES -+ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/libs/android.armeabi-v7a/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsctooling) -+add_library(ReactAndroid::jsctooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsctooling PROPERTIES -+ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/libs/android.armeabi-v7a/libjsctooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.armeabi-v7a/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.armeabi-v7a/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..6bfe942 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.4) -+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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..87ace3c ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/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/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.armeabi-v7a/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfigVersion.cmake -new file mode 100644 -index 0000000..fdd188a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -new file mode 100644 -index 0000000..71da67b ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -@@ -0,0 +1,16 @@ -+if(NOT TARGET react-native-reanimated::reanimated) -+add_library(react-native-reanimated::reanimated INTERFACE IMPORTED) -+set_target_properties(react-native-reanimated::reanimated PROPERTIES -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET react-native-reanimated::worklets) -+add_library(react-native-reanimated::worklets INTERFACE IMPORTED) -+set_target_properties(react-native-reanimated::worklets PROPERTIES -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake -new file mode 100644 -index 0000000..7d1d8c4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 3.17.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..dbb5d7f ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -@@ -0,0 +1,36 @@ -+if(NOT TARGET ReactAndroid::hermestooling) -+add_library(ReactAndroid::hermestooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::hermestooling PROPERTIES -+ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/libs/android.x86/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsctooling) -+add_library(ReactAndroid::jsctooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsctooling PROPERTIES -+ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/libs/android.x86/libjsctooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..6bfe942 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.4) -+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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..56b2b2a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-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/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -new file mode 100644 -index 0000000..fdd188a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -new file mode 100644 -index 0000000..71da67b ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -@@ -0,0 +1,16 @@ -+if(NOT TARGET react-native-reanimated::reanimated) -+add_library(react-native-reanimated::reanimated INTERFACE IMPORTED) -+set_target_properties(react-native-reanimated::reanimated PROPERTIES -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET react-native-reanimated::worklets) -+add_library(react-native-reanimated::worklets INTERFACE IMPORTED) -+set_target_properties(react-native-reanimated::worklets PROPERTIES -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake -new file mode 100644 -index 0000000..7d1d8c4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 3.17.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..462041d ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -@@ -0,0 +1,36 @@ -+if(NOT TARGET ReactAndroid::hermestooling) -+add_library(ReactAndroid::hermestooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::hermestooling PROPERTIES -+ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/hermestooling/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsctooling) -+add_library(ReactAndroid::jsctooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsctooling PROPERTIES -+ IMPORTED_LOCATION "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/libs/android.x86_64/libjsctooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsctooling/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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-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/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..6bfe942 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.4) -+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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..2f2f12a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -new file mode 100644 -index 0000000..71da67b ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -@@ -0,0 +1,16 @@ -+if(NOT TARGET react-native-reanimated::reanimated) -+add_library(react-native-reanimated::reanimated INTERFACE IMPORTED) -+set_target_properties(react-native-reanimated::reanimated PROPERTIES -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET react-native-reanimated::worklets) -+add_library(react-native-reanimated::worklets INTERFACE IMPORTED) -+set_target_properties(react-native-reanimated::worklets PROPERTIES -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake -new file mode 100644 -index 0000000..7d1d8c4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 3.17.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cache-v2-24f647c05be31dc9c191.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cache-v2-24f647c05be31dc9c191.json -new file mode 100644 -index 0000000..b6c8b24 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cache-v2-24f647c05be31dc9c191.json -@@ -0,0 +1,1427 @@ -+{ -+ "entries" : -+ [ -+ { -+ "name" : "ANDROID_ABI", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "x86" -+ }, -+ { -+ "name" : "ANDROID_NDK", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/otavio.stasiak/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" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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" -+ }, -+ { -+ "name" : "CMAKE_ANDROID_NDK", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86" -+ }, -+ { -+ "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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "(This variable does not exist and should not be used)" -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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" : "-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" -+ }, -+ { -+ "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", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "(This variable does not exist and should not be used)" -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ { -+ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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" : "GestureHandler" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86" -+ }, -+ { -+ "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/otavio.stasiak/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" : "The CMake toolchain file" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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" : "GestureHandler_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86" -+ }, -+ { -+ "name" : "GestureHandler_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "GestureHandler_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ { -+ "name" : "REACT_NATIVE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native" -+ }, -+ { -+ "name" : "REACT_NATIVE_MINOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "79" -+ }, -+ { -+ "name" : "ReactAndroid_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for ReactAndroid." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "gesturehandler_LIB_DEPENDS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Dependencies for the target" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "general;ReactAndroid::reactnative;general;ReactAndroid::jsi;" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cmakeFiles-v1-806d11a324d8346665cd.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cmakeFiles-v1-806d11a324d8346665cd.json -new file mode 100644 -index 0000000..184c82f ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/cmakeFiles-v1-806d11a324d8346665cd.json -@@ -0,0 +1,815 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/codemodel-v2-470fb88baf3a9e0aae7c.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/codemodel-v2-470fb88baf3a9e0aae7c.json -new file mode 100644 -index 0000000..46792b4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/codemodel-v2-470fb88baf3a9e0aae7c.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" : "GestureHandler", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "gesturehandler::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-gesturehandler-Debug-5943cd00c6b389c5fb62.json", -+ "name" : "gesturehandler", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/index-2026-03-25T19-42-39-0142.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/index-2026-03-25T19-42-39-0142.json -new file mode 100644 -index 0000000..589c9be ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/index-2026-03-25T19-42-39-0142.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/otavio.stasiak/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-470fb88baf3a9e0aae7c.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-24f647c05be31dc9c191.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-806d11a324d8346665cd.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-24f647c05be31dc9c191.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-806d11a324d8346665cd.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-470fb88baf3a9e0aae7c.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/target-gesturehandler-Debug-5943cd00c6b389c5fb62.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/target-gesturehandler-Debug-5943cd00c6b389c5fb62.json -new file mode 100644 -index 0000000..2360e7c ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.cmake/api/v1/reply/target-gesturehandler-Debug-5943cd00c6b389c5fb62.json -@@ -0,0 +1,193 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so" -+ } -+ ], -+ "backtrace" : 1, -+ "backtraceGraph" : -+ { -+ "commands" : -+ [ -+ "add_library", -+ "target_link_libraries", -+ "add_compile_options", -+ "target_include_directories" -+ ], -+ "files" : -+ [ -+ "CMakeLists.txt" -+ ], -+ "nodes" : -+ [ -+ { -+ "file" : 0 -+ }, -+ { -+ "command" : 0, -+ "file" : 0, -+ "line" : 17, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 30, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 15, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 0, -+ "line" : 22, -+ "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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_NO_CONFIG=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_USE_LIBCPP=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_MOBILE=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "define" : "gesturehandler_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 4, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include" -+ } -+ ], -+ "language" : "CXX", -+ "languageStandard" : -+ { -+ "backtraces" : -+ [ -+ 1 -+ ], -+ "standard" : "20" -+ }, -+ "sourceIndexes" : -+ [ -+ 0 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "gesturehandler::@6890427a1f51a3e7e1df", -+ "link" : -+ { -+ "commandFragments" : -+ [ -+ { -+ "fragment" : "-Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments", -+ "role" : "flags" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "gesturehandler", -+ "nameOnDisk" : "libgesturehandler.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "cpp-adapter.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_deps b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_deps -new file mode 100644 -index 0000000..ee48351 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_deps differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_log -new file mode 100644 -index 0000000..180993b ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/.ninja_log -@@ -0,0 +1,3 @@ -+# ninja log v5 -+0 767 1774467759916131231 CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o d4835c308332be40 -+768 808 1774467759959537944 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so 348bd13f70fe846f -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeCache.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeCache.txt -new file mode 100644 -index 0000000..6e6ffb8 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeCache.txt -@@ -0,0 +1,416 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -+# It was generated by CMake: /Users/otavio.stasiak/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 -+ -+//No help, variable specified on the command line. -+ANDROID_NDK:UNINITIALIZED=/Users/otavio.stasiak/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 -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/otavio.stasiak/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 -+ -+//No help, variable specified on the command line. -+CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+ -+//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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/otavio.stasiak/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=GestureHandler -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 -+ -+//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/otavio.stasiak/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 -+ -+//The CMake toolchain file -+CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/otavio.stasiak/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 -+ -+//Value Computed by CMake -+GestureHandler_BINARY_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -+ -+//Value Computed by CMake -+GestureHandler_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+GestureHandler_SOURCE_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_DIR:UNINITIALIZED=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid -+ -+//Dependencies for the target -+gesturehandler_LIB_DEPENDS:STATIC=general;ReactAndroid::reactnative;general;ReactAndroid::jsi; -+ -+ -+######################## -+# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -+//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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+//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/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..b0a409d ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/otavio.stasiak/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 "4") -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..f2b6aa2 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/otavio.stasiak/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 "20") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/otavio.stasiak/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 "4") -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..608eb70 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..b85a34f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..44587d3 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") -+ -+include("/Users/otavio.stasiak/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 "i686") -+ -+set(CMAKE_CROSSCOMPILING "TRUE") -+ -+set(CMAKE_SYSTEM_LOADED 1) -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..0690c03 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..c4cd645 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeOutput.log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..795eb66 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,256 @@ -+The target system is: Android - 1 - i686 -+The host system is: Darwin - 24.6.0 - arm64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/otavio.stasiak/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=i686-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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/otavio.stasiak/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;;-O2;-frtti;-fexceptions;-Wall;-Werror;-std=c++20;-DANDROID -+Id flags: -c;--target=i686-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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_f3842 && [1/2] Building C object CMakeFiles/cmTC_f3842.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: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple i686-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 i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_f3842.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0 -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -+ /Users/otavio.stasiak/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_f3842 -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_i386 -pie -dynamic-linker /system/bin/linker -o cmTC_f3842 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_f3842 && [1/2] Building C object CMakeFiles/cmTC_f3842.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: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple i686-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 i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_f3842.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ ignore line: [ /Users/otavio.stasiak/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_f3842] -+ 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: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_i386 -pie -dynamic-linker /system/bin/linker -o cmTC_f3842 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_f3842.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/otavio.stasiak/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_i386] ==> ignore -+ arg [-pie] ==> ignore -+ arg [-dynamic-linker] ==> ignore -+ arg [/system/bin/linker] ==> ignore -+ arg [-o] ==> ignore -+ arg [cmTC_f3842] ==> ignore -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ 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_f3842.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [-lc] ==> lib [c] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c5844 && [1/2] Building CXX object CMakeFiles/cmTC_c5844.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: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple i686-none-linux-android24 -emit-obj -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=none -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0 -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -+ /Users/otavio.stasiak/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_c5844 -+Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_i386 -pie -dynamic-linker /system/bin/linker -o cmTC_c5844 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c5844 && [1/2] Building CXX object CMakeFiles/cmTC_c5844.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: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple i686-none-linux-android24 -emit-obj -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=none -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ ignore line: [ /Users/otavio.stasiak/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_c5844] -+ 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: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_i386 -pie -dynamic-linker /system/bin/linker -o cmTC_c5844 /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c5844.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/otavio.stasiak/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_i386] ==> ignore -+ arg [-pie] ==> ignore -+ arg [-dynamic-linker] ==> ignore -+ arg [/system/bin/linker] ==> ignore -+ arg [-o] ==> ignore -+ arg [cmTC_c5844] ==> ignore -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ 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_c5844.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [-lc] ==> lib [c] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] -+ arg [-ldl] ==> lib [dl] -+ arg [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ remove lib [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..d4930d1 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/gesturehandler.dir -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/edit_cache.dir -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/cmake.check_cache b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -new file mode 100644 -index 0000000..9f40ba2 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/rules.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..334cd33 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/CMakeFiles/rules.ninja -@@ -0,0 +1,64 @@ -+# 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: GestureHandler -+# Configurations: Debug -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__gesturehandler_Debug -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/otavio.stasiak/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__gesturehandler_Debug -+ command = $PRE_LINK && /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/additional_project_files.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json -new file mode 100644 -index 0000000..ee80673 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json -@@ -0,0 +1,41 @@ -+{ -+ "buildFiles": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "gesturehandler::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "x86", -+ "artifactName": "gesturehandler", -+ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so", -+ "runtimeFiles": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build_mini.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build_mini.json -new file mode 100644 -index 0000000..c77b6f1 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build_mini.json -@@ -0,0 +1,30 @@ -+{ -+ "buildFiles": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "gesturehandler::@6890427a1f51a3e7e1df": { -+ "artifactName": "gesturehandler", -+ "abi": "x86", -+ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so", -+ "runtimeFiles": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja -new file mode 100644 -index 0000000..4404133 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja -@@ -0,0 +1,156 @@ -+# 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: GestureHandler -+# Configurations: Debug -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.5 -+ -+ -+############################################# -+# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target gesturehandler -+ -+ -+############################################# -+# Order-only phony target for gesturehandler -+ -+build cmake_object_order_depends_target_gesturehandler: phony || CMakeFiles/gesturehandler.dir -+ -+build CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o: CXX_COMPILER__gesturehandler_Debug /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp || cmake_object_order_depends_target_gesturehandler -+ DEFINES = -Dgesturehandler_EXPORTS -+ DEP_FILE = CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -+ INCLUDES = -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -+ OBJECT_DIR = CMakeFiles/gesturehandler.dir -+ OBJECT_FILE_DIR = CMakeFiles/gesturehandler.dir -+ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ -+ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.pdb -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target gesturehandler -+ -+ -+############################################# -+# Link the shared library /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so -+ -+build /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so: CXX_SHARED_LIBRARY_LINKER__gesturehandler_Debug CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o | /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -+ LINK_FLAGS = -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -+ LINK_LIBRARIES = /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86/libjsi.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/gesturehandler.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = libgesturehandler.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ -+ TARGET_FILE = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so -+ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.pdb -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -+ 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build gesturehandler: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so -+ -+build libgesturehandler.so: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -+ -+build all: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE | /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build_file_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build_file_index.txt -new file mode 100644 -index 0000000..d6c5787 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build_file_index.txt -@@ -0,0 +1 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/cmake_install.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/cmake_install.cmake -new file mode 100644 -index 0000000..1ecace6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+ -+# 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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json -new file mode 100644 -index 0000000..006abc9 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json -@@ -0,0 +1,7 @@ -+[ -+{ -+ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", -+ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json.bin -new file mode 100644 -index 0000000..238cd7a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/configure_fingerprint.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/configure_fingerprint.bin -new file mode 100644 -index 0000000..9a2ec76 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/configure_fingerprint.bin -@@ -0,0 +1,30 @@ -+C/C++ Structured Log¯ -+¬ -+©/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/additional_project_files.txtC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  Ÿ–¢ÙÒ3  ©ø”´Ò3¬ -+© -+¦/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json  Ÿ–¢ÙÒ3Á ©ø”´Ò3± -+® -+«/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build_mini.json  Ÿ–¢ÙÒ3‹ ªø”´Ò3ž -+› -+˜/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja  Ÿ–¢ÙÒ3Ó‹  ø”´Ò3¢ -+Ÿ -+œ/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build.ninja.txt  Ÿ–¢ÙÒ3§ -+¤ -+¡/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/build_file_index.txt  Ÿ–¢ÙÒ3 ªø”´Ò3¨ -+¥ -+¢/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json  Ÿ–¢ÙÒ3à  ø”´Ò3¬ -+© -+¦/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/compile_commands.json.bin  Ÿ–¢ÙÒ3   ø”´Ò3² -+¯ -+¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/metadata_generation_command.txt  Ÿ–¢ÙÒ3 -+… ªø”´Ò3¥ -+¢ -+Ÿ/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/prefab_config.json  Ÿ–¢ÙÒ3 Œ ªø”´Ò3ª -+§ -+¤/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/symbol_folder_index.txt  Ÿ–¢ÙÒ3 £ ªø”´Ò3– -+“ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt  Ÿ–¢ÙÒ3 — ¥®°Ò3à -+Ý -+Ú/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/metadata_generation_command.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/metadata_generation_command.txt -new file mode 100644 -index 0000000..a29e9c6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/metadata_generation_command.txt -@@ -0,0 +1,24 @@ -+ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+-DCMAKE_SYSTEM_NAME=Android -+-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -+-DCMAKE_SYSTEM_VERSION=24 -+-DANDROID_PLATFORM=android-24 -+-DANDROID_ABI=x86 -+-DCMAKE_ANDROID_ARCH_ABI=x86 -+-DANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab -+-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -+-GNinja -+-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+-DREACT_NATIVE_MINOR_VERSION=79 -+-DANDROID_STL=c++_shared -+-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/prefab_config.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/prefab_config.json -new file mode 100644 -index 0000000..729bee5 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/prefab_config.json -@@ -0,0 +1,9 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/symbol_folder_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/symbol_folder_index.txt -new file mode 100644 -index 0000000..4592d58 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cache-v2-0791228dcb33ff9ef9b0.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cache-v2-0791228dcb33ff9ef9b0.json -new file mode 100644 -index 0000000..1df26f6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cache-v2-0791228dcb33ff9ef9b0.json -@@ -0,0 +1,1427 @@ -+{ -+ "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/otavio.stasiak/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" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "(This variable does not exist and should not be used)" -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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" : "-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" -+ }, -+ { -+ "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", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "(This variable does not exist and should not be used)" -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "LLVM archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ { -+ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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" : "GestureHandler" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/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/otavio.stasiak/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" : "The CMake toolchain file" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/otavio.stasiak/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" : "GestureHandler_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64" -+ }, -+ { -+ "name" : "GestureHandler_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "GestureHandler_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ { -+ "name" : "REACT_NATIVE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native" -+ }, -+ { -+ "name" : "REACT_NATIVE_MINOR_VERSION", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "79" -+ }, -+ { -+ "name" : "ReactAndroid_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for ReactAndroid." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "gesturehandler_LIB_DEPENDS", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Dependencies for the target" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "general;ReactAndroid::reactnative;general;ReactAndroid::jsi;" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-97f321fee200f4855df2.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-97f321fee200f4855df2.json -new file mode 100644 -index 0000000..85ab67d ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-97f321fee200f4855df2.json -@@ -0,0 +1,815 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/codemodel-v2-1ce6e1107b27aef6ade2.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/codemodel-v2-1ce6e1107b27aef6ade2.json -new file mode 100644 -index 0000000..54094ec ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/codemodel-v2-1ce6e1107b27aef6ade2.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" : "GestureHandler", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "gesturehandler::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-gesturehandler-Debug-1447ebbd7a7590eafedc.json", -+ "name" : "gesturehandler", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "source" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/index-2026-03-25T19-42-40-0527.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/index-2026-03-25T19-42-40-0527.json -new file mode 100644 -index 0000000..f25035b ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/index-2026-03-25T19-42-40-0527.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/otavio.stasiak/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-1ce6e1107b27aef6ade2.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-0791228dcb33ff9ef9b0.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-97f321fee200f4855df2.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-0791228dcb33ff9ef9b0.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-97f321fee200f4855df2.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-1ce6e1107b27aef6ade2.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/target-gesturehandler-Debug-1447ebbd7a7590eafedc.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/target-gesturehandler-Debug-1447ebbd7a7590eafedc.json -new file mode 100644 -index 0000000..bbc860d ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.cmake/api/v1/reply/target-gesturehandler-Debug-1447ebbd7a7590eafedc.json -@@ -0,0 +1,193 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so" -+ } -+ ], -+ "backtrace" : 1, -+ "backtraceGraph" : -+ { -+ "commands" : -+ [ -+ "add_library", -+ "target_link_libraries", -+ "add_compile_options", -+ "target_include_directories" -+ ], -+ "files" : -+ [ -+ "CMakeLists.txt" -+ ], -+ "nodes" : -+ [ -+ { -+ "file" : 0 -+ }, -+ { -+ "command" : 0, -+ "file" : 0, -+ "line" : 17, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 30, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 15, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 0, -+ "line" : 22, -+ "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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_NO_CONFIG=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_USE_LIBCPP=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_MOBILE=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "define" : "gesturehandler_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 4, -+ "path" : "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include" -+ } -+ ], -+ "language" : "CXX", -+ "languageStandard" : -+ { -+ "backtraces" : -+ [ -+ 1 -+ ], -+ "standard" : "20" -+ }, -+ "sourceIndexes" : -+ [ -+ 0 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "gesturehandler::@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", -+ "role" : "flags" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "gesturehandler", -+ "nameOnDisk" : "libgesturehandler.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "cpp-adapter.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_deps b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_deps -new file mode 100644 -index 0000000..c87b41e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_deps differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_log -new file mode 100644 -index 0000000..8e440a7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/.ninja_log -@@ -0,0 +1,3 @@ -+# ninja log v5 -+0 771 1774467761306574770 CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o 833bdfd93f0158bc -+773 812 1774467761350111774 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so de6a14b45c3ae8a2 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeCache.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeCache.txt -new file mode 100644 -index 0000000..bd2fba1 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeCache.txt -@@ -0,0 +1,416 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 -+# It was generated by CMake: /Users/otavio.stasiak/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/otavio.stasiak/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 -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+ -+//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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/otavio.stasiak/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=GestureHandler -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/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/otavio.stasiak/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 -+ -+//The CMake toolchain file -+CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/otavio.stasiak/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 -+ -+//Value Computed by CMake -+GestureHandler_BINARY_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 -+ -+//Value Computed by CMake -+GestureHandler_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+GestureHandler_SOURCE_DIR:STATIC=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_DIR:UNINITIALIZED=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid -+ -+//Dependencies for the target -+gesturehandler_LIB_DEPENDS:STATIC=general;ReactAndroid::reactnative;general;ReactAndroid::jsi; -+ -+ -+######################## -+# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+//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/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..0ddbb20 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..2386787 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/otavio.stasiak/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 "20") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..16c3f39 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..71756e5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..bcfd315 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") -+ -+include("/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..fe62e97 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..f116586 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..ffd7962 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,258 @@ -+The target system is: Android - 1 - x86_64 -+The host system is: Darwin - 24.6.0 - arm64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/otavio.stasiak/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;;-O2;-frtti;-fexceptions;-Wall;-Werror;-std=c++20;-DANDROID -+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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_d0969 && [1/2] Building C object CMakeFiles/cmTC_d0969.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_d0969.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_d0969.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0 -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -+ /Users/otavio.stasiak/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_d0969 -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_d0969 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_d0969 && [1/2] Building C object CMakeFiles/cmTC_d0969.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_d0969.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_d0969.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o -x c /Users/otavio.stasiak/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-darwin24.6.0] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ ignore line: [ /Users/otavio.stasiak/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_d0969] -+ 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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_d0969 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/otavio.stasiak/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_d0969] ==> ignore -+ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/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_d0969.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_66462 && [1/2] Building CXX object CMakeFiles/cmTC_66462.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -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=none -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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0 -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -+ /Users/otavio.stasiak/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_66462 -+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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_66462 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/otavio.stasiak/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_66462.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ add: [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ collapse include dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_66462 && [1/2] Building CXX object CMakeFiles/cmTC_66462.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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -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=none -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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -D ANDROID -isysroot /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_66462.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/otavio.stasiak/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-darwin24.6.0] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] -+ ignore line: [ /Users/otavio.stasiak/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_66462] -+ 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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/otavio.stasiak/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_66462 /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/otavio.stasiak/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_66462.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/otavio.stasiak/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_66462] ==> ignore -+ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] -+ arg [-L/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/otavio.stasiak/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_66462.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] -+ collapse library dir [/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..7e96c16 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/gesturehandler.dir -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/edit_cache.dir -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -new file mode 100644 -index 0000000..0b1248f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..3be7900 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/CMakeFiles/rules.ninja -@@ -0,0 +1,64 @@ -+# 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: GestureHandler -+# Configurations: Debug -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__gesturehandler_Debug -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/otavio.stasiak/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__gesturehandler_Debug -+ command = $PRE_LINK && /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/additional_project_files.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json -new file mode 100644 -index 0000000..b024df2 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json -@@ -0,0 +1,41 @@ -+{ -+ "buildFiles": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "gesturehandler::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "x86_64", -+ "artifactName": "gesturehandler", -+ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so", -+ "runtimeFiles": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build_mini.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build_mini.json -new file mode 100644 -index 0000000..ec8b24c ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build_mini.json -@@ -0,0 +1,30 @@ -+{ -+ "buildFiles": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "gesturehandler::@6890427a1f51a3e7e1df": { -+ "artifactName": "gesturehandler", -+ "abi": "x86_64", -+ "output": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so", -+ "runtimeFiles": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja -new file mode 100644 -index 0000000..9deea98 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja -@@ -0,0 +1,156 @@ -+# 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: GestureHandler -+# Configurations: Debug -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.5 -+ -+ -+############################################# -+# 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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target gesturehandler -+ -+ -+############################################# -+# Order-only phony target for gesturehandler -+ -+build cmake_object_order_depends_target_gesturehandler: phony || CMakeFiles/gesturehandler.dir -+ -+build CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o: CXX_COMPILER__gesturehandler_Debug /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp || cmake_object_order_depends_target_gesturehandler -+ DEFINES = -Dgesturehandler_EXPORTS -+ DEP_FILE = CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -+ INCLUDES = -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -+ OBJECT_DIR = CMakeFiles/gesturehandler.dir -+ OBJECT_FILE_DIR = CMakeFiles/gesturehandler.dir -+ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ -+ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.pdb -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target gesturehandler -+ -+ -+############################################# -+# Link the shared library /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so -+ -+build /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so: CXX_SHARED_LIBRARY_LINKER__gesturehandler_Debug CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o | /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.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 -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -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 -+ LINK_LIBRARIES = /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/gesturehandler.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = libgesturehandler.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_COMPILE_PDB = CMakeFiles/gesturehandler.dir/ -+ TARGET_FILE = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so -+ TARGET_PDB = /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.pdb -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 && /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build gesturehandler: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so -+ -+build libgesturehandler.so: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 -+ -+build all: phony /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE | /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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 /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/otavio.stasiak/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build_file_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build_file_index.txt -new file mode 100644 -index 0000000..d6c5787 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build_file_index.txt -@@ -0,0 +1 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/cmake_install.cmake b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/cmake_install.cmake -new file mode 100644 -index 0000000..66e3bd3 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+ -+# 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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json -new file mode 100644 -index 0000000..91958d1 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json -@@ -0,0 +1,7 @@ -+[ -+{ -+ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", -+ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json.bin -new file mode 100644 -index 0000000..831dfab -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/configure_fingerprint.bin b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/configure_fingerprint.bin -new file mode 100644 -index 0000000..f8ce337 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/configure_fingerprint.bin -@@ -0,0 +1,30 @@ -+C/C++ Structured Log² -+¯ -+¬/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/additional_project_files.txtC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ±–¢ÙÒ3  ’ƒ•´Ò3¯ -+¬ -+©/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json  ±–¢ÙÒ3Ó “ƒ•´Ò3´ -+± -+®/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build_mini.json  ±–¢ÙÒ3 “ƒ•´Ò3¡ -+ž -+›/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja  ±–¢ÙÒ3¸Œ ‰ƒ•´Ò3¥ -+¢ -+Ÿ/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build.ninja.txt  ±–¢ÙÒ3ª -+§ -+¤/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/build_file_index.txt  ±–¢ÙÒ3 ”ƒ•´Ò3« -+¨ -+¥/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json  ±–¢ÙÒ3å ‰ƒ•´Ò3¯ -+¬ -+©/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/compile_commands.json.bin  ±–¢ÙÒ3 † ‰ƒ•´Ò3µ -+² -+¯/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/metadata_generation_command.txt  ±–¢ÙÒ3 -+— ”ƒ•´Ò3¨ -+¥ -+¢/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/prefab_config.json  ±–¢ÙÒ3 Œ ”ƒ•´Ò3­ -+ª -+§/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/symbol_folder_index.txt  ±–¢ÙÒ3 ¦ ”ƒ•´Ò3– -+“ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt  ±–¢ÙÒ3 — ¥®°Ò3à -+Ý -+Ú/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/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-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/metadata_generation_command.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/metadata_generation_command.txt -new file mode 100644 -index 0000000..7a4ef72 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/metadata_generation_command.txt -@@ -0,0 +1,24 @@ -+ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni -+-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 -+-DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab -+-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 -+-GNinja -+-DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native -+-DREACT_NATIVE_MINOR_VERSION=79 -+-DANDROID_STL=c++_shared -+-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/prefab_config.json b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/prefab_config.json -new file mode 100644 -index 0000000..729bee5 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/prefab_config.json -@@ -0,0 +1,9 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/symbol_folder_index.txt b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/symbol_folder_index.txt -new file mode 100644 -index 0000000..585a90d ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/arm64-v8a/compile_commands.json -new file mode 100644 -index 0000000..343a961 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/arm64-v8a/compile_commands.json -@@ -0,0 +1,7 @@ -+[ -+{ -+ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", -+ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/armeabi-v7a/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/armeabi-v7a/compile_commands.json -new file mode 100644 -index 0000000..9b46301 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/armeabi-v7a/compile_commands.json -@@ -0,0 +1,7 @@ -+[ -+{ -+ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=armv7-none-linux-androideabi24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", -+ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86/compile_commands.json -new file mode 100644 -index 0000000..006abc9 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86/compile_commands.json -@@ -0,0 +1,7 @@ -+[ -+{ -+ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", -+ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86_64/compile_commands.json b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86_64/compile_commands.json -new file mode 100644 -index 0000000..91958d1 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.cxx/tools/debug/x86_64/compile_commands.json -@@ -0,0 +1,7 @@ -+[ -+{ -+ "directory": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "command": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dgesturehandler_EXPORTS -I/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native/ReactCommon -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/reactnative/include -isystem /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -o CMakeFiles/gesturehandler.dir/cpp-adapter.cpp.o -c /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp", -+ "file": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/cpp-adapter.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/.project b/node_modules/react-native-gesture-handler/android/.project -new file mode 100644 -index 0000000..d6a6551 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/.project -@@ -0,0 +1,28 @@ -+ -+ -+ react-native-gesture-handler -+ Project react-native-gesture-handler created by Buildship. -+ -+ -+ -+ -+ org.eclipse.buildship.core.gradleprojectbuilder -+ -+ -+ -+ -+ -+ org.eclipse.buildship.core.gradleprojectnature -+ -+ -+ -+ 1769703269993 -+ -+ 30 -+ -+ org.eclipse.core.resources.regexFilterMatcher -+ node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ -+ -+ -+ -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/results.bin b/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/results.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/results.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/transformed/classes/classes_dex/classes.dex -new file mode 100644 -index 0000000..e77f75e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/d7327bf6b15e580f89dd6bdfa454c10d/transformed/classes/classes_dex/classes.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/results.bin b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/results.bin -new file mode 100644 -index 0000000..7ed749e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/results.bin -@@ -0,0 +1 @@ -+o/bundleLibRuntimeToDirDebug -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.dex -new file mode 100644 -index 0000000..1de775c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.dex -new file mode 100644 -index 0000000..e0eda1f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.dex -new file mode 100644 -index 0000000..392ec08 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.dex -new file mode 100644 -index 0000000..a76d778 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/BuildConfig.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/BuildConfig.dex -new file mode 100644 -index 0000000..710c259 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/BuildConfig.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.dex -new file mode 100644 -index 0000000..28c6359 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/RNGestureHandlerPackage.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/RNGestureHandlerPackage.dex -new file mode 100644 -index 0000000..75c639a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/RNGestureHandlerPackage.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReactContextExtensionsKt.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReactContextExtensionsKt.dex -new file mode 100644 -index 0000000..e51c734 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReactContextExtensionsKt.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReanimatedEventDispatcher.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReanimatedEventDispatcher.dex -new file mode 100644 -index 0000000..8cc06c3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/ReanimatedEventDispatcher.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/DiagonalDirections.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/DiagonalDirections.dex -new file mode 100644 -index 0000000..df19599 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/DiagonalDirections.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.dex -new file mode 100644 -index 0000000..65d9644 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler.dex -new file mode 100644 -index 0000000..03bedeb -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/FlingGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.dex -new file mode 100644 -index 0000000..822c178 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$Companion.dex -new file mode 100644 -index 0000000..a56a3e4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$PointerData.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$PointerData.dex -new file mode 100644 -index 0000000..3d5dd3c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler$PointerData.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler.dex -new file mode 100644 -index 0000000..85ce573 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.dex -new file mode 100644 -index 0000000..4cc03be -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.dex -new file mode 100644 -index 0000000..c15b4af -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.dex -new file mode 100644 -index 0000000..42e8e31 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.dex -new file mode 100644 -index 0000000..42a3561 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerRegistry.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerRegistry.dex -new file mode 100644 -index 0000000..ea49fc3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureHandlerRegistry.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureUtils.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureUtils.dex -new file mode 100644 -index 0000000..f6773cf -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/GestureUtils.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.dex -new file mode 100644 -index 0000000..ac4cc2b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler.dex -new file mode 100644 -index 0000000..e554c18 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/HoverGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.dex -new file mode 100644 -index 0000000..1d587eb -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler.dex -new file mode 100644 -index 0000000..abe9591 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/LongPressGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ManualGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ManualGestureHandler.dex -new file mode 100644 -index 0000000..c98f094 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ManualGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.dex -new file mode 100644 -index 0000000..2519f48 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.dex -new file mode 100644 -index 0000000..7e9bf5d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.dex -new file mode 100644 -index 0000000..8783862 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.dex -new file mode 100644 -index 0000000..b863508 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.dex -new file mode 100644 -index 0000000..d3267ee -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.dex -new file mode 100644 -index 0000000..fe76f55 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.dex -new file mode 100644 -index 0000000..7438b72 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.dex -new file mode 100644 -index 0000000..59f70c7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.dex -new file mode 100644 -index 0000000..d7f4127 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler.dex -new file mode 100644 -index 0000000..ee92674 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/NativeViewGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/OnTouchEventListener.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/OnTouchEventListener.dex -new file mode 100644 -index 0000000..52220fe -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/OnTouchEventListener.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.dex -new file mode 100644 -index 0000000..710c43c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler.dex -new file mode 100644 -index 0000000..b2b101b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PanGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.dex -new file mode 100644 -index 0000000..ca8f445 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler.dex -new file mode 100644 -index 0000000..6d1ae15 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PinchGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PointerEventsConfig.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PointerEventsConfig.dex -new file mode 100644 -index 0000000..74c80c4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/PointerEventsConfig.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.dex -new file mode 100644 -index 0000000..a809005 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector.dex -new file mode 100644 -index 0000000..91d159b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureDetector.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.dex -new file mode 100644 -index 0000000..a90f39d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.dex -new file mode 100644 -index 0000000..b6df3a3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler.dex -new file mode 100644 -index 0000000..de294a4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/RotationGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.dex -new file mode 100644 -index 0000000..1325d17 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.dex -new file mode 100644 -index 0000000..67c73b0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.dex -new file mode 100644 -index 0000000..e3cbafe -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector.dex -new file mode 100644 -index 0000000..5c5bd84 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ScaleGestureDetector.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData$Companion.dex -new file mode 100644 -index 0000000..86e0c46 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData.dex -new file mode 100644 -index 0000000..772270d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/StylusData.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.dex -new file mode 100644 -index 0000000..efbdbb3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler.dex -new file mode 100644 -index 0000000..7dbe6a4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/TapGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector$Companion.dex -new file mode 100644 -index 0000000..9d42c47 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector.dex -new file mode 100644 -index 0000000..bc58908 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/Vector.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ViewConfigurationHelper.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ViewConfigurationHelper.dex -new file mode 100644 -index 0000000..864b76b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/core/ViewConfigurationHelper.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/ExtensionsKt.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/ExtensionsKt.dex -new file mode 100644 -index 0000000..9731c43 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/ExtensionsKt.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.dex -new file mode 100644 -index 0000000..19750c3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.dex -new file mode 100644 -index 0000000..b708d57 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.dex -new file mode 100644 -index 0000000..00df2bd -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.dex -new file mode 100644 -index 0000000..4700444 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.dex -new file mode 100644 -index 0000000..81b1abd -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.dex -new file mode 100644 -index 0000000..7c8984c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.dex -new file mode 100644 -index 0000000..275dc25 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.dex -new file mode 100644 -index 0000000..cbb9da1 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.dex -new file mode 100644 -index 0000000..e62f823 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.dex -new file mode 100644 -index 0000000..ec3b4c7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.dex -new file mode 100644 -index 0000000..b548fbd -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.dex -new file mode 100644 -index 0000000..97ad39a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.dex -new file mode 100644 -index 0000000..93bdb64 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.dex -new file mode 100644 -index 0000000..4a3b15d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.dex -new file mode 100644 -index 0000000..e8a657e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.dex -new file mode 100644 -index 0000000..d425ef6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.dex -new file mode 100644 -index 0000000..c19e805 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.dex -new file mode 100644 -index 0000000..31365e4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.dex -new file mode 100644 -index 0000000..98ff356 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.dex -new file mode 100644 -index 0000000..9e07a9e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.dex -new file mode 100644 -index 0000000..cd86257 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.dex -new file mode 100644 -index 0000000..2416307 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule.dex -new file mode 100644 -index 0000000..7141fb1 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerModule.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.dex -new file mode 100644 -index 0000000..db95eae -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.dex -new file mode 100644 -index 0000000..9597a69 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.dex -new file mode 100644 -index 0000000..a72dd6a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.dex -new file mode 100644 -index 0000000..7780703 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.dex -new file mode 100644 -index 0000000..2f97288 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.dex -new file mode 100644 -index 0000000..60cefdb -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.dex -new file mode 100644 -index 0000000..3518010 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.dex -new file mode 100644 -index 0000000..7df6abb -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.dex -new file mode 100644 -index 0000000..390c08a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.dex -new file mode 100644 -index 0000000..97d2e5e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.dex -new file mode 100644 -index 0000000..da49a87 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.dex -new file mode 100644 -index 0000000..6a79422 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.dex -new file mode 100644 -index 0000000..4089502 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.dex -new file mode 100644 -index 0000000..4ecb7b0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.dex -new file mode 100644 -index 0000000..5213775 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..c1aaf53 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..3e665bc -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..35a1251 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..63d335e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..16eb182 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..7cdc55b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..452a2fe -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..bd0abab -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..fd0aea4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.dex b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.dex -new file mode 100644 -index 0000000..befcfb9 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.dex differ -diff --git a/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin -new file mode 100644 -index 0000000..a825eb1 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/.transforms/f8eafa82039e02297ec0e5c940f3e252/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/buildConfig/debug/com/swmansion/gesturehandler/BuildConfig.java b/node_modules/react-native-gesture-handler/android/build/generated/source/buildConfig/debug/com/swmansion/gesturehandler/BuildConfig.java -new file mode 100644 -index 0000000..b83a119 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/buildConfig/debug/com/swmansion/gesturehandler/BuildConfig.java -@@ -0,0 +1,14 @@ -+/** -+ * Automatically generated file. DO NOT MODIFY -+ */ -+package com.swmansion.gesturehandler; -+ -+public final class BuildConfig { -+ public static final boolean DEBUG = Boolean.parseBoolean("true"); -+ public static final String LIBRARY_PACKAGE_NAME = "com.swmansion.gesturehandler"; -+ public static final String BUILD_TYPE = "debug"; -+ // Field from default config. -+ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = true; -+ // Field from default config. -+ public static final int REACT_NATIVE_MINOR_VERSION = 79; -+} -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java -new file mode 100644 -index 0000000..755f026 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.java -@@ -0,0 +1,60 @@ -+/** -+* 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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.ColorPropConverter; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNGestureHandlerButtonManagerDelegate & RNGestureHandlerButtonManagerInterface> extends BaseViewManagerDelegate { -+ public RNGestureHandlerButtonManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "exclusive": -+ mViewManager.setExclusive(view, value == null ? true : (boolean) value); -+ break; -+ case "foreground": -+ mViewManager.setForeground(view, value == null ? false : (boolean) value); -+ break; -+ case "borderless": -+ mViewManager.setBorderless(view, value == null ? false : (boolean) value); -+ break; -+ case "enabled": -+ mViewManager.setEnabled(view, value == null ? true : (boolean) value); -+ break; -+ case "rippleColor": -+ mViewManager.setRippleColor(view, ColorPropConverter.getColor(value, view.getContext())); -+ break; -+ case "rippleRadius": -+ mViewManager.setRippleRadius(view, value == null ? 0 : ((Double) value).intValue()); -+ break; -+ case "touchSoundDisabled": -+ mViewManager.setTouchSoundDisabled(view, value == null ? false : (boolean) value); -+ break; -+ case "borderWidth": -+ mViewManager.setBorderWidth(view, value == null ? 0f : ((Double) value).floatValue()); -+ break; -+ case "borderColor": -+ mViewManager.setBorderColor(view, ColorPropConverter.getColor(value, view.getContext())); -+ break; -+ case "borderStyle": -+ mViewManager.setBorderStyle(view, value == null ? "solid" : (String) value); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java -new file mode 100644 -index 0000000..975704f ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.java -@@ -0,0 +1,27 @@ -+/** -+* 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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNGestureHandlerButtonManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setExclusive(T view, boolean value); -+ void setForeground(T view, boolean value); -+ void setBorderless(T view, boolean value); -+ void setEnabled(T view, boolean value); -+ void setRippleColor(T view, @Nullable Integer value); -+ void setRippleRadius(T view, int value); -+ void setTouchSoundDisabled(T view, boolean value); -+ void setBorderWidth(T view, float value); -+ void setBorderColor(T view, @Nullable Integer value); -+ void setBorderStyle(T view, @Nullable String value); -+} -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java -new file mode 100644 -index 0000000..99dfe01 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.java -@@ -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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNGestureHandlerRootViewManagerDelegate & RNGestureHandlerRootViewManagerInterface> extends BaseViewManagerDelegate { -+ public RNGestureHandlerRootViewManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ super.setProperty(view, propName, value); -+ } -+} -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java -new file mode 100644 -index 0000000..c94080e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.java -@@ -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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNGestureHandlerRootViewManagerInterface extends ViewManagerWithGeneratedInterface { -+ // No props -+} -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.java b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.java -new file mode 100644 -index 0000000..e789525 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/java/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.java -@@ -0,0 +1,66 @@ -+ -+/** -+ * 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.gesturehandler; -+ -+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.bridge.ReadableMap; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+ -+public abstract class NativeRNGestureHandlerModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNGestureHandlerModule"; -+ -+ public NativeRNGestureHandlerModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void handleSetJSResponder(double tag, boolean blockNativeResponder); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void handleClearJSResponder(); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void createGestureHandler(String handlerName, double handlerTag, ReadableMap config); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void attachGestureHandler(double handlerTag, double newView, double actionType); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void updateGestureHandler(double handlerTag, ReadableMap newConfig); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void dropGestureHandler(double handlerTag); -+ -+ @ReactMethod(isBlockingSynchronousMethod = true) -+ @DoNotStrip -+ public abstract boolean install(); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void flushOperations(); -+} -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/CMakeLists.txt -new file mode 100644 -index 0000000..7b82c5f ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/CMakeLists.txt -@@ -0,0 +1,36 @@ -+# 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/rngesturehandler_codegen/*.cpp) -+ -+add_library( -+ react_codegen_rngesturehandler_codegen -+ OBJECT -+ ${react_codegen_SRCS} -+) -+ -+target_include_directories(react_codegen_rngesturehandler_codegen PUBLIC . react/renderer/components/rngesturehandler_codegen) -+ -+target_link_libraries( -+ react_codegen_rngesturehandler_codegen -+ 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_options( -+ react_codegen_rngesturehandler_codegen -+ PRIVATE -+ -DLOG_TAG=\"ReactNative\" -+ -fexceptions -+ -frtti -+ -std=c++20 -+ -Wall -+) -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.cpp -new file mode 100644 -index 0000000..7c4ad29 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.cpp -@@ -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: GenerateComponentDescriptorCpp.js -+ */ -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+void rngesturehandler_codegen_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry) { -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h -new file mode 100644 -index 0000000..d52c8b3 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ComponentDescriptors.h -@@ -0,0 +1,25 @@ -+ -+/** -+ * 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 { -+ -+using RNGestureHandlerButtonComponentDescriptor = ConcreteComponentDescriptor; -+using RNGestureHandlerRootViewComponentDescriptor = ConcreteComponentDescriptor; -+ -+void rngesturehandler_codegen_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry); -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.cpp -new file mode 100644 -index 0000000..f6088d4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.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: GenerateEventEmitterCpp.js -+ */ -+ -+#include -+ -+ -+namespace facebook::react { -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.h -new file mode 100644 -index 0000000..38a62d7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/EventEmitters.h -@@ -0,0 +1,30 @@ -+ -+/** -+ * 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 { -+class RNGestureHandlerButtonEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNGestureHandlerRootViewEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.cpp -new file mode 100644 -index 0000000..63a1785 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.cpp -@@ -0,0 +1,41 @@ -+ -+/** -+ * 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 { -+ -+RNGestureHandlerButtonProps::RNGestureHandlerButtonProps( -+ const PropsParserContext &context, -+ const RNGestureHandlerButtonProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ exclusive(convertRawProp(context, rawProps, "exclusive", sourceProps.exclusive, {true})), -+ foreground(convertRawProp(context, rawProps, "foreground", sourceProps.foreground, {false})), -+ borderless(convertRawProp(context, rawProps, "borderless", sourceProps.borderless, {false})), -+ enabled(convertRawProp(context, rawProps, "enabled", sourceProps.enabled, {true})), -+ rippleColor(convertRawProp(context, rawProps, "rippleColor", sourceProps.rippleColor, {})), -+ rippleRadius(convertRawProp(context, rawProps, "rippleRadius", sourceProps.rippleRadius, {0})), -+ touchSoundDisabled(convertRawProp(context, rawProps, "touchSoundDisabled", sourceProps.touchSoundDisabled, {false})), -+ borderWidth(convertRawProp(context, rawProps, "borderWidth", sourceProps.borderWidth, {0.0})), -+ borderColor(convertRawProp(context, rawProps, "borderColor", sourceProps.borderColor, {})), -+ borderStyle(convertRawProp(context, rawProps, "borderStyle", sourceProps.borderStyle, {"solid"})) -+ {} -+RNGestureHandlerRootViewProps::RNGestureHandlerRootViewProps( -+ const PropsParserContext &context, -+ const RNGestureHandlerRootViewProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps) -+ -+ -+ {} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.h -new file mode 100644 -index 0000000..7164354 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/Props.h -@@ -0,0 +1,47 @@ -+ -+/** -+ * 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 -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+class RNGestureHandlerButtonProps final : public ViewProps { -+ public: -+ RNGestureHandlerButtonProps() = default; -+ RNGestureHandlerButtonProps(const PropsParserContext& context, const RNGestureHandlerButtonProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ bool exclusive{true}; -+ bool foreground{false}; -+ bool borderless{false}; -+ bool enabled{true}; -+ SharedColor rippleColor{}; -+ int rippleRadius{0}; -+ bool touchSoundDisabled{false}; -+ Float borderWidth{0.0}; -+ SharedColor borderColor{}; -+ std::string borderStyle{"solid"}; -+}; -+ -+class RNGestureHandlerRootViewProps final : public ViewProps { -+ public: -+ RNGestureHandlerRootViewProps() = default; -+ RNGestureHandlerRootViewProps(const PropsParserContext& context, const RNGestureHandlerRootViewProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ -+}; -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.cpp -new file mode 100644 -index 0000000..d398757 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.cpp -@@ -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: GenerateShadowNodeCpp.js -+ */ -+ -+#include -+ -+namespace facebook::react { -+ -+extern const char RNGestureHandlerButtonComponentName[] = "RNGestureHandlerButton"; -+extern const char RNGestureHandlerRootViewComponentName[] = "RNGestureHandlerRootView"; -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.h -new file mode 100644 -index 0000000..0cafb3e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/ShadowNodes.h -@@ -0,0 +1,43 @@ -+ -+/** -+ * 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 { -+ -+JSI_EXPORT extern const char RNGestureHandlerButtonComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNGestureHandlerButtonShadowNode = ConcreteViewShadowNode< -+ RNGestureHandlerButtonComponentName, -+ RNGestureHandlerButtonProps, -+ RNGestureHandlerButtonEventEmitter, -+ RNGestureHandlerButtonState>; -+ -+JSI_EXPORT extern const char RNGestureHandlerRootViewComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNGestureHandlerRootViewShadowNode = ConcreteViewShadowNode< -+ RNGestureHandlerRootViewComponentName, -+ RNGestureHandlerRootViewProps, -+ RNGestureHandlerRootViewEventEmitter, -+ RNGestureHandlerRootViewState>; -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.cpp -new file mode 100644 -index 0000000..e61488c ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/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-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.h -new file mode 100644 -index 0000000..bbafc33 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/States.h -@@ -0,0 +1,41 @@ -+/** -+ * 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 -+ -+#ifdef ANDROID -+#include -+#endif -+ -+namespace facebook::react { -+ -+class RNGestureHandlerButtonState { -+public: -+ RNGestureHandlerButtonState() = default; -+ -+#ifdef ANDROID -+ RNGestureHandlerButtonState(RNGestureHandlerButtonState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNGestureHandlerRootViewState { -+public: -+ RNGestureHandlerRootViewState() = default; -+ -+#ifdef ANDROID -+ RNGestureHandlerRootViewState(RNGestureHandlerRootViewState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+} // namespace facebook::react -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI-generated.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI-generated.cpp -new file mode 100644 -index 0000000..7855e77 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI-generated.cpp -@@ -0,0 +1,86 @@ -+/** -+ * 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 "rngesturehandler_codegenJSI.h" -+ -+namespace facebook::react { -+ -+static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_handleSetJSResponder(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ static_cast(&turboModule)->handleSetJSResponder( -+ rt, -+ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asNumber(), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asBool() -+ ); -+ return jsi::Value::undefined(); -+} -+static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_handleClearJSResponder(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ static_cast(&turboModule)->handleClearJSResponder( -+ rt -+ ); -+ return jsi::Value::undefined(); -+} -+static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_createGestureHandler(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ static_cast(&turboModule)->createGestureHandler( -+ rt, -+ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asString(rt), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asNumber(), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt) -+ ); -+ return jsi::Value::undefined(); -+} -+static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_attachGestureHandler(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ static_cast(&turboModule)->attachGestureHandler( -+ rt, -+ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asNumber(), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asNumber(), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber() -+ ); -+ return jsi::Value::undefined(); -+} -+static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_updateGestureHandler(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ static_cast(&turboModule)->updateGestureHandler( -+ rt, -+ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asNumber(), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt) -+ ); -+ return jsi::Value::undefined(); -+} -+static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_dropGestureHandler(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ static_cast(&turboModule)->dropGestureHandler( -+ rt, -+ count <= 0 ? throw jsi::JSError(rt, "Expected argument in position 0 to be passed") : args[0].asNumber() -+ ); -+ return jsi::Value::undefined(); -+} -+static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_install(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->install( -+ rt -+ ); -+} -+static jsi::Value __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_flushOperations(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ static_cast(&turboModule)->flushOperations( -+ rt -+ ); -+ return jsi::Value::undefined(); -+} -+ -+NativeRNGestureHandlerModuleCxxSpecJSI::NativeRNGestureHandlerModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNGestureHandlerModule", jsInvoker) { -+ methodMap_["handleSetJSResponder"] = MethodMetadata {2, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_handleSetJSResponder}; -+ methodMap_["handleClearJSResponder"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_handleClearJSResponder}; -+ methodMap_["createGestureHandler"] = MethodMetadata {3, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_createGestureHandler}; -+ methodMap_["attachGestureHandler"] = MethodMetadata {3, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_attachGestureHandler}; -+ methodMap_["updateGestureHandler"] = MethodMetadata {2, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_updateGestureHandler}; -+ methodMap_["dropGestureHandler"] = MethodMetadata {1, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_dropGestureHandler}; -+ methodMap_["install"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_install}; -+ methodMap_["flushOperations"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleCxxSpecJSI_flushOperations}; -+} -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI.h -new file mode 100644 -index 0000000..1e438db ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/react/renderer/components/rngesturehandler_codegen/rngesturehandler_codegenJSI.h -@@ -0,0 +1,134 @@ -+/** -+ * 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 NativeRNGestureHandlerModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNGestureHandlerModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual void handleSetJSResponder(jsi::Runtime &rt, double tag, bool blockNativeResponder) = 0; -+ virtual void handleClearJSResponder(jsi::Runtime &rt) = 0; -+ virtual void createGestureHandler(jsi::Runtime &rt, jsi::String handlerName, double handlerTag, jsi::Object config) = 0; -+ virtual void attachGestureHandler(jsi::Runtime &rt, double handlerTag, double newView, double actionType) = 0; -+ virtual void updateGestureHandler(jsi::Runtime &rt, double handlerTag, jsi::Object newConfig) = 0; -+ virtual void dropGestureHandler(jsi::Runtime &rt, double handlerTag) = 0; -+ virtual bool install(jsi::Runtime &rt) = 0; -+ virtual void flushOperations(jsi::Runtime &rt) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNGestureHandlerModuleCxxSpec : 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 = "RNGestureHandlerModule"; -+ -+protected: -+ NativeRNGestureHandlerModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNGestureHandlerModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNGestureHandlerModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNGestureHandlerModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ void handleSetJSResponder(jsi::Runtime &rt, double tag, bool blockNativeResponder) override { -+ static_assert( -+ bridging::getParameterCount(&T::handleSetJSResponder) == 3, -+ "Expected handleSetJSResponder(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::handleSetJSResponder, jsInvoker_, instance_, std::move(tag), std::move(blockNativeResponder)); -+ } -+ void handleClearJSResponder(jsi::Runtime &rt) override { -+ static_assert( -+ bridging::getParameterCount(&T::handleClearJSResponder) == 1, -+ "Expected handleClearJSResponder(...) to have 1 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::handleClearJSResponder, jsInvoker_, instance_); -+ } -+ void createGestureHandler(jsi::Runtime &rt, jsi::String handlerName, double handlerTag, jsi::Object config) override { -+ static_assert( -+ bridging::getParameterCount(&T::createGestureHandler) == 4, -+ "Expected createGestureHandler(...) to have 4 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::createGestureHandler, jsInvoker_, instance_, std::move(handlerName), std::move(handlerTag), std::move(config)); -+ } -+ void attachGestureHandler(jsi::Runtime &rt, double handlerTag, double newView, double actionType) override { -+ static_assert( -+ bridging::getParameterCount(&T::attachGestureHandler) == 4, -+ "Expected attachGestureHandler(...) to have 4 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::attachGestureHandler, jsInvoker_, instance_, std::move(handlerTag), std::move(newView), std::move(actionType)); -+ } -+ void updateGestureHandler(jsi::Runtime &rt, double handlerTag, jsi::Object newConfig) override { -+ static_assert( -+ bridging::getParameterCount(&T::updateGestureHandler) == 3, -+ "Expected updateGestureHandler(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::updateGestureHandler, jsInvoker_, instance_, std::move(handlerTag), std::move(newConfig)); -+ } -+ void dropGestureHandler(jsi::Runtime &rt, double handlerTag) override { -+ static_assert( -+ bridging::getParameterCount(&T::dropGestureHandler) == 2, -+ "Expected dropGestureHandler(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::dropGestureHandler, jsInvoker_, instance_, std::move(handlerTag)); -+ } -+ bool install(jsi::Runtime &rt) override { -+ static_assert( -+ bridging::getParameterCount(&T::install) == 1, -+ "Expected install(...) to have 1 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::install, jsInvoker_, instance_); -+ } -+ void flushOperations(jsi::Runtime &rt) override { -+ static_assert( -+ bridging::getParameterCount(&T::flushOperations) == 1, -+ "Expected flushOperations(...) to have 1 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::flushOperations, jsInvoker_, instance_); -+ } -+ -+ private: -+ friend class NativeRNGestureHandlerModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen-generated.cpp b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen-generated.cpp -new file mode 100644 -index 0000000..cbf6143 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen-generated.cpp -@@ -0,0 +1,74 @@ -+ -+/** -+ * 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 "rngesturehandler_codegen.h" -+ -+namespace facebook::react { -+ -+static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_handleSetJSResponder(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "handleSetJSResponder", "(DZ)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_handleClearJSResponder(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "handleClearJSResponder", "()V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_createGestureHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "createGestureHandler", "(Ljava/lang/String;DLcom/facebook/react/bridge/ReadableMap;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_attachGestureHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "attachGestureHandler", "(DDD)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_updateGestureHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "updateGestureHandler", "(DLcom/facebook/react/bridge/ReadableMap;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_dropGestureHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "dropGestureHandler", "(D)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_install(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, "install", "()Z", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNGestureHandlerModuleSpecJSI_flushOperations(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, VoidKind, "flushOperations", "()V", args, count, cachedMethodId); -+} -+ -+NativeRNGestureHandlerModuleSpecJSI::NativeRNGestureHandlerModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["handleSetJSResponder"] = MethodMetadata {2, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_handleSetJSResponder}; -+ methodMap_["handleClearJSResponder"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_handleClearJSResponder}; -+ methodMap_["createGestureHandler"] = MethodMetadata {3, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_createGestureHandler}; -+ methodMap_["attachGestureHandler"] = MethodMetadata {3, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_attachGestureHandler}; -+ methodMap_["updateGestureHandler"] = MethodMetadata {2, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_updateGestureHandler}; -+ methodMap_["dropGestureHandler"] = MethodMetadata {1, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_dropGestureHandler}; -+ methodMap_["install"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_install}; -+ methodMap_["flushOperations"] = MethodMetadata {0, __hostFunction_NativeRNGestureHandlerModuleSpecJSI_flushOperations}; -+} -+ -+std::shared_ptr rngesturehandler_codegen_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { -+ if (moduleName == "RNGestureHandlerModule") { -+ return std::make_shared(params); -+ } -+ return nullptr; -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen.h b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen.h -new file mode 100644 -index 0000000..4ebb0dd ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/rngesturehandler_codegen.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 'NativeRNGestureHandlerModule' -+ */ -+class JSI_EXPORT NativeRNGestureHandlerModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNGestureHandlerModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+ -+JSI_EXPORT -+std::shared_ptr rngesturehandler_codegen_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/schema.json b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/schema.json -new file mode 100644 -index 0000000..3eb84fa ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/schema.json -@@ -0,0 +1 @@ -+{"modules":{"NativeRNGestureHandlerModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"handleSetJSResponder","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"blockNativeResponder","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation"}}]}},{"name":"handleClearJSResponder","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[]}},{"name":"createGestureHandler","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"handlerName","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"handlerTag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"config","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}},{"name":"attachGestureHandler","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"handlerTag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"newView","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"actionType","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}},{"name":"updateGestureHandler","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"handlerTag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"newConfig","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}},{"name":"dropGestureHandler","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[{"name":"handlerTag","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}},{"name":"install","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"BooleanTypeAnnotation"},"params":[]}},{"name":"flushOperations","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"VoidTypeAnnotation"},"params":[]}}]},"moduleName":"RNGestureHandlerModule"},"RNGestureHandlerButton":{"type":"Component","components":{"RNGestureHandlerButton":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"exclusive","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":true}},{"name":"foreground","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"borderless","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enabled","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":true}},{"name":"rippleColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"rippleRadius","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}},{"name":"touchSoundDisabled","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"borderWidth","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"borderColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderStyle","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":"solid"}}],"commands":[]}}},"RNGestureHandlerRootView":{"type":"Component","components":{"RNGestureHandlerRootView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[],"commands":[]}}}}} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -new file mode 100644 -index 0000000..be16dee ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-gesture-handler/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json -new file mode 100644 -index 0000000..ee2ec18 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/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.gesturehandler", -+ "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-gesture-handler/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-gesture-handler/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties -new file mode 100644 -index 0000000..1211b1e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-gesture-handler/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -new file mode 100644 -index 0000000..9e26dfe ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar -new file mode 100644 -index 0000000..5bf2b26 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar -new file mode 100644 -index 0000000..82be33a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_command_gesturehandler b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_command_gesturehandler -new file mode 100755 -index 0000000..18f6486 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_command_gesturehandler -@@ -0,0 +1,4 @@ -+/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -C \ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a \ -+ gesturehandler -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_model.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_model.json -new file mode 100644 -index 0000000..e22780d ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_model.json -@@ -0,0 +1,223 @@ -+{ -+ "info": { -+ "name": "arm64-v8a", -+ "bitness": 64, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "arm64", -+ "triple": "aarch64-linux-android", -+ "llvmTriple": "aarch64-none-linux-android" -+ }, -+ "cxxBuildFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "soFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a", -+ "soRepublishFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cmake/debug/obj/arm64-v8a", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [ -+ "-O2", -+ "-frtti", -+ "-fexceptions", -+ "-Wall", -+ "-Werror", -+ "-std\u003dc++20", -+ "-DANDROID" -+ ], -+ "variantName": "debug", -+ "isDebuggableEnabled": true, -+ "validAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "x86", -+ "x86_64" -+ ], -+ "buildTargetSet": [], -+ "implicitBuildTargetSet": [], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx", -+ "intermediatesBaseFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates", -+ "intermediatesFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx", -+ "gradleModulePathName": ":react-native-gesture-handler", -+ "moduleRootFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android", -+ "moduleBuildFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build.gradle", -+ "makeFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "ndkFolderBeforeSymLinking": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/android", -+ "sdkFolder": "/Users/otavio.stasiak/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" -+ ], -+ "stlType": "c++_shared", -+ "optimizationTag": "Debug" -+ }, -+ "buildSettings": { -+ "environmentVariables": [] -+ }, -+ "prefabFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "4l4l1n3t4n1s223p5w351f2h3f4ab4iy441u4u3h4ovy4y1h2362134p", -+ "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.8.2.\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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni\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_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native\n-DREACT_NATIVE_MINOR_VERSION\u003d79\n-DANDROID_STL\u003dc++_shared\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", -+ "configurationArguments": [ -+ "-H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni", -+ "-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a", -+ "-DCMAKE_BUILD_TYPE\u003dDebug", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab", -+ "-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a", -+ "-GNinja", -+ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" -+ ], -+ "stlLibraryFile": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "intermediatesParentFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stderr_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stderr_gesturehandler.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stdout_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stdout_gesturehandler.txt -new file mode 100644 -index 0000000..8c50b98 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/build_stdout_gesturehandler.txt -@@ -0,0 +1,2 @@ -+ninja: Entering directory `/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a' -+ninja: no work to do. -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_command -new file mode 100755 -index 0000000..39ee455 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_command -@@ -0,0 +1,23 @@ -+/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni \ -+ -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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a \ -+ -DCMAKE_BUILD_TYPE=Debug \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/arm64-v8a/prefab \ -+ -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a \ -+ -GNinja \ -+ -DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native \ -+ -DREACT_NATIVE_MINOR_VERSION=79 \ -+ -DANDROID_STL=c++_shared \ -+ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stdout.txt -new file mode 100644 -index 0000000..5f78df0 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/configure_stdout.txt -@@ -0,0 +1,15 @@ -+-- The C compiler identification is Clang 18.0.2 -+-- The CXX compiler identification is Clang 18.0.2 -+-- Detecting C compiler ABI info -+-- Detecting C compiler ABI info - done -+-- Check for working C compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped -+-- Detecting C compile features -+-- Detecting C compile features - done -+-- Detecting CXX compiler ABI info -+-- Detecting CXX compiler ABI info - done -+-- Check for working CXX compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped -+-- Detecting CXX compile features -+-- Detecting CXX compile features - done -+-- Configuring done -+-- Generating done -+-- Build files have been written to: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1037_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1037_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1037_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_106_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_106_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_106_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_111_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_111_timing.txt -new file mode 100644 -index 0000000..aefd807 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_111_timing.txt -@@ -0,0 +1,10 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ generate-prefab-packages -+ exec-prefab 280ms -+ generate-prefab-packages completed in 287ms -+ execute-generate-process -+ exec-configure 277ms -+ execute-generate-process completed in 279ms -+generate_cxx_metadata completed in 571ms -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1257_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1257_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1257_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1495_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1495_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_1495_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_348_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_348_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_348_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_577_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_577_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_577_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_581_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_581_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_581_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_796_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_796_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_796_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_813_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_813_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/generate_cxx_metadata_813_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/metadata_generation_record.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/metadata_generation_record.json -new file mode 100644 -index 0000000..f3bece0 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/metadata_generation_record.json -@@ -0,0 +1,41 @@ -+[ -+ { -+ "level_": 0, -+ "message_": "Start JSON generation. Platform version: 24 min SDK version: arm64-v8a", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON \u0027/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/arm64-v8a/android_gradle_build.json\u0027 was up-to-date", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/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-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_command -new file mode 100755 -index 0000000..f18ee4a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_command -@@ -0,0 +1,21 @@ -+/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java \ -+ --class-path \ -+ /Users/otavio.stasiak/.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/ht/7469xbl10hjcqprhc3q4tych0000gq/T/agp-prefab-staging3784266250826846830/staged-cli-output \ -+ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab \ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a \ -+ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/arm64-v8a/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_command_gesturehandler b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_command_gesturehandler -new file mode 100755 -index 0000000..ac40666 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_command_gesturehandler -@@ -0,0 +1,4 @@ -+/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -C \ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a \ -+ gesturehandler -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_model.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_model.json -new file mode 100644 -index 0000000..cd8dfd0 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_model.json -@@ -0,0 +1,223 @@ -+{ -+ "info": { -+ "name": "armeabi-v7a", -+ "bitness": 32, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "arm", -+ "triple": "arm-linux-androideabi", -+ "llvmTriple": "armv7-none-linux-androideabi" -+ }, -+ "cxxBuildFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "soFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a", -+ "soRepublishFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cmake/debug/obj/armeabi-v7a", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [ -+ "-O2", -+ "-frtti", -+ "-fexceptions", -+ "-Wall", -+ "-Werror", -+ "-std\u003dc++20", -+ "-DANDROID" -+ ], -+ "variantName": "debug", -+ "isDebuggableEnabled": true, -+ "validAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "x86", -+ "x86_64" -+ ], -+ "buildTargetSet": [], -+ "implicitBuildTargetSet": [], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx", -+ "intermediatesBaseFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates", -+ "intermediatesFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx", -+ "gradleModulePathName": ":react-native-gesture-handler", -+ "moduleRootFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android", -+ "moduleBuildFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build.gradle", -+ "makeFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "ndkFolderBeforeSymLinking": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/android", -+ "sdkFolder": "/Users/otavio.stasiak/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" -+ ], -+ "stlType": "c++_shared", -+ "optimizationTag": "Debug" -+ }, -+ "buildSettings": { -+ "environmentVariables": [] -+ }, -+ "prefabFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "4l4l1n3t4n1s223p5w351f2h3f4ab4iy441u4u3h4ovy4y1h2362134p", -+ "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.8.2.\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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni\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_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native\n-DREACT_NATIVE_MINOR_VERSION\u003d79\n-DANDROID_STL\u003dc++_shared\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", -+ "configurationArguments": [ -+ "-H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni", -+ "-DCMAKE_SYSTEM_NAME\u003dAndroid", -+ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", -+ "-DCMAKE_SYSTEM_VERSION\u003d24", -+ "-DANDROID_PLATFORM\u003dandroid-24", -+ "-DANDROID_ABI\u003darmeabi-v7a", -+ "-DCMAKE_ANDROID_ARCH_ABI\u003darmeabi-v7a", -+ "-DANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a", -+ "-DCMAKE_BUILD_TYPE\u003dDebug", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab", -+ "-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a", -+ "-GNinja", -+ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" -+ ], -+ "stlLibraryFile": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", -+ "intermediatesParentFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stderr_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stderr_gesturehandler.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stdout_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stdout_gesturehandler.txt -new file mode 100644 -index 0000000..8d051c6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/build_stdout_gesturehandler.txt -@@ -0,0 +1,2 @@ -+ninja: Entering directory `/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a' -+ninja: no work to do. -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_command -new file mode 100755 -index 0000000..8619d30 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_command -@@ -0,0 +1,23 @@ -+/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni \ -+ -DCMAKE_SYSTEM_NAME=Android \ -+ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ -+ -DCMAKE_SYSTEM_VERSION=24 \ -+ -DANDROID_PLATFORM=android-24 \ -+ -DANDROID_ABI=armeabi-v7a \ -+ -DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a \ -+ -DANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a \ -+ -DCMAKE_BUILD_TYPE=Debug \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/armeabi-v7a/prefab \ -+ -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a \ -+ -GNinja \ -+ -DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native \ -+ -DREACT_NATIVE_MINOR_VERSION=79 \ -+ -DANDROID_STL=c++_shared \ -+ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stdout.txt -new file mode 100644 -index 0000000..978ca4a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/configure_stdout.txt -@@ -0,0 +1,15 @@ -+-- The C compiler identification is Clang 18.0.2 -+-- The CXX compiler identification is Clang 18.0.2 -+-- Detecting C compiler ABI info -+-- Detecting C compiler ABI info - done -+-- Check for working C compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped -+-- Detecting C compile features -+-- Detecting C compile features - done -+-- Detecting CXX compiler ABI info -+-- Detecting CXX compiler ABI info - done -+-- Check for working CXX compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped -+-- Detecting CXX compile features -+-- Detecting CXX compile features - done -+-- Configuring done -+-- Generating done -+-- Build files have been written to: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1037_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1037_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1037_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_106_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_106_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_106_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_114_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_114_timing.txt -new file mode 100644 -index 0000000..f020418 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_114_timing.txt -@@ -0,0 +1,10 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ generate-prefab-packages -+ exec-prefab 283ms -+ generate-prefab-packages completed in 289ms -+ execute-generate-process -+ exec-configure 269ms -+ execute-generate-process completed in 271ms -+generate_cxx_metadata completed in 564ms -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1257_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1257_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1257_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1495_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1495_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_1495_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_348_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_348_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_348_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_577_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_577_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_577_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_581_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_581_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_581_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_796_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_796_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_796_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_813_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_813_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/generate_cxx_metadata_813_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/metadata_generation_record.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/metadata_generation_record.json -new file mode 100644 -index 0000000..47fa39e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/metadata_generation_record.json -@@ -0,0 +1,41 @@ -+[ -+ { -+ "level_": 0, -+ "message_": "Start JSON generation. Platform version: 24 min SDK version: armeabi-v7a", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "tag_": "debug|armeabi-v7a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON \u0027/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/armeabi-v7a/android_gradle_build.json\u0027 was up-to-date", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "tag_": "debug|armeabi-v7a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON generation completed without problems", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "tag_": "debug|armeabi-v7a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ } -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_command -new file mode 100755 -index 0000000..10b6e97 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_command -@@ -0,0 +1,21 @@ -+/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java \ -+ --class-path \ -+ /Users/otavio.stasiak/.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 \ -+ armeabi-v7a \ -+ --os-version \ -+ 24 \ -+ --stl \ -+ c++_shared \ -+ --ndk-version \ -+ 27 \ -+ --output \ -+ /var/folders/ht/7469xbl10hjcqprhc3q4tych0000gq/T/agp-prefab-staging6213892464658074650/staged-cli-output \ -+ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab \ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a \ -+ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/armeabi-v7a/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_command_gesturehandler b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_command_gesturehandler -new file mode 100755 -index 0000000..88653f9 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_command_gesturehandler -@@ -0,0 +1,4 @@ -+/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -C \ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 \ -+ gesturehandler -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_model.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_model.json -new file mode 100644 -index 0000000..7d9fc5e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_model.json -@@ -0,0 +1,223 @@ -+{ -+ "info": { -+ "name": "x86", -+ "bitness": 32, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "x86", -+ "triple": "i686-linux-android", -+ "llvmTriple": "i686-none-linux-android" -+ }, -+ "cxxBuildFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "soFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86", -+ "soRepublishFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cmake/debug/obj/x86", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [ -+ "-O2", -+ "-frtti", -+ "-fexceptions", -+ "-Wall", -+ "-Werror", -+ "-std\u003dc++20", -+ "-DANDROID" -+ ], -+ "variantName": "debug", -+ "isDebuggableEnabled": true, -+ "validAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "x86", -+ "x86_64" -+ ], -+ "buildTargetSet": [], -+ "implicitBuildTargetSet": [], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx", -+ "intermediatesBaseFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates", -+ "intermediatesFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx", -+ "gradleModulePathName": ":react-native-gesture-handler", -+ "moduleRootFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android", -+ "moduleBuildFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build.gradle", -+ "makeFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "ndkFolderBeforeSymLinking": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/android", -+ "sdkFolder": "/Users/otavio.stasiak/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" -+ ], -+ "stlType": "c++_shared", -+ "optimizationTag": "Debug" -+ }, -+ "buildSettings": { -+ "environmentVariables": [] -+ }, -+ "prefabFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "4l4l1n3t4n1s223p5w351f2h3f4ab4iy441u4u3h4ovy4y1h2362134p", -+ "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.8.2.\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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni\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_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native\n-DREACT_NATIVE_MINOR_VERSION\u003d79\n-DANDROID_STL\u003dc++_shared\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", -+ "configurationArguments": [ -+ "-H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni", -+ "-DCMAKE_SYSTEM_NAME\u003dAndroid", -+ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", -+ "-DCMAKE_SYSTEM_VERSION\u003d24", -+ "-DANDROID_PLATFORM\u003dandroid-24", -+ "-DANDROID_ABI\u003dx86", -+ "-DCMAKE_ANDROID_ARCH_ABI\u003dx86", -+ "-DANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86", -+ "-DCMAKE_BUILD_TYPE\u003dDebug", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab", -+ "-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86", -+ "-GNinja", -+ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" -+ ], -+ "stlLibraryFile": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", -+ "intermediatesParentFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stderr_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stderr_gesturehandler.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stdout_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stdout_gesturehandler.txt -new file mode 100644 -index 0000000..0ec4d6b ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/build_stdout_gesturehandler.txt -@@ -0,0 +1,2 @@ -+ninja: Entering directory `/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86' -+ninja: no work to do. -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_command -new file mode 100755 -index 0000000..b2db894 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_command -@@ -0,0 +1,23 @@ -+/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni \ -+ -DCMAKE_SYSTEM_NAME=Android \ -+ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ -+ -DCMAKE_SYSTEM_VERSION=24 \ -+ -DANDROID_PLATFORM=android-24 \ -+ -DANDROID_ABI=x86 \ -+ -DCMAKE_ANDROID_ARCH_ABI=x86 \ -+ -DANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86 \ -+ -DCMAKE_BUILD_TYPE=Debug \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86/prefab \ -+ -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 \ -+ -GNinja \ -+ -DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native \ -+ -DREACT_NATIVE_MINOR_VERSION=79 \ -+ -DANDROID_STL=c++_shared \ -+ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stdout.txt -new file mode 100644 -index 0000000..b38cfc4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/configure_stdout.txt -@@ -0,0 +1,15 @@ -+-- The C compiler identification is Clang 18.0.2 -+-- The CXX compiler identification is Clang 18.0.2 -+-- Detecting C compiler ABI info -+-- Detecting C compiler ABI info - done -+-- Check for working C compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped -+-- Detecting C compile features -+-- Detecting C compile features - done -+-- Detecting CXX compiler ABI info -+-- Detecting CXX compiler ABI info - done -+-- Check for working CXX compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped -+-- Detecting CXX compile features -+-- Detecting CXX compile features - done -+-- Configuring done -+-- Generating done -+-- Build files have been written to: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1037_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1037_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1037_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_106_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_106_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_106_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_114_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_114_timing.txt -new file mode 100644 -index 0000000..4f79f93 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_114_timing.txt -@@ -0,0 +1,10 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ generate-prefab-packages -+ exec-prefab 283ms -+ generate-prefab-packages completed in 289ms -+ execute-generate-process -+ exec-configure 272ms -+ execute-generate-process completed in 275ms -+generate_cxx_metadata completed in 567ms -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1257_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1257_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1257_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1500_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1500_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_1500_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_348_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_348_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_348_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_577_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_577_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_577_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_581_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_581_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_581_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_796_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_796_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_796_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_813_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_813_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/generate_cxx_metadata_813_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/metadata_generation_record.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/metadata_generation_record.json -new file mode 100644 -index 0000000..f0516dc ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/metadata_generation_record.json -@@ -0,0 +1,41 @@ -+[ -+ { -+ "level_": 0, -+ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "tag_": "debug|x86", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON \u0027/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86/android_gradle_build.json\u0027 was up-to-date", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "tag_": "debug|x86", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON generation completed without problems", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "tag_": "debug|x86", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ } -+] -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_command -new file mode 100755 -index 0000000..8145d59 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_command -@@ -0,0 +1,21 @@ -+/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java \ -+ --class-path \ -+ /Users/otavio.stasiak/.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 \ -+ --os-version \ -+ 24 \ -+ --stl \ -+ c++_shared \ -+ --ndk-version \ -+ 27 \ -+ --output \ -+ /var/folders/ht/7469xbl10hjcqprhc3q4tych0000gq/T/agp-prefab-staging17351827393999859803/staged-cli-output \ -+ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab \ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a \ -+ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_command_gesturehandler b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_command_gesturehandler -new file mode 100755 -index 0000000..5d336f3 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_command_gesturehandler -@@ -0,0 +1,4 @@ -+/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -C \ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 \ -+ gesturehandler -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_model.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_model.json -new file mode 100644 -index 0000000..a25c9ce ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_model.json -@@ -0,0 +1,223 @@ -+{ -+ "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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "soFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64", -+ "soRepublishFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cmake/debug/obj/x86_64", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [ -+ "-O2", -+ "-frtti", -+ "-fexceptions", -+ "-Wall", -+ "-Werror", -+ "-std\u003dc++20", -+ "-DANDROID" -+ ], -+ "variantName": "debug", -+ "isDebuggableEnabled": true, -+ "validAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "x86", -+ "x86_64" -+ ], -+ "buildTargetSet": [], -+ "implicitBuildTargetSet": [], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx", -+ "intermediatesBaseFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates", -+ "intermediatesFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx", -+ "gradleModulePathName": ":react-native-gesture-handler", -+ "moduleRootFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android", -+ "moduleBuildFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build.gradle", -+ "makeFile": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "ndkFolderBeforeSymLinking": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/otavio.stasiak/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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/otavio.stasiak/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/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/android", -+ "sdkFolder": "/Users/otavio.stasiak/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/otavio.stasiak/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab", -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json" -+ ], -+ "stlType": "c++_shared", -+ "optimizationTag": "Debug" -+ }, -+ "buildSettings": { -+ "environmentVariables": [] -+ }, -+ "prefabFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "4l4l1n3t4n1s223p5w351f2h3f4ab4iy441u4u3h4ovy4y1h2362134p", -+ "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.8.2.\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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni\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_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native\n-DREACT_NATIVE_MINOR_VERSION\u003d79\n-DANDROID_STL\u003dc++_shared\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", -+ "configurationArguments": [ -+ "-H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni", -+ "-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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Werror -std\u003dc++20 -DANDROID", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64", -+ "-DCMAKE_BUILD_TYPE\u003dDebug", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab", -+ "-B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64", -+ "-GNinja", -+ "-DREACT_NATIVE_DIR\u003d/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON" -+ ], -+ "stlLibraryFile": "/Users/otavio.stasiak/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stderr_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stderr_gesturehandler.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stdout_gesturehandler.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stdout_gesturehandler.txt -new file mode 100644 -index 0000000..f04680d ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/build_stdout_gesturehandler.txt -@@ -0,0 +1,2 @@ -+ninja: Entering directory `/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64' -+ninja: no work to do. -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_command -new file mode 100755 -index 0000000..91125e7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_command -@@ -0,0 +1,23 @@ -+/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni \ -+ -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/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_ANDROID_NDK=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/otavio.stasiak/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Werror -std=c++20 -DANDROID" \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64 \ -+ -DCMAKE_BUILD_TYPE=Debug \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/prefab/x86_64/prefab \ -+ -B/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 \ -+ -GNinja \ -+ -DREACT_NATIVE_DIR=/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native \ -+ -DREACT_NATIVE_MINOR_VERSION=79 \ -+ -DANDROID_STL=c++_shared \ -+ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stdout.txt -new file mode 100644 -index 0000000..388977e ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/configure_stdout.txt -@@ -0,0 +1,15 @@ -+-- The C compiler identification is Clang 18.0.2 -+-- The CXX compiler identification is Clang 18.0.2 -+-- Detecting C compiler ABI info -+-- Detecting C compiler ABI info - done -+-- Check for working C compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped -+-- Detecting C compile features -+-- Detecting C compile features - done -+-- Detecting CXX compiler ABI info -+-- Detecting CXX compiler ABI info - done -+-- Check for working CXX compiler: /Users/otavio.stasiak/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped -+-- Detecting CXX compile features -+-- Detecting CXX compile features - done -+-- Configuring done -+-- Generating done -+-- Build files have been written to: /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1037_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1037_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1037_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_106_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_106_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_106_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_114_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_114_timing.txt -new file mode 100644 -index 0000000..22de85a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_114_timing.txt -@@ -0,0 +1,10 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ generate-prefab-packages -+ exec-prefab 285ms -+ generate-prefab-packages completed in 290ms -+ execute-generate-process -+ exec-configure 270ms -+ execute-generate-process completed in 272ms -+generate_cxx_metadata completed in 567ms -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1257_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1257_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1257_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1500_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1500_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_1500_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_348_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_348_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_348_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_577_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_577_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_577_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_581_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_581_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_581_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_796_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_796_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_796_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_809_timing.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_809_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/generate_cxx_metadata_809_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/metadata_generation_record.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/metadata_generation_record.json -new file mode 100644 -index 0000000..41b0ba2 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/metadata_generation_record.json -@@ -0,0 +1,41 @@ -+[ -+ { -+ "level_": 0, -+ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86_64", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/CMakeLists.txt", -+ "tag_": "debug|x86_64", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON \u0027/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/.cxx/Debug/4l4l1n3t/x86_64/android_gradle_build.json\u0027 was up-to-date", -+ "file_": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/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/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/jni/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-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_command b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_command -new file mode 100755 -index 0000000..85ab141 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_command -@@ -0,0 +1,21 @@ -+/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home/bin/java \ -+ --class-path \ -+ /Users/otavio.stasiak/.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/ht/7469xbl10hjcqprhc3q4tych0000gq/T/agp-prefab-staging14021346595931702203/staged-cli-output \ -+ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/d243a80061dd3bcc60a68439fc0a83cc/transformed/jetified-react-android-0.79.4-debug/prefab \ -+ /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a \ -+ /Users/otavio.stasiak/.gradle/caches/8.13/transforms/5053e4b60e0db8d6f189103cd44ec179/transformed/jetified-fbjni-0.7.0/prefab -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_stderr.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_stdout.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/logs/x86_64/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libc++_shared.so -new file mode 100755 -index 0000000..2c72c65 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libc++_shared.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so -new file mode 100755 -index 0000000..274e9d3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libjsi.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libjsi.so -new file mode 100644 -index 0000000..65ec2dd -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libjsi.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libreactnative.so -new file mode 100644 -index 0000000..58b1064 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/arm64-v8a/libreactnative.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libc++_shared.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libc++_shared.so -new file mode 100755 -index 0000000..9865180 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libc++_shared.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so -new file mode 100755 -index 0000000..5320c03 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libjsi.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libjsi.so -new file mode 100644 -index 0000000..15e8bef -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libjsi.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libreactnative.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libreactnative.so -new file mode 100644 -index 0000000..6438f9d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/armeabi-v7a/libreactnative.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libc++_shared.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libc++_shared.so -new file mode 100755 -index 0000000..8648c4c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libc++_shared.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so -new file mode 100755 -index 0000000..b651e26 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libjsi.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libjsi.so -new file mode 100644 -index 0000000..de3aaa2 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libjsi.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libreactnative.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libreactnative.so -new file mode 100644 -index 0000000..71af24f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86/libreactnative.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libc++_shared.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libc++_shared.so -new file mode 100755 -index 0000000..8e3a868 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libc++_shared.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so -new file mode 100755 -index 0000000..4ff4c5e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libjsi.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libjsi.so -new file mode 100644 -index 0000000..e1b87af -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libjsi.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libreactnative.so b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libreactnative.so -new file mode 100644 -index 0000000..e3e9043 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/Debug/4l4l1n3t/obj/x86_64/libreactnative.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/include/placeholder.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/module.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/reanimated/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/include/placeholder.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/module.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/modules/worklets/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab.json -new file mode 100644 -index 0000000..3551a3a ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "react-native-reanimated", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "3.17.1" -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab_publication.json b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab_publication.json -new file mode 100644 -index 0000000..63c9ed3 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/cxx/refs/react-native-reanimated/275i3g6a/prefab_publication.json -@@ -0,0 +1,24 @@ -+{ -+ "installationFolder": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":react-native-reanimated", -+ "packageInfo": { -+ "packageName": "react-native-reanimated", -+ "packageVersion": "3.17.1", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "reanimated", -+ "moduleHeaders": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", -+ "moduleExportLibraries": [], -+ "abis": [] -+ }, -+ { -+ "moduleName": "worklets", -+ "moduleHeaders": "/Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", -+ "moduleExportLibraries": [], -+ "abis": [] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -new file mode 100644 -index 0000000..a3c83fa ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -@@ -0,0 +1 @@ -+#Wed Mar 25 16:39:33 BRT 2026 -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -new file mode 100644 -index 0000000..6dee191 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -new file mode 100644 -index 0000000..167d639 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -new file mode 100644 -index 0000000..efea247 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/packageDebugAssets/merger.xml -new file mode 100644 -index 0000000..0ff610c ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/incremental/packageDebugAssets/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-gesture-handler_debug.kotlin_module b/node_modules/react-native-gesture-handler/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-gesture-handler_debug.kotlin_module -new file mode 100644 -index 0000000..dfb30f0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-gesture-handler_debug.kotlin_module differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class -new file mode 100644 -index 0000000..bc3f477 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class -new file mode 100644 -index 0000000..c1a0ebf -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class -new file mode 100644 -index 0000000..4c1aad3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class -new file mode 100644 -index 0000000..2e38837 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/BuildConfig.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/BuildConfig.class -new file mode 100644 -index 0000000..6125ae1 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/BuildConfig.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class -new file mode 100644 -index 0000000..7f95852 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class -new file mode 100644 -index 0000000..b712a67 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class -new file mode 100644 -index 0000000..efd1d43 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class -new file mode 100644 -index 0000000..6e85b69 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector.class -new file mode 100644 -index 0000000..7585a1e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/core/ScaleGestureDetector.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class -new file mode 100644 -index 0000000..f1ab5cc -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libgesturehandler.so -new file mode 100644 -index 0000000..274e9d3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libgesturehandler.so -new file mode 100644 -index 0000000..5320c03 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/armeabi-v7a/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libgesturehandler.so -new file mode 100644 -index 0000000..b651e26 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libgesturehandler.so -new file mode 100644 -index 0000000..4ff4c5e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-gesture-handler/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-gesture-handler/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-gesture-handler/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -new file mode 100644 -index 0000000..1c77fbb ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -new file mode 100644 -index 0000000..be16dee ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libgesturehandler.so -new file mode 100644 -index 0000000..274e9d3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libgesturehandler.so -new file mode 100644 -index 0000000..5320c03 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libgesturehandler.so -new file mode 100644 -index 0000000..b651e26 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libgesturehandler.so b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libgesturehandler.so -new file mode 100644 -index 0000000..4ff4c5e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libgesturehandler.so differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-gesture-handler/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -new file mode 100644 -index 0000000..0637a08 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/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-gesture-handler/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-gesture-handler/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-gesture-handler/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-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-gesture-handler_debug.kotlin_module b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-gesture-handler_debug.kotlin_module -new file mode 100644 -index 0000000..dfb30f0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-gesture-handler_debug.kotlin_module differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class -new file mode 100644 -index 0000000..bc3f477 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerDelegate.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class -new file mode 100644 -index 0000000..c1a0ebf -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerButtonManagerInterface.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class -new file mode 100644 -index 0000000..4c1aad3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerDelegate.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class -new file mode 100644 -index 0000000..2e38837 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNGestureHandlerRootViewManagerInterface.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/BuildConfig.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/BuildConfig.class -new file mode 100644 -index 0000000..6125ae1 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/BuildConfig.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class -new file mode 100644 -index 0000000..7f95852 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/NativeRNGestureHandlerModuleSpec.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class -new file mode 100644 -index 0000000..6bb5f72 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class -new file mode 100644 -index 0000000..27d4185 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class -new file mode 100644 -index 0000000..5c76edc -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/DiagonalDirections.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/DiagonalDirections.class -new file mode 100644 -index 0000000..f2f7932 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/DiagonalDirections.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class -new file mode 100644 -index 0000000..7af9bba -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler.class -new file mode 100644 -index 0000000..90338b4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/FlingGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class -new file mode 100644 -index 0000000..39fae9e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class -new file mode 100644 -index 0000000..0550bfe -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class -new file mode 100644 -index 0000000..236bcd4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler.class -new file mode 100644 -index 0000000..3ba1426 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class -new file mode 100644 -index 0000000..63360cf -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class -new file mode 100644 -index 0000000..d16d344 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class -new file mode 100644 -index 0000000..6e922b0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class -new file mode 100644 -index 0000000..2ee7fe8 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class -new file mode 100644 -index 0000000..9e32f51 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureUtils.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureUtils.class -new file mode 100644 -index 0000000..cdde93f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/GestureUtils.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class -new file mode 100644 -index 0000000..1891a1e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler.class -new file mode 100644 -index 0000000..37c22e7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/HoverGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class -new file mode 100644 -index 0000000..c0d9f2d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class -new file mode 100644 -index 0000000..488d090 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ManualGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ManualGestureHandler.class -new file mode 100644 -index 0000000..6a4b4e5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ManualGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class -new file mode 100644 -index 0000000..72ab1ee -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class -new file mode 100644 -index 0000000..76c275d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class -new file mode 100644 -index 0000000..c321c72 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class -new file mode 100644 -index 0000000..80b55e0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class -new file mode 100644 -index 0000000..ebe6535 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class -new file mode 100644 -index 0000000..a172437 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class -new file mode 100644 -index 0000000..202c055 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class -new file mode 100644 -index 0000000..893059e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class -new file mode 100644 -index 0000000..0dff367 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class -new file mode 100644 -index 0000000..921ebbf -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/OnTouchEventListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/OnTouchEventListener.class -new file mode 100644 -index 0000000..a1701b6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/OnTouchEventListener.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class -new file mode 100644 -index 0000000..c9a119f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler.class -new file mode 100644 -index 0000000..2755614 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PanGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class -new file mode 100644 -index 0000000..474a8c4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler.class -new file mode 100644 -index 0000000..ebabc3c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PinchGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PointerEventsConfig.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PointerEventsConfig.class -new file mode 100644 -index 0000000..8195414 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/PointerEventsConfig.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class -new file mode 100644 -index 0000000..fd49651 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector.class -new file mode 100644 -index 0000000..9b8aee6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureDetector.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class -new file mode 100644 -index 0000000..c4c115f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class -new file mode 100644 -index 0000000..6b58177 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler.class -new file mode 100644 -index 0000000..3486ba3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/RotationGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class -new file mode 100644 -index 0000000..b712a67 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class -new file mode 100644 -index 0000000..efd1d43 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$OnScaleGestureListener.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class -new file mode 100644 -index 0000000..6e85b69 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector$SimpleOnScaleGestureListener.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector.class -new file mode 100644 -index 0000000..7585a1e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ScaleGestureDetector.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData$Companion.class -new file mode 100644 -index 0000000..238f0ad -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData.class -new file mode 100644 -index 0000000..98081c5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/StylusData.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class -new file mode 100644 -index 0000000..8d84545 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler.class -new file mode 100644 -index 0000000..079a2ad -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/TapGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector$Companion.class -new file mode 100644 -index 0000000..301dfa7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector.class -new file mode 100644 -index 0000000..c6b3cab -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/Vector.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class -new file mode 100644 -index 0000000..67d4157 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/ExtensionsKt.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/ExtensionsKt.class -new file mode 100644 -index 0000000..cc22ec6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/ExtensionsKt.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class -new file mode 100644 -index 0000000..cd5ba20 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class -new file mode 100644 -index 0000000..9c08fe0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class -new file mode 100644 -index 0000000..e3e1c08 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class -new file mode 100644 -index 0000000..64d51fc -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class -new file mode 100644 -index 0000000..f1ab5cc -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerComponentsRegistry.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class -new file mode 100644 -index 0000000..6a3467b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class -new file mode 100644 -index 0000000..fd04c66 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class -new file mode 100644 -index 0000000..c37b3b0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class -new file mode 100644 -index 0000000..e714869 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class -new file mode 100644 -index 0000000..d2afc82 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class -new file mode 100644 -index 0000000..1553bd3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class -new file mode 100644 -index 0000000..e0f060c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class -new file mode 100644 -index 0000000..44f64ca -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class -new file mode 100644 -index 0000000..74f52b7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class -new file mode 100644 -index 0000000..9b4fc4c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class -new file mode 100644 -index 0000000..fa9fa17 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class -new file mode 100644 -index 0000000..32d903b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class -new file mode 100644 -index 0000000..8a505a2 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class -new file mode 100644 -index 0000000..5e16237 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class -new file mode 100644 -index 0000000..8a31819 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class -new file mode 100644 -index 0000000..12286a2 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class -new file mode 100644 -index 0000000..7282cfa -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class -new file mode 100644 -index 0000000..f58792b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class -new file mode 100644 -index 0000000..82ae1ce -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class -new file mode 100644 -index 0000000..7e33f8f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class -new file mode 100644 -index 0000000..eb3d177 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class -new file mode 100644 -index 0000000..2dae260 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class -new file mode 100644 -index 0000000..a3b0e09 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class -new file mode 100644 -index 0000000..050cc04 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class -new file mode 100644 -index 0000000..ed8b7c8 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class -new file mode 100644 -index 0000000..157e5ee -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class -new file mode 100644 -index 0000000..e12c9fe -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class -new file mode 100644 -index 0000000..33da11d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class -new file mode 100644 -index 0000000..bf8fa3c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class -new file mode 100644 -index 0000000..f0cdb5f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class -new file mode 100644 -index 0000000..02e87b7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class -new file mode 100644 -index 0000000..5bd04ca -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class -new file mode 100644 -index 0000000..e25a1e5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..44e01f5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..1236c66 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..1665e6b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..0646a1e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..3e60a26 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..cb7cbed -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..52450de -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..307e8e4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..ac5e201 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..711d7b5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar -new file mode 100644 -index 0000000..7d5eec4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ -diff --git a/node_modules/react-native-gesture-handler/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-gesture-handler/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -new file mode 100644 -index 0000000..3bd36e7 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -@@ -0,0 +1 @@ -+com.swmansion.gesturehandler -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab -new file mode 100644 -index 0000000..e089615 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream -new file mode 100644 -index 0000000..30d5b0e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len -new file mode 100644 -index 0000000..d2c5398 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len -new file mode 100644 -index 0000000..b4da131 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at -new file mode 100644 -index 0000000..12f7a07 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i -new file mode 100644 -index 0000000..16ac96a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab -new file mode 100644 -index 0000000..95f3c75 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream -new file mode 100644 -index 0000000..d4c1e98 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len -new file mode 100644 -index 0000000..de0dda7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len -new file mode 100644 -index 0000000..be2ce70 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at -new file mode 100644 -index 0000000..896622a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i -new file mode 100644 -index 0000000..b125c79 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab -new file mode 100644 -index 0000000..d4a65c6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream -new file mode 100644 -index 0000000..d4c1e98 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len -new file mode 100644 -index 0000000..de0dda7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len -new file mode 100644 -index 0000000..be2ce70 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at -new file mode 100644 -index 0000000..c800c13 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i -new file mode 100644 -index 0000000..b125c79 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab -new file mode 100644 -index 0000000..a85e6f1 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream -new file mode 100644 -index 0000000..41e0f99 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len -new file mode 100644 -index 0000000..d6cf07a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len -new file mode 100644 -index 0000000..fa606b6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at -new file mode 100644 -index 0000000..cd70988 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i -new file mode 100644 -index 0000000..e67d094 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab -new file mode 100644 -index 0000000..bdf584a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream -new file mode 100644 -index 0000000..40c63db -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len -new file mode 100644 -index 0000000..c32b442 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len -new file mode 100644 -index 0000000..2a17e6e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at -new file mode 100644 -index 0000000..94d9d28 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i -new file mode 100644 -index 0000000..be41c79 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab -new file mode 100644 -index 0000000..a3b6306 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream -new file mode 100644 -index 0000000..80a7c76 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len -new file mode 100644 -index 0000000..8967150 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len -new file mode 100644 -index 0000000..91ce7f2 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at -new file mode 100644 -index 0000000..7445559 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i -new file mode 100644 -index 0000000..6250ee6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab -new file mode 100644 -index 0000000..a9e5441 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream -new file mode 100644 -index 0000000..da11b90 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len -new file mode 100644 -index 0000000..fd5292d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len -new file mode 100644 -index 0000000..01bdaa1 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at -new file mode 100644 -index 0000000..6fcb00a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i -new file mode 100644 -index 0000000..a63b53f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab -new file mode 100644 -index 0000000..3fc21bb -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream -new file mode 100644 -index 0000000..c60ce1e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len -new file mode 100644 -index 0000000..050cb78 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len -new file mode 100644 -index 0000000..b4beefb -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values -new file mode 100644 -index 0000000..02b50b0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at -new file mode 100644 -index 0000000..a557395 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s -new file mode 100644 -index 0000000..c435339 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s -@@ -0,0 +1 @@ -+àÖǺ -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i -new file mode 100644 -index 0000000..c9e6559 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab -new file mode 100644 -index 0000000..7aa68b4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream -new file mode 100644 -index 0000000..30d5b0e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len -new file mode 100644 -index 0000000..d2c5398 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len -new file mode 100644 -index 0000000..b4da131 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at -new file mode 100644 -index 0000000..fba52ca -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i -new file mode 100644 -index 0000000..16ac96a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab -new file mode 100644 -index 0000000..883027f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream -new file mode 100644 -index 0000000..56f79e2 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len -new file mode 100644 -index 0000000..2ed08d0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len -new file mode 100644 -index 0000000..8fe89d8 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at -new file mode 100644 -index 0000000..ddb8127 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i -new file mode 100644 -index 0000000..e93d8e8 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab -new file mode 100644 -index 0000000..89f50e3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream -new file mode 100644 -index 0000000..7c02fb8 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len -new file mode 100644 -index 0000000..4a028d6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len -new file mode 100644 -index 0000000..b4da131 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at -new file mode 100644 -index 0000000..ef70dc6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i -new file mode 100644 -index 0000000..9606f53 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab -new file mode 100644 -index 0000000..a411059 ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab -@@ -0,0 +1,2 @@ -+48 -+0 -\ No newline at end of file -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab -new file mode 100644 -index 0000000..72d8b57 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream -new file mode 100644 -index 0000000..30d5b0e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len -new file mode 100644 -index 0000000..d2c5398 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len -new file mode 100644 -index 0000000..b4da131 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at -new file mode 100644 -index 0000000..f4f6b58 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i -new file mode 100644 -index 0000000..16ac96a -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab -new file mode 100644 -index 0000000..c389fe0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream -new file mode 100644 -index 0000000..8ecabd9 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len -new file mode 100644 -index 0000000..7274ac0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len -new file mode 100644 -index 0000000..b4da131 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at -new file mode 100644 -index 0000000..f70fa2b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i -new file mode 100644 -index 0000000..ccc232f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len -new file mode 100644 -index 0000000..131e265 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab -new file mode 100644 -index 0000000..b7bc782 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream -new file mode 100644 -index 0000000..ea29378 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len -new file mode 100644 -index 0000000..dbd6935 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len -new file mode 100644 -index 0000000..55f6d90 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at -new file mode 100644 -index 0000000..2c23939 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i -new file mode 100644 -index 0000000..93d9dc5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len -new file mode 100644 -index 0000000..4424406 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin -new file mode 100644 -index 0000000..2e6e20f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin -new file mode 100644 -index 0000000..68ff624 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin -new file mode 100644 -index 0000000..aa21d02 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-gesture-handler/android/build/outputs/logs/manifest-merger-debug-report.txt -new file mode 100644 -index 0000000..801edae ---- /dev/null -+++ b/node_modules/react-native-gesture-handler/android/build/outputs/logs/manifest-merger-debug-report.txt -@@ -0,0 +1,16 @@ -+-- Merging decision tree log --- -+manifest -+ADDED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml:1:1-72 -+INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml:1:1-72 -+ package -+ INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml -+ xmlns:android -+ ADDED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml:1:11-69 -+uses-sdk -+INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml reason: use-sdk injection requested -+INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml -+INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml -+ android:targetSdkVersion -+ INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml -+ android:minSdkVersion -+ INJECTED from /Users/otavio.stasiak/Documents/rocketchat/Rocket.Chat.ReactNative/node_modules/react-native-gesture-handler/android/src/main/AndroidManifest.xml -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-gesture-handler/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin -new file mode 100644 -index 0000000..3769e5e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/META-INF/react-native-gesture-handler_debug.kotlin_module b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/META-INF/react-native-gesture-handler_debug.kotlin_module -new file mode 100644 -index 0000000..dfb30f0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/META-INF/react-native-gesture-handler_debug.kotlin_module differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class -new file mode 100644 -index 0000000..6bb5f72 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/RNGestureHandlerPackage.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class -new file mode 100644 -index 0000000..27d4185 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReactContextExtensionsKt.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class -new file mode 100644 -index 0000000..5c76edc -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/ReanimatedEventDispatcher.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/DiagonalDirections.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/DiagonalDirections.class -new file mode 100644 -index 0000000..f2f7932 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/DiagonalDirections.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class -new file mode 100644 -index 0000000..7af9bba -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler.class -new file mode 100644 -index 0000000..90338b4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/FlingGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class -new file mode 100644 -index 0000000..39fae9e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$AdaptEventException.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class -new file mode 100644 -index 0000000..0550bfe -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class -new file mode 100644 -index 0000000..236bcd4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler$PointerData.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler.class -new file mode 100644 -index 0000000..3ba1426 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class -new file mode 100644 -index 0000000..63360cf -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerInteractionController.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class -new file mode 100644 -index 0000000..d16d344 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class -new file mode 100644 -index 0000000..6e922b0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator$WhenMappings.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class -new file mode 100644 -index 0000000..2ee7fe8 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class -new file mode 100644 -index 0000000..9e32f51 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureHandlerRegistry.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureUtils.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureUtils.class -new file mode 100644 -index 0000000..cdde93f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/GestureUtils.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class -new file mode 100644 -index 0000000..1891a1e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler.class -new file mode 100644 -index 0000000..37c22e7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/HoverGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class -new file mode 100644 -index 0000000..c0d9f2d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class -new file mode 100644 -index 0000000..488d090 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/LongPressGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ManualGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ManualGestureHandler.class -new file mode 100644 -index 0000000..6a4b4e5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ManualGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class -new file mode 100644 -index 0000000..72ab1ee -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion$defaultHook$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class -new file mode 100644 -index 0000000..76c275d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class -new file mode 100644 -index 0000000..c321c72 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$EditTextHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class -new file mode 100644 -index 0000000..80b55e0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook$DefaultImpls.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class -new file mode 100644 -index 0000000..ebe6535 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$NativeViewGestureHandlerHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class -new file mode 100644 -index 0000000..a172437 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ReactViewGroupHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class -new file mode 100644 -index 0000000..202c055 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$ScrollViewHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class -new file mode 100644 -index 0000000..893059e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$SwipeRefreshLayoutHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class -new file mode 100644 -index 0000000..0dff367 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler$TextViewHook.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class -new file mode 100644 -index 0000000..921ebbf -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/NativeViewGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/OnTouchEventListener.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/OnTouchEventListener.class -new file mode 100644 -index 0000000..a1701b6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/OnTouchEventListener.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class -new file mode 100644 -index 0000000..c9a119f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler.class -new file mode 100644 -index 0000000..2755614 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PanGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class -new file mode 100644 -index 0000000..474a8c4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler$gestureListener$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler.class -new file mode 100644 -index 0000000..ebabc3c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PinchGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PointerEventsConfig.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PointerEventsConfig.class -new file mode 100644 -index 0000000..8195414 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/PointerEventsConfig.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class -new file mode 100644 -index 0000000..fd49651 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector$OnRotationGestureListener.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector.class -new file mode 100644 -index 0000000..9b8aee6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureDetector.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class -new file mode 100644 -index 0000000..c4c115f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class -new file mode 100644 -index 0000000..6b58177 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler$gestureListener$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler.class -new file mode 100644 -index 0000000..3486ba3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/RotationGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData$Companion.class -new file mode 100644 -index 0000000..238f0ad -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData.class -new file mode 100644 -index 0000000..98081c5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/StylusData.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class -new file mode 100644 -index 0000000..8d84545 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler.class -new file mode 100644 -index 0000000..079a2ad -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/TapGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector$Companion.class -new file mode 100644 -index 0000000..301dfa7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector.class -new file mode 100644 -index 0000000..c6b3cab -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/Vector.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class -new file mode 100644 -index 0000000..67d4157 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/core/ViewConfigurationHelper.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/ExtensionsKt.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/ExtensionsKt.class -new file mode 100644 -index 0000000..cc22ec6 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/ExtensionsKt.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class -new file mode 100644 -index 0000000..cd5ba20 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class -new file mode 100644 -index 0000000..9c08fe0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$ButtonViewGroup.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class -new file mode 100644 -index 0000000..e3e1c08 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class -new file mode 100644 -index 0000000..64d51fc -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class -new file mode 100644 -index 0000000..6a3467b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEnabledRootView.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class -new file mode 100644 -index 0000000..fd04c66 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class -new file mode 100644 -index 0000000..c37b3b0 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class -new file mode 100644 -index 0000000..e714869 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class -new file mode 100644 -index 0000000..d2afc82 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerInteractionManager.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class -new file mode 100644 -index 0000000..1553bd3 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class -new file mode 100644 -index 0000000..e0f060c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$FlingGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class -new file mode 100644 -index 0000000..44f64ca -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class -new file mode 100644 -index 0000000..74f52b7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$HoverGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class -new file mode 100644 -index 0000000..9b4fc4c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$LongPressGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class -new file mode 100644 -index 0000000..fa9fa17 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$ManualGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class -new file mode 100644 -index 0000000..32d903b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$NativeViewGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class -new file mode 100644 -index 0000000..8a505a2 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PanGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class -new file mode 100644 -index 0000000..5e16237 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$PinchGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class -new file mode 100644 -index 0000000..8a31819 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$RotationGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class -new file mode 100644 -index 0000000..12286a2 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$TapGestureHandlerFactory.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class -new file mode 100644 -index 0000000..7282cfa -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule$eventListener$1.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class -new file mode 100644 -index 0000000..f58792b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerModule.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class -new file mode 100644 -index 0000000..82ae1ce -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRegistry.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class -new file mode 100644 -index 0000000..7e33f8f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class -new file mode 100644 -index 0000000..eb3d177 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper$RootViewGestureHandler.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class -new file mode 100644 -index 0000000..2dae260 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootHelper.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class -new file mode 100644 -index 0000000..a3b0e09 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootInterface.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class -new file mode 100644 -index 0000000..050cc04 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class -new file mode 100644 -index 0000000..ed8b7c8 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootView.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class -new file mode 100644 -index 0000000..157e5ee -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class -new file mode 100644 -index 0000000..e12c9fe -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerRootViewManager.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class -new file mode 100644 -index 0000000..33da11d -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class -new file mode 100644 -index 0000000..bf8fa3c -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerStateChangeEvent.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class -new file mode 100644 -index 0000000..f0cdb5f -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent$Companion.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class -new file mode 100644 -index 0000000..02e87b7 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNGestureHandlerTouchEvent.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class -new file mode 100644 -index 0000000..5bd04ca -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper$WhenMappings.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class -new file mode 100644 -index 0000000..e25a1e5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/RNViewConfigurationHelper.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..44e01f5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/FlingGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..1236c66 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/GestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..1665e6b -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/HoverGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..0646a1e -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/LongPressGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..3e60a26 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/ManualGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..cb7cbed -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/NativeGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..52450de -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PanGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..307e8e4 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/PinchGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..ac5e201 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/RotationGestureHandlerEventDataBuilder.class differ -diff --git a/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class -new file mode 100644 -index 0000000..711d7b5 -Binary files /dev/null and b/node_modules/react-native-gesture-handler/android/build/tmp/kotlin-classes/debug/com/swmansion/gesturehandler/react/eventbuilders/TapGestureHandlerEventDataBuilder.class differ diff --git a/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.mm b/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.mm index 2296c39..0a872ba 100644 --- a/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.mm +++ b/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.mm -@@ -50,6 +50,8 @@ - if (self) { - _hitTestEdgeInsets = UIEdgeInsetsZero; - _userEnabled = YES; -+ self.isAccessibilityElement = YES; -+ self.accessibilityTraits = self.accessibilityTraits | UIAccessibilityTraitButton; - #if !TARGET_OS_TV && !TARGET_OS_OSX - [self setExclusiveTouch:YES]; - #endif -@@ -57,6 +59,11 @@ - return self; - } - -+- (BOOL)canBecomeFirstResponder -+{ -+ return self.userEnabled && self.enabled && self.userInteractionEnabled; -+} -+ - - (BOOL)shouldHandleTouch:(RNGHUIView *)view - { - if ([view isKindOfClass:[RNGestureHandlerButton class]]) { -@@ -82,6 +89,52 @@ +@@ -89,6 +89,52 @@ } #if !TARGET_OS_OSX From ef439b88f582f0a56684f791ffd46e7d3dc30c0b Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 26 Mar 2026 16:11:00 -0300 Subject: [PATCH 043/108] fix: improve switch navigation --- app/views/DisplayPrefsView.tsx | 1 + app/views/SecurityPrivacyView.tsx | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/views/DisplayPrefsView.tsx b/app/views/DisplayPrefsView.tsx index 54c00e4a31e..22ced03e1c8 100644 --- a/app/views/DisplayPrefsView.tsx +++ b/app/views/DisplayPrefsView.tsx @@ -118,6 +118,7 @@ const DisplayPrefsView = (): React.ReactElement => { title='Avatars' testID='display-pref-view-avatars' right={() => renderAvatarSwitch(showAvatar)} + onPress={toggleAvatar} additionalAccessibilityLabel={showAvatar} accessibilityRole='switch' /> diff --git a/app/views/SecurityPrivacyView.tsx b/app/views/SecurityPrivacyView.tsx index d87ac03a26c..94a5a0dbc31 100644 --- a/app/views/SecurityPrivacyView.tsx +++ b/app/views/SecurityPrivacyView.tsx @@ -95,14 +95,18 @@ const SecurityPrivacyView = ({ navigation }: ISecurityPrivacyViewProps): JSX.Ele title='Log_analytics_events' testID='security-privacy-view-analytics-events' right={() => } + onPress={() => toggleAnalyticsEvents(!analyticsEventsState)} additionalAccessibilityLabel={analyticsEventsState} + accessibilityRole='switch' /> } - additionalAccessibilityLabel={analyticsEventsState} + onPress={() => toggleCrashReport(!crashReportState)} + additionalAccessibilityLabel={crashReportState} + accessibilityRole='switch' /> From 6f21bbab452c5fce6b798e697cc1ea9025cc9433 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 26 Mar 2026 16:58:38 -0300 Subject: [PATCH 044/108] fix: tests --- app/containers/Touch.tsx | 31 ++++++++++--------------------- 1 file changed, 10 insertions(+), 21 deletions(-) diff --git a/app/containers/Touch.tsx b/app/containers/Touch.tsx index 8760e77144f..1f062ecaac1 100644 --- a/app/containers/Touch.tsx +++ b/app/containers/Touch.tsx @@ -1,18 +1,17 @@ import React from 'react'; +import { RectButton, type RectButtonProps } from 'react-native-gesture-handler'; import { View, - Pressable, StyleSheet, type ViewStyle, type StyleProp, - type PressableProps, type AccessibilityActionEvent, type AccessibilityActionInfo } from 'react-native'; import { useTheme } from '../theme'; -export interface ITouchProps extends Omit { +export interface ITouchProps extends RectButtonProps { children: React.ReactNode; accessible?: boolean; accessibilityLabel?: string; @@ -21,19 +20,15 @@ export interface ITouchProps extends Omit onAccessibilityAction?: (event: AccessibilityActionEvent) => void; testID?: string; rectButtonStyle?: StyleProp; - underlayColor?: string; - activeOpacity?: number; disabled?: boolean; - style?: StyleProp; } -const Touch = React.forwardRef, ITouchProps>( +const Touch = React.forwardRef, ITouchProps>( ( { children, onPress, underlayColor, - activeOpacity = 1, accessible, accessibilityLabel, accessibilityHint, @@ -78,21 +73,15 @@ const Touch = React.forwardRef, ITouchProps>( marginTop }; return ( - [ - rectButtonStyle, - marginStyles, - { - backgroundColor: pressed ? underlayColor || colors.surfaceNeutral : backgroundColor, - borderRadius, - opacity: pressed ? activeOpacity : 1 - } - ]} + activeOpacity={1} + underlayColor={underlayColor || colors.surfaceNeutral} + rippleColor={colors.surfaceNeutral} + style={[rectButtonStyle, marginStyles, { backgroundColor, borderRadius }]} {...props} - disabled={disabled}> + enabled={!disabled}> , ITouchProps>( style={viewStyle}> {children} - + ); } ); From bfb8ed998b672c292b6f9b198a41aa2b49ce0026 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 26 Mar 2026 19:09:51 -0300 Subject: [PATCH 045/108] fix: test --- .../Avatar/__snapshots__/Avatar.test.tsx.snap | 70 +- .../__snapshots__/DirectoryItem.test.tsx.snap | 560 +- .../NotifierComponent.test.tsx.snap | 560 +- .../List/__snapshots__/List.test.tsx.snap | 1674 +- .../__snapshots__/LoginServices.test.tsx.snap | 280 +- .../__snapshots__/RoomItem.test.tsx.snap | 4250 +- .../__snapshots__/ServerItem.test.tsx.snap | 564 +- .../__snapshots__/TextInput.test.tsx.snap | 149 +- .../__snapshots__/UiKitMessage.test.tsx.snap | 70 +- .../__snapshots__/UiKitModal.test.tsx.snap | 560 +- .../__snapshots__/Message.test.tsx.snap | 34846 ++++++++-------- .../CannedResponseItem.test.tsx.snap | 144 +- .../__snapshots__/Item.test.tsx.snap | 560 +- .../ServersHistoryItem.test.tsx.snap | 574 +- .../__snapshots__/LoadMore.test.tsx.snap | 2171 +- .../__snapshots__/Item.test.tsx.snap | 1680 +- 16 files changed, 25019 insertions(+), 23693 deletions(-) diff --git a/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap b/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap index 46651f8208f..a4fe18c8b84 100644 --- a/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap +++ b/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap @@ -835,40 +835,24 @@ exports[`Story Snapshots: Touchable should match snapshot 1`] = ` } testID="avatar" > - + - + `; diff --git a/app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap b/app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap index 179fa79de2a..3f8cb65864b 100644 --- a/app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap +++ b/app/containers/DirectoryItem/__snapshots__/DirectoryItem.test.tsx.snap @@ -14,40 +14,24 @@ exports[`Story Snapshots: CustomStyle should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - + @@ -250,7 +252,7 @@ exports[`Story Snapshots: CustomStyle should match snapshot 1`] = ` - + @@ -270,40 +272,24 @@ exports[`Story Snapshots: Default should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - + @@ -504,7 +508,7 @@ exports[`Story Snapshots: Default should match snapshot 1`] = ` - + @@ -524,40 +528,24 @@ exports[`Story Snapshots: DirectMessage should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - + @@ -727,7 +733,7 @@ exports[`Story Snapshots: DirectMessage should match snapshot 1`] = ` - + @@ -747,40 +753,24 @@ exports[`Story Snapshots: LongRoomName should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - + @@ -1000,7 +1008,7 @@ exports[`Story Snapshots: LongRoomName should match snapshot 1`] = ` - + @@ -1020,40 +1028,24 @@ exports[`Story Snapshots: OnlyTitle should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - + @@ -1165,7 +1175,7 @@ exports[`Story Snapshots: OnlyTitle should match snapshot 1`] = ` - + @@ -1185,40 +1195,24 @@ exports[`Story Snapshots: TeamMain should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - + @@ -1419,7 +1431,7 @@ exports[`Story Snapshots: TeamMain should match snapshot 1`] = ` - + @@ -1439,40 +1451,24 @@ exports[`Story Snapshots: WithRightLabel should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - + @@ -1692,7 +1706,7 @@ exports[`Story Snapshots: WithRightLabel should match snapshot 1`] = ` - + @@ -1712,40 +1726,24 @@ exports[`Story Snapshots: WithoutDescription should match snapshot 1`] = ` accessible={true} importantForAccessibility="yes" > - + @@ -1913,7 +1929,7 @@ exports[`Story Snapshots: WithoutDescription should match snapshot 1`] = ` - + diff --git a/app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap b/app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap index 07fc6643e34..8d1472aa1b2 100644 --- a/app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap +++ b/app/containers/InAppNotification/__snapshots__/NotifierComponent.test.tsx.snap @@ -23,27 +23,13 @@ exports[`Story Snapshots: ChannelMessage should match snapshot 1`] = ` ] } > - + - - + + @@ -285,7 +289,7 @@ exports[`Story Snapshots: ChannelMessage should match snapshot 1`] = `  - + `; @@ -312,27 +316,13 @@ exports[`Story Snapshots: DirectMessage should match snapshot 1`] = ` ] } > - + - - + + @@ -574,7 +582,7 @@ exports[`Story Snapshots: DirectMessage should match snapshot 1`] = `  - + `; @@ -601,27 +609,13 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` ] } > - + - - + + @@ -863,7 +875,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = `  - + `; @@ -890,27 +902,13 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` ] } > - + - - + + @@ -1152,6 +1168,6 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = `  - + `; diff --git a/app/containers/List/__snapshots__/List.test.tsx.snap b/app/containers/List/__snapshots__/List.test.tsx.snap index ae377263caf..2be6919ee62 100644 --- a/app/containers/List/__snapshots__/List.test.tsx.snap +++ b/app/containers/List/__snapshots__/List.test.tsx.snap @@ -702,41 +702,24 @@ exports[`Story Snapshots: Icon should match snapshot 1`] = ` `; exports[`Story Snapshots: ListItemWithRightContainerStyle should match snapshot 1`] = ` - + @@ -936,7 +937,7 @@ exports[`Story Snapshots: ListItemWithRightContainerStyle should match snapshot - + `; exports[`Story Snapshots: Pressable should match snapshot 1`] = ` @@ -968,41 +969,24 @@ exports[`Story Snapshots: Pressable should match snapshot 1`] = ` ] } /> - + @@ -1085,7 +1087,7 @@ exports[`Story Snapshots: Pressable should match snapshot 1`] = ` - + - + @@ -1218,7 +1221,7 @@ exports[`Story Snapshots: Pressable should match snapshot 1`] = ` - + - + @@ -1431,7 +1435,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = ` - + - + @@ -1611,7 +1616,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = ` - + - + @@ -1791,7 +1797,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = ` - + - + @@ -1990,7 +1997,7 @@ exports[`Story Snapshots: Radio should match snapshot 1`] = ` - + - + @@ -3659,7 +3667,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = ` - + - + @@ -3906,7 +3915,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = ` - + - + @@ -4228,7 +4238,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = ` - + - + @@ -4475,7 +4486,7 @@ exports[`Story Snapshots: WithBiggerFont should match snapshot 1`] = ` - + - + @@ -4839,7 +4851,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` - + - + @@ -5086,7 +5099,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` - + - + @@ -5408,7 +5422,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` - + - + @@ -5655,7 +5670,7 @@ exports[`Story Snapshots: WithBlackTheme should match snapshot 1`] = ` - + - + @@ -5930,7 +5946,7 @@ exports[`Story Snapshots: WithCustomColors should match snapshot 1`] = ` - + - + @@ -6264,7 +6281,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` - + - + @@ -6511,7 +6529,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` - + - + @@ -6833,7 +6852,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` - + - + @@ -7080,7 +7100,7 @@ exports[`Story Snapshots: WithDarkTheme should match snapshot 1`] = ` - + - + @@ -9076,7 +9097,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = ` - + - + @@ -9323,7 +9345,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = ` - + - + @@ -9645,7 +9668,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = ` - + - + @@ -9892,7 +9916,7 @@ exports[`Story Snapshots: WithSmallFont should match snapshot 1`] = ` - + + - , - , + + - , - , + + - , - , + + - , + , ] `; diff --git a/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap b/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap index 764fc2307f1..a04cc71c4f2 100644 --- a/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap +++ b/app/containers/RoomItem/__snapshots__/RoomItem.test.tsx.snap @@ -374,40 +374,24 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` } } > - + @@ -636,7 +638,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -1314,7 +1318,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -1992,7 +1998,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -2670,7 +2678,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -3348,7 +3358,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -4026,7 +4038,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -4704,7 +4718,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -5382,7 +5398,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -6060,7 +6078,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -6738,7 +6758,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , - + @@ -7416,7 +7438,7 @@ exports[`Story Snapshots: Alerts should match snapshot 1`] = ` - + , ] @@ -7492,7 +7514,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={56} + handlerTag={67} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -7611,7 +7633,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={57} + handlerTag={68} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -7713,7 +7735,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={58} + handlerTag={69} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -7795,40 +7817,24 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` } } > - + @@ -8042,7 +8066,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` - + `; @@ -8118,7 +8142,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={61} + handlerTag={73} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -8237,7 +8261,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={62} + handlerTag={74} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -8339,7 +8363,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={63} + handlerTag={75} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -8421,40 +8445,24 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` } } > - + @@ -8724,7 +8750,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` - + , - + @@ -9402,7 +9430,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` - + , - + @@ -10060,7 +10090,7 @@ exports[`Story Snapshots: CondensedRoomItem should match snapshot 1`] = ` - + , ] @@ -10137,7 +10167,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={76} + handlerTag={91} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -10256,7 +10286,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={77} + handlerTag={92} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -10358,7 +10388,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={78} + handlerTag={93} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -10440,40 +10470,24 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 } } > - + @@ -10687,7 +10719,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 - + , - + @@ -11253,7 +11287,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 - + , - + @@ -11855,7 +11891,7 @@ exports[`Story Snapshots: CondensedRoomItemWithoutAvatar should match snapshot 1 - + , ] @@ -11932,7 +11968,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={91} + handlerTag={109} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -12051,7 +12087,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={92} + handlerTag={110} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -12153,7 +12189,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={93} + handlerTag={111} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -12235,40 +12271,24 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` } } > - + @@ -12528,7 +12566,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` - + , - + @@ -13196,7 +13236,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` - + , - + @@ -13823,7 +13865,7 @@ exports[`Story Snapshots: ExpandedRoomItemWithoutAvatar should match snapshot 1` - + , ] @@ -13900,7 +13942,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={106} + handlerTag={127} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -14019,7 +14061,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={107} + handlerTag={128} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -14121,7 +14163,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={108} + handlerTag={129} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -14203,40 +14245,24 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` } } > - + @@ -14478,7 +14522,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` - + , - + @@ -15128,7 +15174,7 @@ exports[`Story Snapshots: InvitedRoom should match snapshot 1`] = ` - + , ] @@ -15205,7 +15251,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={116} + handlerTag={139} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -15324,7 +15370,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={117} + handlerTag={140} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -15426,7 +15472,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={118} + handlerTag={141} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -15508,40 +15554,24 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` } } > - + @@ -15786,7 +15834,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - + @@ -16439,7 +16489,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - + @@ -17092,7 +17144,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - + @@ -17745,7 +17799,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - + @@ -18454,7 +18510,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - + @@ -19163,7 +19221,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , - + @@ -19872,7 +19932,7 @@ exports[`Story Snapshots: LastMessage should match snapshot 1`] = ` - + , ] @@ -19949,7 +20009,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={151} + handlerTag={181} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -20068,7 +20128,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={152} + handlerTag={182} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -20170,7 +20230,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={153} + handlerTag={183} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -20252,40 +20312,24 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` } } > - + @@ -20499,7 +20561,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -21121,7 +21185,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -21743,7 +21809,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -22365,7 +22433,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -22987,7 +23057,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -23609,7 +23681,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -24231,7 +24305,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -24853,7 +24929,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -25475,7 +25553,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , - + @@ -26097,7 +26177,7 @@ exports[`Story Snapshots: OmnichannelIcon should match snapshot 1`] = ` - + , ] @@ -26174,7 +26254,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={201} + handlerTag={241} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -26293,7 +26373,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={202} + handlerTag={242} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -26395,7 +26475,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={203} + handlerTag={243} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -26477,40 +26557,24 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` } } > - + @@ -26760,7 +26842,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` - + , - + @@ -27450,7 +27534,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` - + , - + @@ -28108,7 +28194,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` - + , - + @@ -28798,7 +28886,7 @@ exports[`Story Snapshots: Tag should match snapshot 1`] = ` - + , ] @@ -28874,7 +28962,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={221} + handlerTag={265} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -28993,7 +29081,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={222} + handlerTag={266} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29095,7 +29183,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={223} + handlerTag={267} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29177,40 +29265,24 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` } } > - + @@ -29424,7 +29514,7 @@ exports[`Story Snapshots: Touch should match snapshot 1`] = ` - + `; @@ -29500,7 +29590,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={226} + handlerTag={271} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29619,7 +29709,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={227} + handlerTag={272} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29721,7 +29811,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={228} + handlerTag={273} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -29803,40 +29893,24 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` } } > - + @@ -30057,7 +30149,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - + @@ -30679,7 +30773,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - + @@ -31301,7 +31397,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - + @@ -31923,7 +32021,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - + @@ -32545,7 +32645,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - + @@ -33167,7 +33269,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - + @@ -33789,7 +33893,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - + @@ -34411,7 +34517,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , - + @@ -35033,7 +35141,7 @@ exports[`Story Snapshots: Type should match snapshot 1`] = ` - + , ] @@ -35110,7 +35218,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={271} + handlerTag={325} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -35229,7 +35337,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={272} + handlerTag={326} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -35331,7 +35439,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={273} + handlerTag={327} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -35413,40 +35521,24 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` } } > - + @@ -35667,7 +35777,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` - + , - + @@ -36296,7 +36408,7 @@ exports[`Story Snapshots: User should match snapshot 1`] = ` - + , ] diff --git a/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap b/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap index ce9eef18181..d0c4feeeb28 100644 --- a/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap +++ b/app/containers/ServerItem/__snapshots__/ServerItem.test.tsx.snap @@ -2,41 +2,25 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` [ - + - , - , + + - , - , + + - , + , ] `; @@ -665,7 +671,7 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={1} + handlerTag={4} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -748,40 +754,24 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` } } > - + - + , - + - + , ] @@ -1311,41 +1321,25 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` exports[`Story Snapshots: Themes should match snapshot 1`] = ` [ - + - , - , + + - , - , + + - , + , ] `; diff --git a/app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap b/app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap index 7738cadaa13..ca58551553e 100644 --- a/app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap +++ b/app/containers/TextInput/__snapshots__/TextInput.test.tsx.snap @@ -536,47 +536,24 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` underlineColorAndroid="transparent" value="https://open.rocket.chat/images/logo/android-chrome-512x512.png" /> - + - + @@ -1191,40 +1188,24 @@ exports[`Story Snapshots: SecureTextEntry should match snapshot 1`] = ` ] } > - + - + diff --git a/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap index 9254d86d7ae..5e2e329aa8b 100644 --- a/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap @@ -5698,27 +5698,13 @@ exports[`Story Snapshots: SectionOverflow should match snapshot 1`] = ` - + - + `; diff --git a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap index b7912e577fa..a46779159a9 100644 --- a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap @@ -2002,27 +2002,13 @@ exports[`Story Snapshots: ModalContextsDividers should match snapshot 1`] = ` - + - + , - + - + , - + - + , ] `; @@ -2478,40 +2484,24 @@ exports[`Story Snapshots: ModalDatePickerWithError should match snapshot 1`] = ` > Label - + @@ -2599,7 +2607,7 @@ exports[`Story Snapshots: ModalDatePickerWithError should match snapshot 1`] = ` - + Set a date - + @@ -2978,7 +2988,7 @@ exports[`Story Snapshots: ModalFormInput should match snapshot 1`] = ` - + , ] `; @@ -3104,7 +3114,7 @@ exports[`Story Snapshots: ModalFormTextArea should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={10} + handlerTag={15} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -3758,41 +3768,24 @@ exports[`Story Snapshots: ModalMultiSelect should match snapshot 1`] = ` > Share with... - + @@ -3885,7 +3896,7 @@ exports[`Story Snapshots: ModalMultiSelect should match snapshot 1`] = ` - + Share with... - + @@ -4018,40 +4030,24 @@ exports[`Story Snapshots: ModalMultiSelect should match snapshot 1`] = ` } } > - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -94647,40 +95257,24 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } testID="avatar" > - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -97677,40 +98305,24 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } testID="avatar" > - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -107480,40 +108150,24 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m } testID="avatar" > - + - + - + - + - + - + - + - + - + - + - + - + @@ -109025,40 +109707,24 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } testID="avatar" > - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - diego.mello - - - - Pinned a message: - - - - - - - - - - - - - - + + + + + + + + + + + + diego.mello + + + + Pinned a message: + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + - , - , + + - , + , ] `; diff --git a/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap b/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap index 7f1a5454b88..3449e2022df 100644 --- a/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap +++ b/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap @@ -16,40 +16,24 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` ] } /> - + @@ -360,7 +362,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - + @@ -718,7 +722,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - + @@ -1078,7 +1084,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - + @@ -1436,7 +1444,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - + @@ -1794,7 +1804,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` - + - + @@ -2172,41 +2184,25 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` - - + + @@ -2517,41 +2531,25 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` - - + + @@ -2862,7 +2878,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` - + - + - + , - + - + , - + - + , ] @@ -977,7 +983,7 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={7} + handlerTag={10} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -1060,40 +1066,24 @@ exports[`Story Snapshots: SwipeActions should match snapshot 1`] = ` } } > - + - + , - + - + , ] @@ -1592,7 +1602,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` activeOpacity={0.105} collapsable={false} delayLongPress={600} - handlerTag={11} + handlerTag={16} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -1675,40 +1685,24 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } } > - + - + , - + - + , - + - + , ] diff --git a/app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap b/app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap index babfddd4c87..024d83bbc1a 100644 --- a/app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap +++ b/app/views/RoomView/LoadMore/__snapshots__/LoadMore.test.tsx.snap @@ -2,41 +2,24 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` [ - + - , - , + + - , - , + + - , - , + + - , + , ] `; @@ -327,41 +331,24 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` } > - + - + @@ -519,40 +524,24 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` } testID="avatar" > - + - + - + - + - + - - + + - + @@ -1493,40 +1504,24 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` } testID="avatar" > - + - + - + - + - + - + - + - + - + - + @@ -2822,40 +2842,24 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` } testID="avatar" > - + - + - + - + - + - - + + - + @@ -3790,46 +3816,30 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` "width": 36, }, { - "marginTop": 4, - }, - ] - } - testID="avatar" - > - + + - + - + - + - + - + - + - + - + - + @@ -5125,40 +5160,24 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` } testID="avatar" > - + - + - + - + - + - - + + - + @@ -6099,40 +6140,24 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` } testID="avatar" > - + - + - + - + - + - + - + - + - + @@ -387,40 +389,24 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` } } > - + - + - + - + @@ -861,40 +867,24 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` } } > - + - + - + - + @@ -1335,40 +1345,24 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` } } > - + - + - - + + @@ -1796,40 +1810,24 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` } } > - + - + - + - + @@ -2274,40 +2292,24 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - + - + - + - + @@ -2732,40 +2754,24 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - + - + - + - + @@ -3190,40 +3216,24 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - + - + - + - + @@ -3648,40 +3678,24 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - + - + - + - + @@ -4106,40 +4140,24 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` } } > - + - + - + - + @@ -4600,40 +4638,24 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } } > - + - + - - + + @@ -5061,40 +5103,24 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } } > - + - + - - + + @@ -5522,40 +5568,24 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } } > - + - + - + Date: Fri, 27 Mar 2026 18:42:57 -0300 Subject: [PATCH 046/108] fix: tests --- .../components/Autocomplete/AutocompleteItem.tsx | 12 +++++++++--- .../components/Buttons/BaseButton.tsx | 13 +++++++------ app/containers/message/Content.tsx | 2 +- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx b/app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx index 9332fe66444..a46a09be844 100644 --- a/app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx +++ b/app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx @@ -75,14 +75,20 @@ export const AutocompleteItem = ({ item, onPress }: IAutocompleteItemProps) => { const [styles, colors] = useStyle(); const autocompleteAccessibilityLabel = getAutocompleteAccessibilityLabel(item); + const testID = `autocomplete-item-${getTestIDSuffix(item)}`; return ( onPress(item)} underlayColor={colors.buttonBackgroundPrimaryPress} style={{ backgroundColor: colors.surfaceLight }} - rippleColor={colors.buttonBackgroundPrimaryPress} - testID={`autocomplete-item-${getTestIDSuffix(item)}`}> - + rippleColor={colors.buttonBackgroundPrimaryPress}> + {item.type === '@' || item.type === '#' ? : null} {item.type === ':' ? : null} {item.type === '/' ? : null} diff --git a/app/containers/MessageComposer/components/Buttons/BaseButton.tsx b/app/containers/MessageComposer/components/Buttons/BaseButton.tsx index 737aabeac69..102f46b1ba8 100644 --- a/app/containers/MessageComposer/components/Buttons/BaseButton.tsx +++ b/app/containers/MessageComposer/components/Buttons/BaseButton.tsx @@ -27,12 +27,13 @@ export const BaseButton = ({ accessibilityLabel, icon, color, testID, onPress }: const size = 24 * fontScale; return ( - onPress()} - testID={testID} - hitSlop={hitSlop}> - + onPress()} hitSlop={hitSlop}> + diff --git a/app/containers/message/Content.tsx b/app/containers/message/Content.tsx index fb2d34fc5d4..a796d9144c4 100644 --- a/app/containers/message/Content.tsx +++ b/app/containers/message/Content.tsx @@ -80,7 +80,7 @@ const Content = React.memo( } return content ? ( - + {content} ) : null; From 20f17750206c90122af1f724659d9b1bcd806ac2 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 27 Mar 2026 18:46:22 -0300 Subject: [PATCH 047/108] fix: snapshot test --- .../MessageComposer.test.tsx.snap | 312 ++++++++++++------ .../__snapshots__/Message.test.tsx.snap | 230 +++++++++++++ .../__snapshots__/LoadMore.test.tsx.snap | 21 ++ 3 files changed, 459 insertions(+), 104 deletions(-) diff --git a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap index 1251c3e9af8..0348a44ed81 100644 --- a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap +++ b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap @@ -111,12 +111,13 @@ exports[`MessageComposer Audio tap record 1`] = ` }, ] } - testID="message-composer-delete-audio" > @@ -7711,6 +7724,7 @@ exports[`Story Snapshots: BlockQuoteLargeFont should match snapshot 1`] = ` } > @@ -8692,6 +8707,7 @@ exports[`Story Snapshots: Broadcast should match snapshot 1`] = ` } > @@ -64700,6 +64810,7 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` } > @@ -66588,6 +66702,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` } > @@ -97662,6 +97833,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > @@ -100740,6 +100918,7 @@ exports[`Story Snapshots: Pinned should match snapshot 1`] = ` } > @@ -109181,6 +109371,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } > @@ -110724,6 +110918,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma } > @@ -111882,6 +112080,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont } > @@ -115422,6 +115624,7 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` } > Date: Mon, 30 Mar 2026 15:54:05 -0300 Subject: [PATCH 048/108] fix: tests --- app/containers/message/Touchable.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/app/containers/message/Touchable.tsx b/app/containers/message/Touchable.tsx index acf3244c907..670e79f2625 100644 --- a/app/containers/message/Touchable.tsx +++ b/app/containers/message/Touchable.tsx @@ -1,5 +1,5 @@ import React, { useContext } from 'react'; -import { Pressable, type PressableProps } from 'react-native'; +import { Platform, Pressable, View, type PressableProps } from 'react-native'; import { withKeyboardFocus } from 'react-native-external-keyboard'; import MessageContext from './Context'; @@ -15,9 +15,9 @@ const RCTouchable: React.FC = React.memo(({ children, ...props }) => { 'use memo'; const { onLongPress } = useContext(MessageContext); - const { onHoverIn, onHoverOut, ...rest } = props; + const { onHoverIn, onHoverOut, testID, nativeID, ...rest } = props; - return ( + const pressable = ( = React.memo(({ children, ...props }) => { {children} ); + + if (testID == null && nativeID == null) { + return pressable; + } + + return ( + + {pressable} + + ); }); export default RCTouchable; From 2120d8300c18130c72b90e6fe504bc5b7a652962 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 30 Mar 2026 16:00:05 -0300 Subject: [PATCH 049/108] fix: snapshot --- .../__snapshots__/Message.test.tsx.snap | 31950 ++++++++-------- 1 file changed, 16134 insertions(+), 15816 deletions(-) diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 57744d2472b..28ddaee624b 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -1266,206 +1266,209 @@ exports[`Story Snapshots: AttachmentWithTextAndLink should match snapshot 1`] = } } > - - + - - Rocket.Chat - - - - + Rocket.Chat + + + - Rocket.Chat - - - , the best open source chat + + Rocket.Chat + + + , the best open source chat + - + - - + + - - + - - Rocket.Chat - - - - + Rocket.Chat + + + - Rocket.Chat - - - , the best open source chat + + Rocket.Chat + + + , the best open source chat + - + - - + + - - - -  - - + - Reply - + +  + + + Reply + + - - + + @@ -9361,142 +9370,145 @@ exports[`Story Snapshots: BroadcastLargeFont should match snapshot 1`] = ` } } > - - - -  - - + - Reply - + +  + + + Reply + + - - + + @@ -9947,175 +9959,178 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` } } > - - + + + Title collapsed + + + + - Title collapsed +  - - -  - - - - + + @@ -10500,202 +10515,134 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` } } > - - + - - Title collapsed - - - - - - Title collapsed - + Title collapsed - - - + - Field 1 + + + Title collapsed + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + + + Title collapsed + + + + - Title collapsed +  - - -  - - - - + + @@ -11927,202 +11948,134 @@ exports[`Story Snapshots: CollapsedAttachmentsLargeFont should match snapshot 1` } } > - - + - - Title collapsed - - - - - - Title collapsed - + Title collapsed - - - + - Field 1 + + + Title collapsed + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + + + Collapsed attachment block + + + + - Collapsed attachment block +  - - -  - - - - + + @@ -13356,202 +13383,134 @@ exports[`Story Snapshots: CollapsibleAttachmentWithText should match snapshot 1` } } > - - + - - Collapsed attachment block - - - - - - This attachment text should NOT appear as plain text above the message or duplicate before the block. - + Collapsed attachment block - - - + - Field 1 + + + This attachment text should NOT appear as plain text above the message or duplicate before the block. + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - - - Long field - - + Long field + + - This field value could also contribute to duplicate text when expanded. + + This field value could also contribute to duplicate text when expanded. + - + - - + + - - + + + Collapsed attachment block + + + + - Collapsed attachment block +  - - -  - - - - + + @@ -14926,202 +14959,134 @@ exports[`Story Snapshots: CollapsibleAttachmentWithTextLargeFont should match sn } } > - - + - - Collapsed attachment block - - - - - - This attachment text should NOT appear as plain text above the message or duplicate before the block. - + Collapsed attachment block - - - + - Field 1 + + + This attachment text should NOT appear as plain text above the message or duplicate before the block. + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - - - Long field - - + Long field + + - This field value could also contribute to duplicate text when expanded. + + This field value could also contribute to duplicate text when expanded. + - + - - + + - - + - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + @@ -17166,153 +17211,130 @@ exports[`Story Snapshots: ColoredAttachmentsLargeFont should match snapshot 1`] } } > - - + - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - - + + - Value 2 + + Value 2 + - + - - + + - - + - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + - + - - Field 1 - - + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + @@ -18444,203 +18498,135 @@ exports[`Story Snapshots: CustomFields should match snapshot 1`] = ` } } > - - + - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - - - Field 3 - - + Field 3 + + - Value 3 + + Value 3 + - + - - - - Field 4 - - + Field 4 + + - Value 4 + + Value 4 + - + - - - - Field 5 - - + Field 5 + + - Value 5 + + Value 5 + - + - - + + - - + - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - - - Field 3 - - + Field 3 + + - Value 3 + + Value 3 + - + - - - - Field 4 - - + Field 4 + + - Value 4 + + Value 4 + - + - - - - Field 5 - - + Field 5 + + - Value 5 + + Value 5 + - + - - + + - - - - 😂 - - - 1 - + + 😂 + + + 1 + + - - - + + - - - + - 1 - + + + 1 + + - - - + + - - - 🤔 - - - 1 - + + 🤔 + + + 1 + + - - - + + - - -  - + +  + + - - + + @@ -44560,537 +44638,549 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` } } > - - - - 😂 - - - 1 - + + 😂 + + + 1 + + - - - + + - - - + - 1 - + + + 1 + + - - - + + - - - 🤔 - - - 1 - + + 🤔 + + + 1 + + - - - + + - - -  - + +  + + - - + + @@ -49800,154 +49890,157 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] } } > - - + + + + test.py + + test.py - - test.py - - - + + - - + + + + Component.tsx + + Component.tsx - - Component.tsx - - - + + - - + + + + config.json + + config.json - - config.json - - - + + - - + - - main.go - - - - + main.go + + + - - This is the - - main + This is the - - - entry point for the application + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontWeight": "700", + "textAlign": "left", + } + } + > + + main + + + + entry point for the application + - + - - + + - - + + + + document.pdf + + document.pdf - - document.pdf - - - + + - - + + + + image.png + + image.png - - image.png - - - + + @@ -52716,154 +52824,157 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna } } > - - + + + + test.py + + test.py - - test.py - - - + + - - + + + + Component.tsx + + Component.tsx - - Component.tsx - - - + + - - + + + + config.json + + config.json - - config.json - - - + + - - + - - main.go - - - - + main.go + + + - - This is the - - main + This is the - - - entry point for the application + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontWeight": "700", + "textAlign": "left", + } + } + > + + main + + + + entry point for the application + - + - - + + - - + + + + document.pdf + + document.pdf - - document.pdf - - - + + - - + + + + image.png + + image.png - - image.png - - - + + @@ -55619,166 +55745,169 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna } } > - - + - - + - File.pdf + + File.pdf + - + - - + + - - + - - + - File.pdf + + File.pdf + - + - - + + - - + - - rocket.cat - - - 10:00 AM - + + rocket.cat + + + 10:00 AM + + - - + + @@ -80704,135 +80839,130 @@ exports[`Story Snapshots: MessageWithNestedReplyAndFile should match snapshot 1` } } > - - + - - rocket.cat - - - + + rocket.cat + + - - Nested image from forwarded message + + Nested image from forwarded message + - - - - + - + - + - + -  - - - +  + + + + /> + - - + + - - + + @@ -84249,187 +84387,190 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` } } > - - + - - I'm a very long long title and I'll break - - - - + I'm a very long long title and I'll break + + + - How are you? + + How are you? + - + - - + + - - + - - rocket.cat - - - - + rocket.cat + + + - How are you? - - - + How are you? + + - + > + + + - + - - + + - - + - - rocket.cat - - - - + rocket.cat + + + - How are you? - - - + How are you? + + - + > + + + - + - - + + - - + - - rocket.cat - - - + + rocket.cat + + - - What you think about this one? + + What you think about this one? + - - - - + - + - + - + -  - - - +  + + + + /> + - - + + - - + + @@ -86719,135 +86869,130 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` } } > - - + - - rocket.cat - - - + + rocket.cat + + - - Are you seeing this mario - - - + Are you seeing this mario + + - - - ? + > + + + + ? + - - - - + - + - + - + -  - - - +  + + + + /> + - - + + - - + + @@ -87559,174 +87712,177 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` } } > - - + - - rocket.cat - + + rocket.cat + + + script.sh + + script.sh - - script.sh - - - + + - - + - - rocket.cat - - - config.yaml - - - - + rocket.cat + + + config.yaml + + + - - This is a configuration file with - - important + This is a configuration file with - - - settings + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontWeight": "700", + "textAlign": "left", + } + } + > + + important + + + + settings + - + - - + + - - + - - rocket.cat - + + rocket.cat + + + index.ts + + index.ts - - index.ts - - - + + - - + - - rocket.cat - + + rocket.cat + + + styles.css + + styles.css - - styles.css - - - + + - - + - - rocket.cat - + + rocket.cat + + + script.sh + + script.sh - - script.sh - - - + + - - + - - rocket.cat - - - config.yaml - - - - + rocket.cat + + + config.yaml + + + - - This is a configuration file with - - important + This is a configuration file with - - - settings + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontWeight": "700", + "textAlign": "left", + } + } + > + + important + + + + settings + - + - - + + - - + - - rocket.cat - + + rocket.cat + + + index.ts + + index.ts - - index.ts - - - + + - - + - - rocket.cat - + + rocket.cat + + + styles.css + + styles.css - - styles.css - - - + + - - + - - I'm a very long long title and I'll break - - - - + I'm a very long long title and I'll break + + + - How are you? + + How are you? + - + - - + + - - + - - rocket.cat - - - - + rocket.cat + + + - How are you? - - - + How are you? + + - + > + + + - + - - + + - - + - - rocket.cat - - - + + rocket.cat + + - - What you think about this one? + + What you think about this one? + - - - - + - + - + - + -  - - - +  + + + + /> + - - + + - - + + @@ -93951,135 +94137,130 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = } } > - - + - - rocket.cat - - - + + rocket.cat + + - - Are you seeing this mario - - - + Are you seeing this mario + + - - - ? + > + + + + ? + - - - - + - + - + - + -  - - - +  + + + + /> + - - + + - - + + @@ -94845,100 +95034,103 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } } > - - - - View thread - - - + + View thread + + + + - - - - View thread - - - + + View thread + + + + - - - - 😂 - - - 1 - + + 😂 + + + 1 + + - - - + + - - - + - 99 - + + + 99 + + - - - + + - - - 🤔 - - - 999 - + + 🤔 + + + 999 + + - - - + + - - - 🤔 - - - 9999 - + + 🤔 + + + 9999 + + - - - + + - - -  - + +  + + - - + + @@ -103446,1221 +103656,1248 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` } } > - - - - + - 1 - + + + 1 + + - - - + + - - - + - 1 - + + + 1 + + - - - + + - - - + - 1 - + + + 1 + + - - - + + - - - â¤ï¸ - - - 1 - + + â¤ï¸ + + + 1 + + - - - + + - - - 🶠- - - 1 - + + 🶠+ + + 1 + + - - - + + - - - 😀 - - - 1 - + + 😀 + + + 1 + + - - - + + - - - 😬 - - - 1 - + + 😬 + + + 1 + + - - - + + - - - 😠- - - 1 - + + 😠+ + + 1 + + - - - + + - - -  - + +  + + - - + + @@ -105113,665 +105350,680 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` } } > - - - - 😂 - - - 1 - + + 😂 + + + 1 + + - - - + + - - - + - 99 - + + + 99 + + - - - + + - - - 🤔 - - - 999 - - - - - + 🤔 + + + 999 + + + + + + - - - 🤔 - - - 9999 - + + 🤔 + + + 9999 + + - - - + + - - -  - + +  + + - - + + @@ -106211,1221 +106463,1248 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` } } > - - - - + - 1 - + + + 1 + + - - - + + - - - + - 1 - + + + 1 + + - - - + + - - - + - 1 - - - - - - + + 1 + + + + + + + - - â¤ï¸ - - - 1 - + + â¤ï¸ + + + 1 + + - - - + + - - - 🶠- - - 1 - + + 🶠+ + + 1 + + - - - + + - - - 😀 - - - 1 - + + 😀 + + + 1 + + - - - + + - - - 😬 - - - 1 - + + 😬 + + + 1 + + - - - + + - - - 😠- - - 1 - + + 😠+ + + 1 + + - - - + + - - -  - + +  + + - - + + @@ -107877,100 +108156,103 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m } } > - - - - View thread - - - + + View thread + + + + - - - - View thread - - - + + View thread + + + + - - + - - Title - - - - + Title + + + - Image text + + Image text + - + - - + transition={null} + width={80} + /> + - - + + - - + - - Title - - - - + Title + + + - Image text + + Image text + - + - - + transition={null} + width={80} + /> + - - + + - - + - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + + - - rocket.cat - - - - - - Custom fields 2 - + rocket.cat - - - + - Field 1 + + + Custom fields 2 + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + - - rocket.cat - - - - - - Custom fields - + rocket.cat - - - + - Field 1 + + + Custom fields + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + - - rocket.cat - - - - - - Custom fields 2 - + rocket.cat - - - + - Field 1 + + + Custom fields 2 + + + + + Field 1 + + - Value 1 + + Value 1 + - + - - - - Field 2 - - + Field 2 + + - Value 2 + + Value 2 + - + - - + + - - + - - + - File.pdf + + File.pdf + - + - - + + - - + - - + - File.pdf + + File.pdf + - + - - + + - - + - - + - File.pdf + + File.pdf + - + - - + + - - + - - + - File.pdf + + File.pdf + - + - - + + - - + - - + - File.pdf + + File.pdf + - + - - + + Date: Tue, 31 Mar 2026 20:42:46 -0300 Subject: [PATCH 050/108] rollback --- app/containers/message/Content.tsx | 2 +- app/containers/message/Touchable.tsx | 27 ++++----------------------- 2 files changed, 5 insertions(+), 24 deletions(-) diff --git a/app/containers/message/Content.tsx b/app/containers/message/Content.tsx index a796d9144c4..fb2d34fc5d4 100644 --- a/app/containers/message/Content.tsx +++ b/app/containers/message/Content.tsx @@ -80,7 +80,7 @@ const Content = React.memo( } return content ? ( - + {content} ) : null; diff --git a/app/containers/message/Touchable.tsx b/app/containers/message/Touchable.tsx index 670e79f2625..f04fdb6b30a 100644 --- a/app/containers/message/Touchable.tsx +++ b/app/containers/message/Touchable.tsx @@ -1,6 +1,5 @@ import React, { useContext } from 'react'; -import { Platform, Pressable, View, type PressableProps } from 'react-native'; -import { withKeyboardFocus } from 'react-native-external-keyboard'; +import { Pressable, type PressableProps } from 'react-native'; import MessageContext from './Context'; @@ -9,33 +8,15 @@ interface IProps extends PressableProps { onLongPress?: () => void; } -const KeyboardPressable = withKeyboardFocus(Pressable); - const RCTouchable: React.FC = React.memo(({ children, ...props }) => { 'use memo'; const { onLongPress } = useContext(MessageContext); - const { onHoverIn, onHoverOut, testID, nativeID, ...rest } = props; - - const pressable = ( - - {children} - - ); - - if (testID == null && nativeID == null) { - return pressable; - } return ( - - {pressable} - + + {children} + ); }); From 42ac2c4d54307b1198042ec31dce4a1ac53cbf8d Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 31 Mar 2026 20:46:15 -0300 Subject: [PATCH 051/108] fix: test --- .../__snapshots__/Message.test.tsx.snap | 49179 +++++++--------- .../__snapshots__/LoadMore.test.tsx.snap | 21 - 2 files changed, 21903 insertions(+), 27297 deletions(-) diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 28ddaee624b..507b2b87037 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -369,7 +369,6 @@ exports[`Story Snapshots: Archived should match snapshot 1`] = ` } > - - - + + + + Rocket.Chat - - - - - Rocket.Chat - - - , the best open source chat - - + , the best open source chat - - + + - + @@ -1478,77 +1448,72 @@ exports[`Story Snapshots: AttachmentWithTextAndLink should match snapshot 1`] = } } > - - + - + - + - -  - - - +  + + - + @@ -2060,145 +2005,165 @@ exports[`Story Snapshots: AttachmentWithTextAndLinkLargeFont should match snapsh } > - - - + + + + Rocket.Chat - - - - - Rocket.Chat - - - , the best open source chat - - + , the best open source chat - - + + - + @@ -2271,77 +2188,72 @@ exports[`Story Snapshots: AttachmentWithTextAndLinkLargeFont should match snapsh } } > - - + - + - + - -  - - - +  + + - + @@ -2839,7 +2731,6 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` } > @@ -7730,7 +7611,6 @@ exports[`Story Snapshots: BlockQuoteLargeFont should match snapshot 1`] = ` } > @@ -8713,7 +8592,6 @@ exports[`Story Snapshots: Broadcast should match snapshot 1`] = ` } > - - - + - -  - - - Reply - - - - + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontSize": 12, + "fontWeight": "600", + "lineHeight": 16, + "textAlign": "left", + }, + { + "color": "#FFFFFF", + }, + ] + } + > + Reply + + @@ -9303,7 +9153,6 @@ exports[`Story Snapshots: BroadcastLargeFont should match snapshot 1`] = ` } > - - - + - -  - - - Reply - - - - + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontSize": 12, + "fontWeight": "600", + "lineHeight": 16, + "textAlign": "left", + }, + { + "color": "#FFFFFF", + }, + ] + } + > + Reply + + @@ -9893,7 +9714,6 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` } > - - - - - Title collapsed - - - - - -  - - + Title collapsed + - + + +  + + + @@ -10516,118 +10308,145 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` } > - - - + + + + Title collapsed - + + + + + + + Field 1 + - Title collapsed + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - + + - + - - - - - Title collapsed - - - - - -  - - + Title collapsed + - + + +  + + + @@ -11949,118 +11683,145 @@ exports[`Story Snapshots: CollapsedAttachmentsLargeFont should match snapshot 1` } > - - - + + + + Title collapsed - + + + + + + + Field 1 + - Title collapsed + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - + + - + - - - - - Collapsed attachment block - - - - - -  - - + Collapsed attachment block + - + + +  + + + @@ -13384,118 +13060,145 @@ exports[`Story Snapshots: CollapsibleAttachmentWithText should match snapshot 1` } > - - - + + + + - Collapsed attachment block + This attachment text should NOT appear as plain text above the message or duplicate before the block. - + + + + + + + Field 1 + - This attachment text should NOT appear as plain text above the message or duplicate before the block. + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - - + + + + + + Long field + + + - Long field - - - - - This field value could also contribute to duplicate text when expanded. - - + This field value could also contribute to duplicate text when expanded. - - + + - + - - - - - Collapsed attachment block - - - - - -  - - + Collapsed attachment block + - + + +  + + + @@ -14960,118 +14578,145 @@ exports[`Story Snapshots: CollapsibleAttachmentWithTextLargeFont should match sn } > - - - + + + + - Collapsed attachment block + This attachment text should NOT appear as plain text above the message or duplicate before the block. - + + + + + + + Field 1 + - This attachment text should NOT appear as plain text above the message or duplicate before the block. + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - - + + + + + + Long field + + + - Long field - - - - - This field value could also contribute to duplicate text when expanded. - - + This field value could also contribute to duplicate text when expanded. - - + + - + - + - + > + Field 1 + - - Field 1 - - - - - Value 1 - - + Value 1 - - - + + + + + + Field 2 + + + - Field 2 - - - - - Value 2 - - + Value 2 - - + + - + - + - + > + Field 1 + - - Field 1 - - - - - Value 1 - - + Value 1 - - - + + + + + + Field 2 + + + - Field 2 - - - - - Value 2 - - + Value 2 - - + + - + - + - + > + Field 1 + - - Field 1 - - - - - Value 1 - - + Value 1 - - - + + + + + + Field 2 + + + - Field 2 - - - - - Value 2 - - + Value 2 - - + + - + @@ -17212,165 +16717,165 @@ exports[`Story Snapshots: ColoredAttachmentsLargeFont should match snapshot 1`] } > - + - + > + Field 1 + - - Field 1 - - - - - Value 1 - - + Value 1 - - - + + + + + + Field 2 + + + - Field 2 - - - - - Value 2 - - + Value 2 - - + + - + - + - + > + Field 1 + - - Field 1 - - - - - Value 1 - - + Value 1 - - - + + + + + + Field 2 + + + - Field 2 - - - - - Value 2 - - + Value 2 - - + + - + - + - + > + Field 1 + - - Field 1 - - - - - Value 1 - - + Value 1 - - - + + + + + + Field 2 + + + - Field 2 - - - - - Value 2 - - + Value 2 - - + + - + @@ -18499,129 +17920,198 @@ exports[`Story Snapshots: CustomFields should match snapshot 1`] = ` } > - - - + + + + - rocket.cat + Custom fields - + + + + + + + Field 1 + - Custom fields + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - + + - + - - - + + + + - rocket.cat + Custom fields - + + + + + + + Field 1 + - Custom fields + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - - + + + + + + Field 3 + + + - Field 3 - - - - - Value 3 - - + Value 3 - - - + + + + + + Field 4 + + + - Field 4 - - - - - Value 4 - - + Value 4 - - - + + + + + + Field 5 + + + - Field 5 - - - - - Value 5 - - + Value 5 - - + + - + - - - + + + + - rocket.cat + Custom fields - + + + + + + + Field 1 + - Custom fields + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - + + - + - - - + + + + - rocket.cat + Custom fields - + + + + + + + Field 1 + - Custom fields + Value 1 - + - + + Field 2 + + - - Field 1 - - - - - - Value 1 - - - - - - + - Field 2 - - - - - Value 2 - - + Value 2 - - - + + + + + + Field 3 + + + - Field 3 - - - - - Value 3 - - + Value 3 - - - + + + + + + Field 4 + + + - Field 4 - - - - - Value 4 - - + Value 4 - - - + + + + + + Field 5 + + + - Field 5 - - - - - Value 5 - - + Value 5 - - + + - + - + - +  + + - -  - - - No messages yet - - + No messages yet + - + - + - +  + + - -  - - - 1 message - - + 1 message + - + - + - +  + + - -  - - - 10 messages - - + 10 messages + - + - + - +  + + - -  - - - +999 messages - - + +999 messages + - + - + - +  + + - -  - - - No messages yet - - + No messages yet + - + - + - +  + + - -  - - - 1 message - - + 1 message + - + - + - +  + + - -  - - - 10 messages - - + 10 messages + - + - + - +  + + - -  - - - +999 messages - - + +999 messages + - + - - - -  - - - - - - - - - - - Message - - +  - - - - - - - - - - - - - - - - - - - - Message Encrypted without Header + Message @@ -39213,109 +38077,270 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` + + + + + + + + + + + + + + + - + + + + + + Message Encrypted without Header + + + + + + + + + + + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + @@ -39675,102 +38700,77 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` } } > - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + 😂 + + - - - 😂 - - - 1 - - - - + 1 + + - - + - - - - 1 - - - - + 1 + + - - + 🤔 + + - - - 🤔 - - - 1 - - - - + 1 + + - - - - -  - - - - +  + + @@ -40749,7 +39636,6 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` } > - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - - - +  + + + + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + @@ -44445,102 +43124,77 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` } } > - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + 😂 + + - - - 😂 - - - 1 - - - - + 1 + + - - + - - - - 1 - - - - + 1 + + - - + 🤔 + + - - - 🤔 - - - 1 - - - - + 1 + + - - - - -  - - - - +  + + @@ -45538,7 +44079,6 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` } > - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - - - +  + + + + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + @@ -49079,102 +47412,77 @@ exports[`Story Snapshots: ErrorLargeFont should match snapshot 1`] = ` } } > - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + @@ -49891,160 +48172,131 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] } > - - - - - test.py - - - - test.py - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + test.py + + + test.py + - + - - - - - Component.tsx - - - - Component.tsx - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + Component.tsx + + + Component.tsx + - + - - - - - config.json - - - - config.json - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + config.json + + + config.json + - + - - - + + + + - main.go + This is the - - + > + + main + + - - - This is the - - - - main - - - - entry point for the application - - + entry point for the application - - + + - + - - - - - document.pdf - - - - document.pdf - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + document.pdf + + + document.pdf + - + - - - - - image.png - - - - image.png - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + image.png + + + image.png + - + @@ -52825,160 +50934,131 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna } > - - - - - test.py - - - - test.py - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + test.py + + + test.py + - + - - - - - Component.tsx - - - - Component.tsx - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + Component.tsx + + + Component.tsx + - + - - - - - config.json - - - - config.json - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + config.json + + + config.json + - + - - - + + + + - main.go + This is the - - + > + + main + + - - - This is the - - - - main - - - - entry point for the application - - + entry point for the application - - + + - + - - - - - document.pdf - - - - document.pdf - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + document.pdf + + + document.pdf + - + - - - - - image.png - - - - image.png - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + image.png + + + image.png + - + @@ -55746,125 +53683,125 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna } > - + - - - - - - File.pdf - - + File.pdf - - + + - + - + - - - - - - File.pdf - - + File.pdf - - + + - + + + Message ignored. Tap to display it. + + + + + + + + + + + + +`; + +exports[`Story Snapshots: IgnoredLargeFont should match snapshot 1`] = ` + + + + + + + + + + + - - Message ignored. Tap to display it. - - - - - - - - - - - - -`; - -exports[`Story Snapshots: IgnoredLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + @@ -64942,7 +62800,6 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` } > @@ -66834,7 +64688,6 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` } > - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - - -  - - - - -  - - - - - - î§š - - - - + +  + + + + +  + + + + + î§š + + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - - -  - - - - -  +  + + + + +  + + + + + î§š - - - - î§š - - - - - + - -  - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + - - + - - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - - -  - - - - -  +  - - - + + + - î§š - - - + undefined, + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > + î§š + + - - - + - - rocket.cat - - - 10:00 AM - - - + "backgroundColor": "transparent", + "fontFamily": "Inter", + "fontSize": 13, + "fontWeight": "400", + "lineHeight": 18, + "textAlign": "left", + }, + { + "color": "#6C727A", + }, + ] + } + > + 10:00 AM + - + @@ -80766,7 +78115,6 @@ exports[`Story Snapshots: MessageWithNestedReplyAndFile should match snapshot 1` } > - + + rocket.cat + + + - rocket.cat + + + Nested image from forwarded message + + - + - - - Nested image from forwarded message - - - - - + - - - - - - -  - - - - - - +  + + + - + @@ -81639,7 +78934,6 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` } > + + + + + + I'm fine! + + + + + + + + + + +  + + + + + + + + + + + + + + + + + + + - - - - - I'm fine! - - - - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - - - î§£ - - - - - 10:00 AM - - - + + + + + + + + + + + + + + diego.mello + + + + + + î§£ + + + + + 10:00 AM + + + - - - + + + - - I'm a very long long title and I'll break - - - + - - - How are you? - - + How are you? - - + + - + - - - + + + + - rocket.cat + How are you? - - - - - - How are you? - - - - - - - - + } + transition={null} + width={15} + /> + + + - + - - - + + + + - rocket.cat + How are you? - - - - - - How are you? - - - - - - - - + } + transition={null} + width={15} + /> + + + - + - + + rocket.cat + + + - rocket.cat + + + What you think about this one? + + - + - - - What you think about this one? - - - - - + - - - - - - -  - - - - - - +  + + + - + @@ -86796,7 +83943,6 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` } > - + + rocket.cat + + + - rocket.cat - - - - - - + + - - Are you seeing this mario - - - - - - ? - - + } + transition={null} + width={15} + /> + + + ? - - + + + + + - + + + - - - - - -  - - - - - - +  + + + - + @@ -87713,180 +84806,151 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` } > - - - + - - rocket.cat - - - script.sh - - - - script.sh - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + script.sh + + + script.sh + - + - - - + + config.yaml + + + + + - rocket.cat + This is a configuration file with - config.yaml + + important + - - - - - This is a configuration file with - - - - important - - - - settings - - + settings - - + + - + - - - + - - rocket.cat - - - index.ts - - - - index.ts - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + index.ts + + + index.ts + - + - - - + - - rocket.cat - - - styles.css - - - - styles.css - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + styles.css + + + styles.css + - + - - - + - - rocket.cat - - - script.sh - - - - script.sh - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + script.sh + + + script.sh + - + - - - + + config.yaml + + + + + - rocket.cat + This is a configuration file with - config.yaml + + important + - - - - - This is a configuration file with - - - - important - - - - settings - - + settings - - + + - + - - - + - - rocket.cat - - - index.ts - - - - index.ts - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + index.ts + + + index.ts + - + - - - + - - rocket.cat - - - styles.css - - - - styles.css - - + "fontFamily": "Inter", + "fontSize": 16, + "fontWeight": "500", + "textAlign": "left", + }, + { + "color": "#2F343D", + }, + ] + } + > + styles.css + + + styles.css + - + - - - + + + - - I'm a very long long title and I'll break - - - + - - - How are you? - - + How are you? - - + + - + - - - + + + + - rocket.cat + How are you? - - - - - - How are you? - - - - - - - - + } + transition={null} + width={15} + /> + + + - + - + + rocket.cat + + + - rocket.cat + + + What you think about this one? + + - + - - - What you think about this one? - - - - - + - - - - - - -  - - - - - - +  + + + - + @@ -94064,7 +90815,6 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = } > - + + rocket.cat + + + - rocket.cat - - - - - - + + - - Are you seeing this mario - - - - - - ? - - + } + transition={null} + width={15} + /> + + + ? - - + + + + + - + + + - - - - - -  - - - - - - +  + + + - + @@ -94967,7 +91664,6 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` } > - - - - View thread - - - + View thread + @@ -98025,7 +94687,6 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = } > - - + + + + + + {}, + ] + } + > + î§Š + - View thread - - - - - - - - - î§Š - - - 1 + 1 + + I'm fine! + + + + + + + + + + + + + + + + + + + î§Š + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + +  + + + + + + + - - I'm fine! - - - - - - - - - - - - - - - - - - - î§Š - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - -  - - - - - - - - - - - - - - - - - + + + + + + + + + + @@ -101113,7 +97740,6 @@ exports[`Story Snapshots: Pinned should match snapshot 1`] = ` } > - - + 😂 + + - - - 😂 - - - 1 - - - - + 1 + + - - + - - - - 99 - - - - + 99 + + - - + 🤔 + + - - - 🤔 - - - 999 - - - - + 999 + + - - + 🤔 + + - - - 🤔 - - - 9999 - - - - + 9999 + + - - - - -  - - - - +  + + @@ -103588,7 +100070,6 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` } > - - + - - - - 1 - - - - + 1 + + - - + - - - - 1 - - - - + 1 + + - - + - - - - 1 - - - - + 1 + + - - + â¤ï¸ + + - - - â¤ï¸ - - - 1 - - - - + 1 + + - - + 🶠+ + - - - 🶠- - - 1 - - - - + 1 + + - - + 😀 + + - - - 😀 - - - 1 - - - - + 1 + + - - + 😬 + + - - - 😬 - - - 1 - - - - + 1 + + - - + 😠+ + - - - 😠- - - 1 - - - - + 1 + + - - - - -  - - - - +  + + @@ -105282,7 +101511,6 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` } > - - + 😂 + + - - - 😂 - - - 1 - - - - + 1 + + - - + - - - - 99 - - - - + 99 + + - - + 🤔 + + - - - 🤔 - - - 999 - - - - + 999 + + - - + 🤔 + + - - - 🤔 - - - 9999 - - - - + 9999 + + - - - - -  - - - - +  + + @@ -106395,7 +102483,6 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` } > - - + - - - - 1 - - - - + 1 + + - - - - - - 1 - - - - - - - - + - - - - 1 - - - - + 1 + + - - + - - - â¤ï¸ - - - 1 - - - - + 1 + + - - + â¤ï¸ + + + 1 + + + + + + + 🶠+ + - - - 🶠- - - 1 - - - - + 1 + + - - + 😀 + + - - - 😀 - - - 1 - - - - + 1 + + - - + 😬 + + - - - 😬 - - - 1 - - - - + 1 + + - - + 😠+ + - - - 😠- - - 1 - - - - + 1 + + - - - - -  - - - - +  + + @@ -108089,7 +103924,6 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m } > - - - - View thread - - - + View thread + @@ -109653,7 +105456,6 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } > - - - - View thread - - - + View thread + @@ -111203,7 +106974,6 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma } > @@ -112365,7 +108132,6 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont } > @@ -115909,7 +111672,6 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` } > - - - + + + - - Title - - - + - - - Image text - - + Image text - - - + + - + + - - - + + + - - Title - - - + - - - Image text - - + Image text - - - + + - + + - - - + + + + - rocket.cat + Custom fields - + + + + + + + Field 1 + - Custom fields - - - - - - - - Field 1 - - - - - - Value 1 - - + Value 1 - - - + + + + + + Field 2 + + + - Field 2 - - - - - Value 2 - - + Value 2 - - + + - + - - - + + + + - rocket.cat + Custom fields 2 - + + + + + + + Field 1 + - Custom fields 2 + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - + + - + - - - + + + + - rocket.cat + Custom fields - + + + + + + + Field 1 + - Custom fields + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - + Value 2 - - - - - Field 2 - - - - - Value 2 - - - - - + - + - - - + + + + - rocket.cat + Custom fields 2 - + + + + + + + Field 1 + - Custom fields 2 + Value 1 + + + + Field 2 + - - Field 1 - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - + Value 2 - - + + - + - + - + Rocket.Chat - Free, Open Source, Enterprise Team Chat + + - - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - - + Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. + - - + + - + Google + + - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + - + @@ -135464,7 +130997,6 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` } > - + - + Google + + - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + - + @@ -135817,129 +131324,104 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` } } > - + - + Google + + - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + - + @@ -136329,129 +131811,104 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` } } > - + - + Google + + - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + - + @@ -136821,72 +132278,47 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` } } > - - - + /> @@ -137269,129 +132701,104 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` } } > - + - + Google + + - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + - + @@ -137761,72 +133168,47 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` } } > - - - + /> @@ -138209,252 +133591,202 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` } } > - + - + Rocket.Chat - Free, Open Source, Enterprise Team Chat + + - - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - - + Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. + - - + + - + Google + + - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + - + @@ -138825,7 +134157,6 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` } > - + - + Google + + - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + - + @@ -139178,129 +134484,104 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` } } > - + - + Google + + - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - + Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. + - + @@ -139710,7 +134991,6 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` } > + + + + + + Message + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - Message - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Diego Mello - - @ - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - - - - - 10:00 AM - - - + + + + + + + + + + + + + + Diego Mello + + @ + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + + + + + + 10:00 AM + + + - + - - - - - - File.pdf - - + File.pdf - - + + - + - + - - - - - - File.pdf - - + File.pdf - - + + - + - + - - - - - - File.pdf - - + File.pdf - - + + - + - + - - - - - - File.pdf - - + File.pdf - - + + - + - + - - - - - - File.pdf - - + File.pdf - - + + - + - - + - + - + - -  - - - +  + + - + @@ -150306,7 +145415,6 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` } > - - + - + - + - -  - - - +  + + - + - - - - - - - -  - - - - - - - - - + + + + + + + +  + + + + + @@ -151509,7 +146542,6 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` } > - - + - + - + - -  - - - +  + + - - + - + - + - + - -  - - - +  + + - + @@ -152426,77 +147408,72 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` - - + - + - + - - - + - + @@ -153050,77 +148007,72 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` - - + - + - + - -  - - - +  + + - + @@ -153432,77 +148364,72 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` - - + - + - + - -  - - - +  + + - + @@ -153995,7 +148902,6 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` } > - - + - + - + - -  - - - +  + + - - + - + - + - + - -  - - - +  + + - + @@ -154912,77 +149768,72 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` - - + - + - + - - - + - + @@ -155580,150 +150411,125 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` - - + - + - -  - - +  + - + @@ -155922,150 +150728,125 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` - - + - + - -  - - +  + - + @@ -156445,7 +151226,6 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` } > - - + - + - -  - - +  + - + - - + - + - -  - - +  + - + @@ -157311,150 +152041,125 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` - - + - + - -  - - +  + - + @@ -157840,150 +152545,125 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` } } > - - + - + - -  - - +  + - + @@ -158356,7 +153036,6 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` } > - - + - + - -  - - +  + - + - - + - + - -  - - +  + - + @@ -158868,7 +153497,6 @@ exports[`Story Snapshots: WithoutHeader should match snapshot 1`] = ` } > Date: Tue, 7 Apr 2026 10:33:12 -0300 Subject: [PATCH 052/108] fix: snapshot test --- .../Button/__snapshots__/Button.test.tsx.snap | 140 ---- .../__snapshots__/LoginServices.test.tsx.snap | 56 -- .../__snapshots__/UiKitMessage.test.tsx.snap | 244 ------ .../__snapshots__/UiKitModal.test.tsx.snap | 232 ------ .../__snapshots__/Message.test.tsx.snap | 710 ------------------ .../CannedResponseItem.test.tsx.snap | 44 -- 6 files changed, 1426 deletions(-) diff --git a/app/containers/Button/__snapshots__/Button.test.tsx.snap b/app/containers/Button/__snapshots__/Button.test.tsx.snap index 408fa1b7780..03f23308774 100644 --- a/app/containers/Button/__snapshots__/Button.test.tsx.snap +++ b/app/containers/Button/__snapshots__/Button.test.tsx.snap @@ -4,29 +4,17 @@ exports[`Story Snapshots: CustomButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -44,21 +32,13 @@ exports[`Story Snapshots: CustomButton should match snapshot 1`] = ` ] } testID="testButton" -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -103,29 +83,17 @@ exports[`Story Snapshots: DisabledButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -142,21 +110,13 @@ exports[`Story Snapshots: DisabledButton should match snapshot 1`] = ` ] } testID="testButton" -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -197,29 +157,17 @@ exports[`Story Snapshots: DisabledLoadingButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -236,21 +184,13 @@ exports[`Story Snapshots: DisabledLoadingButton should match snapshot 1`] = ` ] } testID="testButton" -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -280,29 +220,17 @@ exports[`Story Snapshots: LoadingButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -319,21 +247,13 @@ exports[`Story Snapshots: LoadingButton should match snapshot 1`] = ` ] } testID="testButton" -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -363,29 +283,17 @@ exports[`Story Snapshots: PrimaryButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -402,21 +310,13 @@ exports[`Story Snapshots: PrimaryButton should match snapshot 1`] = ` ] } testID="testButton" -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -457,29 +357,17 @@ exports[`Story Snapshots: SecondaryButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -496,21 +384,13 @@ exports[`Story Snapshots: SecondaryButton should match snapshot 1`] = ` ] } testID="testButton" -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -551,29 +431,17 @@ exports[`Story Snapshots: SmallButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -590,21 +458,13 @@ exports[`Story Snapshots: SmallButton should match snapshot 1`] = ` ] } testID="testButton" -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, diff --git a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap index de9cf683ce4..b713bd5638e 100644 --- a/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap +++ b/app/containers/LoginServices/__snapshots__/LoginServices.test.tsx.snap @@ -5,29 +5,17 @@ exports[`Story Snapshots: Separators should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -43,21 +31,13 @@ exports[`Story Snapshots: Separators should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -151,29 +131,17 @@ exports[`Story Snapshots: Separators should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -189,21 +157,13 @@ exports[`Story Snapshots: Separators should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -304,11 +264,7 @@ exports[`Story Snapshots: ServiceList should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={3} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -444,11 +400,7 @@ exports[`Story Snapshots: ServiceList should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={4} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -584,11 +536,7 @@ exports[`Story Snapshots: ServiceList should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={5} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -724,11 +672,7 @@ exports[`Story Snapshots: ServiceList should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={6} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} diff --git a/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap index 9a28dc4ce18..2d50bedb15b 100644 --- a/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitMessage.test.tsx.snap @@ -6,29 +6,17 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -44,21 +32,13 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -98,29 +78,17 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -136,21 +104,13 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -190,29 +150,17 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -228,21 +176,13 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -282,29 +222,17 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -320,21 +248,13 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -374,29 +294,17 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -412,21 +320,13 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -473,29 +373,17 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -511,21 +399,13 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -572,29 +452,17 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -610,21 +478,13 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -663,29 +523,17 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -701,21 +549,13 @@ exports[`Story Snapshots: ActionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -5032,29 +4872,17 @@ exports[`Story Snapshots: SectionButton should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -5070,21 +4898,13 @@ exports[`Story Snapshots: SectionButton should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -5205,29 +5025,17 @@ exports[`Story Snapshots: SectionDatePicker should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -5243,21 +5051,13 @@ exports[`Story Snapshots: SectionDatePicker should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -5585,29 +5385,17 @@ exports[`Story Snapshots: SectionMultiSelect should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -5623,21 +5411,13 @@ exports[`Story Snapshots: SectionMultiSelect should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -5755,29 +5535,17 @@ exports[`Story Snapshots: SectionMultiSelect should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -5793,21 +5561,13 @@ exports[`Story Snapshots: SectionMultiSelect should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -5931,11 +5691,7 @@ exports[`Story Snapshots: SectionOverflow should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={13} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { diff --git a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap index 6ed7474b37a..087e37f3709 100644 --- a/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap +++ b/app/containers/UIKit/__snapshots__/UiKitModal.test.tsx.snap @@ -1014,29 +1014,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1052,21 +1040,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -1106,29 +1086,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1144,21 +1112,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -1198,29 +1158,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1236,21 +1184,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -1290,29 +1230,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1328,21 +1256,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -1382,29 +1302,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1420,21 +1328,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -1481,29 +1381,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1519,21 +1407,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -1580,29 +1460,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1618,21 +1486,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -1679,29 +1539,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1717,21 +1565,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -1770,29 +1610,17 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -1808,21 +1636,13 @@ exports[`Story Snapshots: ModalActionsWithShowMore should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -2178,11 +1998,7 @@ exports[`Story Snapshots: ModalContextsDividers should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={10} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2359,11 +2175,7 @@ exports[`Story Snapshots: ModalContextsDividers should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={11} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2540,11 +2352,7 @@ exports[`Story Snapshots: ModalContextsDividers should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={12} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2672,11 +2480,7 @@ exports[`Story Snapshots: ModalDatePickerWithError should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={13} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -3057,11 +2861,7 @@ exports[`Story Snapshots: ModalFormInput should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={14} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -3301,29 +3101,17 @@ exports[`Story Snapshots: ModalFormTextArea should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -3339,21 +3127,13 @@ exports[`Story Snapshots: ModalFormTextArea should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -3983,11 +3763,7 @@ exports[`Story Snapshots: ModalMultiSelect should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={16} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -4161,11 +3937,7 @@ exports[`Story Snapshots: ModalMultiSelect should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={17} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -4253,11 +4025,7 @@ exports[`Story Snapshots: ModalMultiSelect should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={18} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 1fc6216e88c..c517ac4b3fc 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -109368,29 +109368,17 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -109406,21 +109394,13 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -109581,11 +109561,7 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={356} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -109712,11 +109688,7 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={357} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110063,29 +110035,17 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -110101,21 +110061,13 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -110289,11 +110241,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={359} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110420,11 +110368,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={360} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110606,29 +110550,17 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -110644,21 +110576,13 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -110819,11 +110743,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={362} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -110950,11 +110870,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={363} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111301,29 +111217,17 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -111339,21 +111243,13 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -111527,11 +111423,7 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={365} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111658,11 +111550,7 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={366} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -111976,11 +111864,7 @@ exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={367} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112107,11 +111991,7 @@ exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={368} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112370,11 +112250,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={369} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112596,11 +112472,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={370} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -112822,11 +112694,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={371} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113051,11 +112919,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={372} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113277,11 +113141,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={373} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113503,11 +113363,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={374} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113729,11 +113585,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={375} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -113955,11 +113807,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={376} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114181,11 +114029,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={377} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114407,11 +114251,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={378} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114633,11 +114473,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={379} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -114859,11 +114695,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={380} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115085,11 +114917,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={381} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115311,11 +115139,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={382} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115537,11 +115361,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={383} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115763,11 +115583,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={384} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -115989,11 +115805,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={385} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116215,11 +116027,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={386} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116441,11 +116249,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={387} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116667,11 +116471,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={388} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -116893,11 +116693,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={389} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117119,11 +116915,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={390} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117345,11 +117137,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={391} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117571,11 +117359,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={392} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -117797,11 +117581,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={393} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118023,11 +117803,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={394} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118240,11 +118016,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={395} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118466,11 +118238,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={396} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118692,11 +118460,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={397} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -118921,11 +118685,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={398} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119147,11 +118907,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={399} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119373,11 +119129,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={400} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119599,11 +119351,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={401} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -119825,11 +119573,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={402} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120051,11 +119795,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={403} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120277,11 +120017,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={404} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120503,11 +120239,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={405} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120729,11 +120461,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={406} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -120955,11 +120683,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={407} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121181,11 +120905,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={408} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121407,11 +121127,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={409} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121633,11 +121349,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={410} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -121859,11 +121571,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={411} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122085,11 +121793,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={412} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122311,11 +122015,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={413} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122537,11 +122237,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={414} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122763,11 +122459,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={415} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -122989,11 +122681,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={416} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123215,11 +122903,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={417} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123441,11 +123125,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={418} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123667,11 +123347,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={419} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -123893,11 +123569,7 @@ exports[`Story Snapshots: SystemMessagesLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={420} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124165,11 +123837,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={421} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124296,11 +123964,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={422} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124619,11 +124283,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={423} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -124750,11 +124410,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={424} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125073,11 +124729,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={425} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125204,11 +124856,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={426} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125733,11 +125381,7 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={427} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -125864,11 +125508,7 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={428} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126393,11 +126033,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={429} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126524,11 +126160,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={430} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126842,11 +126474,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={431} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -126973,11 +126601,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={432} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127292,11 +126916,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={433} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127423,11 +127043,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={434} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127777,11 +127393,7 @@ exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={435} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -127908,11 +127520,7 @@ exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={436} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -128261,11 +127869,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={437} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -128392,11 +127996,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={438} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -129426,11 +129026,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={439} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -129557,11 +129153,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={440} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -130591,11 +130183,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={441} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -130722,11 +130310,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={442} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131164,11 +130748,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={443} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131295,11 +130875,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={444} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131987,11 +131563,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={445} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132118,11 +131690,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={446} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132462,11 +132030,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={447} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132593,11 +132157,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={448} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -132893,11 +132453,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={449} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133024,11 +132580,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={450} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133368,11 +132920,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={451} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133499,11 +133047,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={452} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133799,11 +133343,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={453} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -133930,11 +133470,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={454} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -134372,11 +133908,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={455} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -134503,11 +134035,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={456} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135195,11 +134723,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={457} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135326,11 +134850,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={458} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135650,11 +135170,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={459} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -135781,11 +135297,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={460} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136118,11 +135630,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={461} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136249,11 +135757,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={462} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136573,11 +136077,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={463} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -136704,11 +136204,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={464} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -137041,11 +136537,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={465} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -137172,11 +136664,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={466} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -137607,12 +137095,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -138038,12 +137520,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -138480,12 +137956,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -138721,12 +138191,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -139104,12 +138568,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -139444,12 +138902,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -139685,12 +139137,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -139864,11 +139310,7 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={474} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -139995,11 +139437,7 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={475} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -140430,12 +139868,6 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -141054,12 +140486,6 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -141437,12 +140863,6 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -141879,12 +141299,6 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -142219,12 +141633,6 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -142460,12 +141868,6 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 12, @@ -142639,11 +142041,7 @@ exports[`Story Snapshots: WithFile should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={482} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -142770,11 +142168,7 @@ exports[`Story Snapshots: WithFile should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={483} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -143905,11 +143299,7 @@ exports[`Story Snapshots: WithFileLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={484} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -144036,11 +143426,7 @@ exports[`Story Snapshots: WithFileLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={485} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -144929,11 +144315,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={486} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -145060,11 +144442,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={487} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -145580,11 +144958,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={488} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -145711,11 +145085,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={489} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -146715,11 +146085,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={490} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -146846,11 +146212,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={491} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -147477,11 +146839,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={492} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -147608,11 +146966,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={493} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -148128,11 +147482,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={494} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -148259,11 +147609,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={495} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -149099,11 +148445,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={496} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -149230,11 +148572,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={497} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -149861,11 +149199,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={498} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -149992,11 +149326,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={499} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -150512,11 +149842,7 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={500} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -150643,11 +149969,7 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={501} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -151447,11 +150769,7 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={502} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -151578,11 +150896,7 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={503} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -152158,11 +151472,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={504} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -152289,11 +151599,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={505} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -152769,11 +152075,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={506} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -152900,11 +152202,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={507} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -153281,11 +152579,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={508} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -153412,11 +152706,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={509} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} diff --git a/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap b/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap index c04f77d2adb..f67fa3e644e 100644 --- a/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap +++ b/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap @@ -127,29 +127,17 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -168,21 +156,13 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, @@ -258,11 +238,7 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} -<<<<<<< HEAD - handlerTag={3} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -382,29 +358,17 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` >>>>>> develop handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} onGestureHandlerEvent={[Function]} onGestureHandlerStateChange={[Function]} onPress={[Function]} -<<<<<<< HEAD - rippleColor="transparent" -======= ->>>>>>> develop style={ [ { @@ -423,21 +387,13 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` }, ] } -<<<<<<< HEAD - underlayColor="transparent" -======= underlayColor="black" ->>>>>>> develop > >>>>>> develop "borderBottomLeftRadius": undefined, "borderBottomRightRadius": undefined, "borderRadius": 4, From 198f60305c7cdad3bf28d08a419f84b5b9f40b1c Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 7 Apr 2026 10:42:00 -0300 Subject: [PATCH 053/108] fix: lint --- app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx index c402ac1d0b5..469f5527983 100644 --- a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx +++ b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx @@ -19,7 +19,7 @@ interface InvertedScrollViewNativeProps extends ScrollViewProps { exitFocusNativeId?: string; } -interface Props extends ScrollViewProps { +interface Props extends Omit { exitFocusNativeId?: string; scrollViewRef?: React.Ref; } From f1e6ccb50bf151a1725b57060740e870cc7c0b3c Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 7 Apr 2026 11:40:25 -0300 Subject: [PATCH 054/108] fix: podfile --- ios/Podfile.lock | 231 ++++++++++++++++++++++++----------------------- 1 file changed, 118 insertions(+), 113 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 83c15083f1d..4c5d0ec5b79 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -2081,10 +2081,14 @@ PODS: - react-native-cookies (6.2.1): - React-Core - react-native-external-keyboard (0.8.2): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2092,7 +2096,6 @@ PODS: - React-Fabric - React-featureflags - React-graphics - - React-hermes - React-ImageManager - React-jsi - React-NativeModulesApple @@ -2103,8 +2106,10 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - react-native-keyboard-controller (1.17.1): + - react-native-keyboard-controller (1.18.5): + - boost - DoubleConversion - fast_float - fmt @@ -3917,29 +3922,29 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 - BugsnagReactNative: 2078dec76e54db9f6e687743af45dc3673cb32ab - BVLinearGradient: 7815a70ab485b7b155186dd0cc836363e0288cad + BugsnagReactNative: f3c40a61779de6de394e472407b4d14f27d30c1b + BVLinearGradient: 34a999fda29036898a09c6a6b728b0b4189e1a44 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb - EXApplication: 1e98d4b1dccdf30627f92917f4b2c5a53c330e5f - EXAV: b60fcf142fae6684d295bc28cd7cfcb3335570ea - EXConstants: 805f35b1b295c542ca6acce836f21a1f9ee104d5 - EXNotifications: 983f04ad4ad879b181179e326bf220541e478386 - Expo: 6118272de314ed3d4bc74de3b1229b8f5b324ef1 - ExpoAppleAuthentication: 9413ae9a5e631a424cc04c1b13b0694dbab7d594 - ExpoAsset: f867e55ceb428aab99e1e8c082b5aee7c159ea18 - ExpoCamera: 6a326deb45ba840749652e4c15198317aa78497e - ExpoDevice: 6327c3c200816795708885adf540d26ecab83d1a - ExpoDocumentPicker: 7cd9e71a0f66fb19eb0a586d6f26eee1284692e0 - ExpoFileSystem: 858a44267a3e6e9057e0888ad7c7cfbf55d52063 - ExpoFont: 35ac6191ed86bbf56b3ebd2d9154eda9fad5b509 - ExpoHaptics: d3a6375d8dcc3a1083d003bc2298ff654fafb536 - ExpoImage: 686f972bff29525733aa13357f6691dc90aa03d8 - ExpoKeepAwake: 55f75eca6499bb9e4231ebad6f3e9cb8f99c0296 - ExpoLocalAuthentication: 8a31808565da7af926dd9b595e98594d8b1553b6 - ExpoModulesCore: 91a57f1d109cf53fe58d44fcf6b68a777561549a - ExpoSystemUI: 2ad325f361a2fcd96a464e8574e19935c461c9cc - ExpoVideoThumbnails: 503a79271416c8723f04b55ea4737282513ebe4f - ExpoWebBrowser: 17b064c621789e41d4816c95c93f429b84971f52 + EXApplication: 13420f8139864183f8a04fd6099077bdf8cfb186 + EXAV: c2de1057f4d9b0bcbdd908c6f2dcff48ece36f2b + EXConstants: 6c818a84354d194cb4d5d78990108a7c0f590e30 + EXNotifications: 66e91bc2cde4123b371773fd479bacd3cd699e79 + Expo: 595a1f6bf379ffadd2c19cfcdd1f62a4f130428e + ExpoAppleAuthentication: 31bb6cdc57d7169e5d994fff7ec4b97c62423534 + ExpoAsset: d999f3bbd998a750f3b74cb913229848901b926b + ExpoCamera: 44705f35b32741582d00c69187c8ee59669ed46e + ExpoDevice: 0773c782b055558ca9b40b74aa4a8133a66cd0d2 + ExpoDocumentPicker: 774b0d1f41468f79148e8201afd094ca852e9e42 + ExpoFileSystem: aefcd337b94b874f88752ebefc52813b84992fad + ExpoFont: 26bbea90749b8dd0b69effc9fab54248e684f290 + ExpoHaptics: 7240781406f4563c3f4eb1e72864302a8c643fd0 + ExpoImage: f6bcd30bb98d4c484869668fbc32834bb3ee5bfb + ExpoKeepAwake: 44bf6715bc1d2ddb17afe19d927cd039cda123f0 + ExpoLocalAuthentication: a5d1c60718a852faa1852ef76298d8a167dc99f5 + ExpoModulesCore: e80c5fef91bcdfcbe3acba33ddc53666be4a7fcc + ExpoSystemUI: 4611247a411f231229f7e04449856035bd18ba21 + ExpoVideoThumbnails: 9fccaa03acb8991317d1c26909003ea2bc064d73 + ExpoWebBrowser: 88b116cd378d9609c776c0903fe4070fca461588 fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 FBLazyVector: 5beb8028d5a2e75dd9634917f23e23d3a061d2aa Firebase: 6a8f201c61eda24e98f1ce2b44b1b9c2caf525cc @@ -3960,105 +3965,105 @@ SPEC CHECKSUMS: libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7 libdav1d: 23581a4d8ec811ff171ed5e2e05cd27bad64c39f libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8 - MobileCrypto: 41cd66d5588e979cf95d1ff6ae2eec88eb284ef1 + MobileCrypto: 4065a6dbb9f17ee844a16a47992105ee9485af43 nanopb: fad817b59e0457d11a5dfbde799381cd727c1275 PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 PromisesSwift: 9d77319bbe72ebf6d872900551f7eeba9bce2851 - RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669 + RCT-Folly: 59ec0ac1f2f39672a0c6e6cecdd39383b764646f RCTDeprecation: 5eb1d2eeff5fb91151e8a8eef45b6c7658b6c897 RCTRequired: cebcf9442fc296c9b89ac791dfd463021d9f6f23 RCTTypeSafety: b99aa872829ee18f6e777e0ef55852521c5a6788 React: 914f8695f9bf38e6418228c2ffb70021e559f92f React-callinvoker: 23cd4e33928608bd0cc35357597568b8b9a5f068 - React-Core: 6a0a97598e9455348113bfe4c573fe8edac34469 - React-CoreModules: a88a6ca48b668401b9780e272e2a607e70f9f955 - React-cxxreact: 06265fd7e8d5c3b6b49e00d328ef76e5f1ae9c8b + React-Core: 895a479e2e0331f48af3ad919bece917926a0b7d + React-CoreModules: dfa38212cf3a91f2eb84ccd43d747d006d33449e + React-cxxreact: 7a4e2c77e564792252131e63270f6184d93343b3 React-debug: 29aed758c756956a51b4560223edbd15191ca4c5 - React-defaultsnativemodule: c406bf7cd78036efffb7dec9df469257a1bca58c - React-domnativemodule: 925ea5ff8cb05c68e910057e6349e5898cce00f3 - React-Fabric: 13130d0a70f17e913865b04673ee64603d6c42fe - React-FabricComponents: 1f01ea24a1314bf9abcac4743bb7ad8791336be6 - React-FabricImage: f364dc54fcf8b0ef77192674a009aa4f65b34d75 - React-featureflags: 32217ac18a8c216fc571044186fb04164af72772 - React-featureflagsnativemodule: 9c552bb908a7434baa846002ee1752a77b1a5520 - React-graphics: 3034a698e46e947f74a443e761f1feef742e9d71 - React-hermes: a852be3ab9e1f515e46ba3ea9f48c31d4a9df437 - React-idlecallbacksnativemodule: c43fe1f2221b0548cc366bf15f88efb3b3221bbf - React-ImageManager: 7efd7b19cdfaa3a82482e9e6ac0b56606a3ec271 - React-jserrorhandler: 597057d0b9d158c03e02aa376a4a95f64f46a910 - React-jsi: 7b53959aea60909ac6bbe4dd0bdec6c10d7dc597 - React-jsiexecutor: 19938072af05ade148474bac41e0324a2d733f44 - React-jsinspector: eb6bb244a75cbd56f32767daf2efdb344e2ff10c - React-jsinspectorcdp: 727f37537e9c7ab22b6b86c802d879efae5e2757 - React-jsinspectornetwork: 11d47e644701c58038ef8d7f54a405ddd62b3b16 - React-jsinspectortracing: 8875637e6c65b3b9a3852b006856562e874e7a78 - React-jsitooling: b6e6a2551459a6ef9e1529df2ea981fa27ed3a91 - React-jsitracing: 879e2b2f80dd33d84175989de0a8db5d662505db - React-logger: a913317214a26565cd4c045347edf1bcacb80a3f - React-Mapbuffer: 017336879e2e0fb7537bbc08c24f34e2384c9260 - React-microtasksnativemodule: 63ee6730cec233feab9cdcc0c100dc28a12e4165 - react-native-a11y-order: 20b33ff538af60d8b8a7f7284115a7febc9034d4 - react-native-background-timer: 4638ae3bee00320753647900b21260b10587b6f7 - react-native-cameraroll: ae31ba7ee17d31c5ee05d7bb248742e3af482783 - react-native-cookies: d648ab7025833b977c0b19e142503034f5f29411 - react-native-external-keyboard: cfbd95f3c5623b008efe01c583f7787a86a1aee1 - react-native-keyboard-controller: c4ca61f44d66c2f8987a7e67e9b78e80dc965c45 - react-native-mmkv: 7b9c7469fa0a7e463f9411ad3e4fe273bd5ff030 - react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187 - react-native-restart: f6f591aeb40194c41b9b5013901f00e6cf7d0f29 - react-native-safe-area-context: 0a3b034bb63a5b684dd2f5fffd3c90ef6ed41ee8 - react-native-slider: 6201419b3e3f7c6b7cf2068e0c01274fa86a1da5 - react-native-webview: 83c663c5bdf1357d3e7c00986260cb888ea0e328 - React-NativeModulesApple: cbceb3c4cb726838c461b13802a76cefa6f3476f + React-defaultsnativemodule: ee4e3ca63b29c8b91448a6760d72063196ed0796 + React-domnativemodule: 4d29aad12ebb2b5aa34043e5bdd191a92821f3aa + React-Fabric: 21f78a4856240d39a663a52c452e223c5e412098 + React-FabricComponents: 13fc0ac39a488cea00c83ffa7b16113f024d66e6 + React-FabricImage: 8961abe0372d20679ee093d144aaf5fb1227bf41 + React-featureflags: 018934f958e6b83907e71631599b02144e6b17f4 + React-featureflagsnativemodule: 89fef5751203b7d3cdde43e1e10407983735a4b4 + React-graphics: 1c62dd11f47071482ca90238981f0147cce4089d + React-hermes: 36704d7354fff9c9e3fbb2490e8eeb2ac027f6f0 + React-idlecallbacksnativemodule: 5f7cbecc1479b53e665f2cd6c2af2c21a80d2ffd + React-ImageManager: 4cb6318bb2bcc947106e29f9297a1c24c85a9233 + React-jserrorhandler: 4b9344f5794cfe8946f8752d38094649f53dd3f3 + React-jsi: 3a8c6f94a52033b0cca53c38d9bb568306aa9dc1 + React-jsiexecutor: d7cf79b1c2771c6b21c46691a96dd2e32d4454c7 + React-jsinspector: 651483ea1d79859e0ed21b86e9042b2a3f4d2b40 + React-jsinspectorcdp: c800035023789b8bf32b4f5a4c9003c2dc28ee49 + React-jsinspectornetwork: 249ee46e9de930d773ff6e4726aa8eeb5854b589 + React-jsinspectortracing: 80e251e13a6071607f06f0e39e03d3f2ce2645cb + React-jsitooling: 6ce395671d0139ec1c4721953a4d3d92172fc06f + React-jsitracing: 4a4d89334b14d96de0387876751528433d1d2fbd + React-logger: 8bcfaf06f8c536fb9e9760526cf3d17ccd53e4ce + React-Mapbuffer: 4649384414066eb77e30a3124dbb48732a3aa173 + React-microtasksnativemodule: e39f94cc96d61b8174a5cfb2d5862a73fa8c0d35 + react-native-a11y-order: b8de113a5775cc77e0c60574a6779d9aa6f3110c + react-native-background-timer: 17ea5e06803401a379ebf1f20505b793ac44d0fe + react-native-cameraroll: aa5f6fe38b5574f1066a37ceaad5ece494a157a5 + react-native-cookies: f54fcded06bb0cda05c11d86788020b43528a26c + react-native-external-keyboard: 68a8ec64a2b1db035c25c618348a51f43565f9f2 + react-native-keyboard-controller: ef239acc614d5d520b07853be6bfa6e87b7770db + react-native-mmkv: c70c58437c0f5e5fe6992f1de1e350dcdd236332 + react-native-netinfo: f0a9899081c185db1de5bb2fdc1c88c202a059ac + react-native-restart: 733a51ad137f15b0f8dc34c4082e55af7da00979 + react-native-safe-area-context: fea29ae0275beaa22f72d0a8be1eb0ab09c3feae + react-native-slider: 99493fd3e7254ea482be59fbd94467e737d2b849 + react-native-webview: 21fdd62caca650645e429b4a84941626612616ef + React-NativeModulesApple: 8ce162c145e6b9767bb37a090c77d3d28f7d32b5 React-oscompat: eb0626e8ba1a2c61673c991bf9dc21834898475d - React-perflogger: 509e1f9a3ee28df71b0a66de806ac515ce951246 - React-performancetimeline: 9ce28cce1cded27410c293283f99fe62bebdb920 + React-perflogger: d0d0d1b884120fa0a13bd38ac5e9c3c8e8bfe82a + React-performancetimeline: ae60fb7a7447c44d4d3227fc4eeba606403aaee3 React-RCTActionSheet: 30fe8f9f8d86db4a25ff34595a658ecd837485fc - React-RCTAnimation: 3126eb1cb8e7a6ca33a52fd833d8018aa9311af1 - React-RCTAppDelegate: b03981c790aa40cf26e0f78cc0f1f2df8287ead4 - React-RCTBlob: 53c35e85c85d6bdaa55dc81a0b290d4e78431095 - React-RCTFabric: 59ad9008775f123019c508efff260594a8509791 - React-RCTFBReactNativeSpec: 82b605ab4f6f8da0a7ad88641161df5a0bafb1fb - React-RCTImage: 074b2faa71a152a456c974e118b60c9eeda94a64 - React-RCTLinking: e5ca17a4f7ae2ad7b0c0483be77e1b383ecd0a8a - React-RCTNetwork: c508d7548c9eceac30a8100a846ea00033a03366 - React-RCTRuntime: 6979568c0bc276fe785e085894f954fa15e0ec7e - React-RCTSettings: dd84c857a4fce42c1e08c1dabcda894e25af4a6e - React-RCTText: 6e4b177d047f98bccb90d6fb1ebdd3391cf8b299 - React-RCTVibration: 9572d4a06a0c92650bcc62913e50eb2a89f19fb6 + React-RCTAnimation: e86dacf8a982f42341a44ec87ea8a30964a15f9f + React-RCTAppDelegate: d7214067e796732b5d22960270593945f1ab8a14 + React-RCTBlob: af1fc227a5aa55564afbe84530a8bd28834fda15 + React-RCTFabric: 8d92e851cc6cdf9771c52a18b144424c92b72082 + React-RCTFBReactNativeSpec: c9ec2130e3c9366d30a85886e1776210054763f5 + React-RCTImage: 70a10a5b957ca124b8d0b0fdeec369f11194782c + React-RCTLinking: 67f8a024192b4844c40ace955c54bb34f40d47f0 + React-RCTNetwork: a7679ee67e7d34797a00cefaa879a3f9ea8cee9c + React-RCTRuntime: 3d25c69970924b597c339aead60168026d7cbc2c + React-RCTSettings: 18d8674195383c4fd51b9fc98ee815b329fba7e4 + React-RCTText: 125574af8e29d0ceb430cbe2a03381d62ba45a47 + React-RCTVibration: e96d43017757197d46834c50a0acfb78429c9b30 React-rendererconsistency: a7b47f8b186af64ff8509c8caec4114a2f1ae63f - React-renderercss: 9845c5063b3a2d0462ed4e4c7fc34219a5d608ed - React-rendererdebug: 3905e346c06347b86c6e49d427062cdd638a3044 - React-RuntimeApple: 97233caf2b635c40819bf5be38d818777f8229ab - React-RuntimeCore: dc41f86fcdf1fbb42a5b8388a29bf59dfa56b2f8 - React-runtimeexecutor: d16d045faaf6cd7de8d1aa8e31a51c13d8db84a4 - React-RuntimeHermes: 5a9d132554c8d6b416d794cd4ac7d927b2f88f7b - React-runtimescheduler: 689d805d43c28b8fb1ab390914e042d10e2ea2ab - React-timing: c39eeb992274aeaeb9f4666dc97a36a31d33fe94 - React-utils: 2f9ba0088251788ad66aa1855ff99ed2424024d2 - ReactAppDependencyProvider: 1bcd3527ac0390a1c898c114f81ff954be35ed79 - ReactCodegen: 70ef19c9bb0884fc1b78731ec2200d48479c908c - ReactCommon: 6d0fa86a4510730da7c72560e0ced14258292ab9 - RNBootSplash: 7fcc9a58ae343aeb1a1dd49f9030832fe432c544 - RNCAsyncStorage: fd44f4b03e007e642e98df6726737bc66e9ba609 - RNCClipboard: e560338bf6cc4656a09ff90610b62ddc0dbdad65 - RNCMaskedView: d707a83784c67099b54b37d056ababb2767ce15e - RNConfigReader: 151efbfb6f2dddd04dd3c0b00fb292d8c7939215 - RNCPicker: 70fd0622147f0ca1b9c5e1be2069a4fb2e8ec461 - RNDateTimePicker: ca1dc7e24d0b4839877f0ab619e7bca5db715289 - RNDeviceInfo: 900bd20e1fd3bfd894e7384cc4a83880c0341bd3 - RNFBAnalytics: 2e8b8ffcd2bb3d59a43ecbe09571c73c56edef7a - RNFBApp: a448037d2df74af9d374a0b765be12ff1e844dc0 - RNFBCrashlytics: c3bb5533f9957eddc88f3ea383583309a4ce9f89 - RNFileViewer: f9424017fa643c115c1444e11292e84fb16ddd68 - RNGestureHandler: b8d2e75c2e88fc2a1f6be3b3beeeed80b88fa37d - RNImageCropPicker: 0a63af4b79e514c1edd6c3152f19300c5ed85312 - RNLocalize: ca86348d88b9a89da0e700af58d428ab3f343c4e - RNReanimated: e1690cdd7f215cfb96a3b7986b81889867dfdb4f - RNScreens: 2e9c41cd099b1ca50136af8d57c3594214d0086a - RNSVG: 94a1be05fab4043354bcf7104f0f9b0e2231ef05 - RNTrueSheet: 53f29088da313dabff8b81d7c4d52afd8e609cfa - RNWorklets: ab618bf7d1c7fd2cb793b9f0f39c3e29274b3ebf + React-renderercss: 0a5b6b7aefc3f5e46a61b0e41b1179a0750cf077 + React-rendererdebug: 7da01af21ab31661c3040ef647e6e2bc55575771 + React-RuntimeApple: 788ca3b8e5485a46654e8a316d4c1e40bf82c5d4 + React-RuntimeCore: 1730e6e5cba6f0af4e0319f891da6426b491e39f + React-runtimeexecutor: 79894322e55268854dc04ff1bee083f24725f6c8 + React-RuntimeHermes: 86bf03cbf11ef05803a2e32087667c8a3cc45f72 + React-runtimescheduler: 70601d598a8a71582fa69a9ba488a27c5d12790d + React-timing: 5717558f0bea206d7557df53015ee9efe1eb57b2 + React-utils: 55e54e497e3d3f373ebfcf844eb77e24ed013356 + ReactAppDependencyProvider: c277c5b231881ad4f00cd59e3aa0671b99d7ebee + ReactCodegen: 2befb5c0ac81ba803b9f342ac89850e247205542 + ReactCommon: 5cfd842fcd893bb40fc835f98fadc60c42906a20 + RNBootSplash: d8407c268d5159ea026dc741ec867ebbe4708f25 + RNCAsyncStorage: 8857fb173af29664cb90897903902dc8533e36cc + RNCClipboard: 4eea71d801c880175c12f6ab14332ca86fed935f + RNCMaskedView: 8bfc13a356455b15d56114738f4d2a804769c1bf + RNConfigReader: 396da6a6444182a76e8ae0930b9436c7575045cb + RNCPicker: df28288a970bdad5c0ddd7cb6a5ba6a834b3a539 + RNDateTimePicker: 05e53e54b95e4e4b7dc1b7141b7749a1daa5e622 + RNDeviceInfo: b899ce37a403a4dea52b7cb85e16e49c04a5b88e + RNFBAnalytics: 9e013537d8aa83f9b46971bb15d43c0ed9eabec2 + RNFBApp: fda4a8b08fe31bea8492808106aa638d1bb595b7 + RNFBCrashlytics: 02234987b4cffb39119af52253bf3d70acec0818 + RNFileViewer: 83cc066ad795b1f986791d03b56fe0ee14b6a69f + RNGestureHandler: 9339994ea5d1ff6ad2679b7d0cc3d49053111369 + RNImageCropPicker: 6fd841bab847a912a03c3c464b44cd19692ca513 + RNLocalize: 82a569022724d35461e2dc5b5d015a13c3ca995b + RNReanimated: 2635ec9d061c5eba3987bcc604443d78f363d3f7 + RNScreens: 871305075ddf1291411b051d86da9e0d9289de02 + RNSVG: 9be2bc57df95a874e8c4b0f7dd71866139f321d2 + RNTrueSheet: 559ba620896714b7518da840f2ae3aa6c8983680 + RNWorklets: daa0a3e7946a9c4042f3a962c87a12dc5bc0badd SDWebImage: e9c98383c7572d713c1a0d7dd2783b10599b9838 SDWebImageAVIFCoder: afe194a084e851f70228e4be35ef651df0fc5c57 SDWebImageSVGCoder: 15a300a97ec1c8ac958f009c02220ac0402e936c @@ -4066,7 +4071,7 @@ SPEC CHECKSUMS: simdjson: 7bb9e33d87737cec966e7b427773c67baa4458fe SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 TOCropViewController: 80b8985ad794298fb69d3341de183f33d1853654 - WatermelonDB: 4c846c8cb94eef3cba90fa034d15310163226703 + WatermelonDB: b34772e634f59bb1170214901a5c8841e7334813 Yoga: 1e91d83a5286cfd3b725eade59274c92270540d4 ZXingObjC: 8898711ab495761b2dbbdec76d90164a6d7e14c5 From 86b25f26ff873206d8f3c5e2f2c8d9ba988e178a Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 7 Apr 2026 12:59:30 -0300 Subject: [PATCH 055/108] fix: lock --- yarn.lock | 5 ----- 1 file changed, 5 deletions(-) diff --git a/yarn.lock b/yarn.lock index 846b1e8a8c6..c02ecad98a7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11268,11 +11268,6 @@ react-native-easy-toast@2.3.0: deprecated-react-native-prop-types "^2.3.0" prop-types "^15.6.0" -react-native-edge-to-edge@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/react-native-edge-to-edge/-/react-native-edge-to-edge-1.6.0.tgz#2ba63b941704a7f713e298185c26cde4d9e4b973" - integrity sha512-2WCNdE3Qd6Fwg9+4BpbATUxCLcouF6YRY7K+J36KJ4l3y+tWN6XCqAC4DuoGblAAbb2sLkhEDp4FOlbOIot2Og== - react-native-external-keyboard@^0.8.2: version "0.8.2" resolved "https://registry.yarnpkg.com/react-native-external-keyboard/-/react-native-external-keyboard-0.8.2.tgz#2929460223f1ed3a1153e631ee28b062c66dac75" From 155dd89b89e44ffa2735de498eae42e142fa3647 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 7 Apr 2026 20:43:02 -0300 Subject: [PATCH 056/108] fix: e2e tests --- .maestro/tests/room/jump-to-message.yaml | 2 +- .../components/RNLikeInvertedScrollView.tsx | 64 +++++++++++++++---- 2 files changed, 53 insertions(+), 13 deletions(-) diff --git a/.maestro/tests/room/jump-to-message.yaml b/.maestro/tests/room/jump-to-message.yaml index 3ac33d7041c..2f8c7f69d46 100644 --- a/.maestro/tests/room/jump-to-message.yaml +++ b/.maestro/tests/room/jump-to-message.yaml @@ -28,7 +28,7 @@ tags: id: '.*Quote first message.*' timeout: 60000 - longPressOn: - id: '.*Quote first message.*' + text: '.*Quote first message.*' retryTapIfNoChange: true - extendedWaitUntil: visible: diff --git a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx index 469f5527983..47a5b69b894 100644 --- a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx +++ b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx @@ -4,6 +4,8 @@ import { Platform, StyleSheet, TextInput, + codegenNativeCommands, + findNodeHandle, type GestureResponderEvent, type LayoutChangeEvent, requireNativeComponent, @@ -21,7 +23,6 @@ interface InvertedScrollViewNativeProps extends ScrollViewProps { interface Props extends Omit { exitFocusNativeId?: string; - scrollViewRef?: React.Ref; } interface State { @@ -31,6 +32,16 @@ interface State { const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); +interface InvertedScrollViewCommands { + scrollTo: (viewRef: React.ElementRef, x: number, y: number, animated: boolean) => void; + scrollToEnd: (viewRef: React.ElementRef, animated: boolean) => void; + flashScrollIndicators: (viewRef: React.ElementRef) => void; +} + +const Commands = codegenNativeCommands({ + supportedCommands: ['scrollTo', 'scrollToEnd', 'flashScrollIndicators'] +}); + const IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16; class RNLikeInvertedScrollView extends React.Component { @@ -156,19 +167,44 @@ class RNLikeInvertedScrollView extends React.Component { return keyboardNeverPersistTaps && this.keyboardIsDismissible() && e.target != null; }; - private setRefs = (instance: any) => { - this.scrollRef.current = instance; - const { scrollViewRef } = this.props; - if (!scrollViewRef) { - return; + private setNativeRef = (instance: any) => { + (this.scrollRef as React.MutableRefObject).current = instance; + }; + + scrollTo = (options?: { x?: number; y?: number; animated?: boolean } | number) => { + let x = 0; + let y = 0; + let animated = true; + if (typeof options === 'number') { + y = options; + } else if (options) { + x = options.x ?? 0; + y = options.y ?? 0; + animated = options.animated !== false; + } + if (this.scrollRef.current) { + Commands.scrollTo(this.scrollRef.current, x, y, animated); + } + }; + + scrollToEnd = (options?: { animated?: boolean }) => { + if (this.scrollRef.current) { + Commands.scrollToEnd(this.scrollRef.current, options?.animated !== false); } - if (typeof scrollViewRef === 'function') { - scrollViewRef(instance); - return; + }; + + flashScrollIndicators = () => { + if (this.scrollRef.current) { + Commands.flashScrollIndicators(this.scrollRef.current); } - (scrollViewRef as React.MutableRefObject).current = instance; }; + getScrollableNode = () => findNodeHandle(this.scrollRef.current); + + getNativeScrollRef = () => this.scrollRef.current; + + getScrollResponder = () => this; + render() { const { horizontal, children, style, contentContainerStyle, onContentSizeChange, ...rest } = this.props; const contentStyle = [horizontal ? styles.contentContainerHorizontal : null, contentContainerStyle]; @@ -177,7 +213,7 @@ class RNLikeInvertedScrollView extends React.Component { return ( ((props, ref) => ); +const Wrapper = React.forwardRef((props, ref) => { + const classRef = React.useRef(null); + React.useImperativeHandle(ref, () => classRef.current!, []); + return ; +}); Wrapper.displayName = 'RNLikeInvertedScrollView'; From c96d3fbb3a9e311a4e558c607763e820e2dae3cf Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 8 Apr 2026 13:01:22 -0300 Subject: [PATCH 057/108] fix: tests --- .../components/Autocomplete/AutocompleteItem.tsx | 12 +++--------- app/views/RoomView/index.tsx | 6 +----- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx b/app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx index a46a09be844..9332fe66444 100644 --- a/app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx +++ b/app/containers/MessageComposer/components/Autocomplete/AutocompleteItem.tsx @@ -75,20 +75,14 @@ export const AutocompleteItem = ({ item, onPress }: IAutocompleteItemProps) => { const [styles, colors] = useStyle(); const autocompleteAccessibilityLabel = getAutocompleteAccessibilityLabel(item); - const testID = `autocomplete-item-${getTestIDSuffix(item)}`; return ( onPress(item)} underlayColor={colors.buttonBackgroundPrimaryPress} style={{ backgroundColor: colors.surfaceLight }} - rippleColor={colors.buttonBackgroundPrimaryPress}> - + rippleColor={colors.buttonBackgroundPrimaryPress} + testID={`autocomplete-item-${getTestIDSuffix(item)}`}> + {item.type === '@' || item.type === '#' ? : null} {item.type === ':' ? : null} {item.type === '/' ? : null} diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index e00c2514783..0b1703c26a7 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -1571,11 +1571,7 @@ class RoomView extends React.Component { } } - return ( - - - - ); + return ; }; renderActions = () => { From b0fc73136f65b0248b3a00e701733095fc8e5ff7 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 8 Apr 2026 19:52:53 -0300 Subject: [PATCH 058/108] fix: i18n --- app/containers/message/Reactions.tsx | 3 ++- app/i18n/locales/en.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/containers/message/Reactions.tsx b/app/containers/message/Reactions.tsx index 28f9763fb31..8d9e17b9909 100644 --- a/app/containers/message/Reactions.tsx +++ b/app/containers/message/Reactions.tsx @@ -1,6 +1,7 @@ import React, { useContext } from 'react'; import { Text, useWindowDimensions, View } from 'react-native'; +import I18n from '../../i18n'; import Touchable from './Touchable'; import { CustomIcon } from '../CustomIcon'; import styles from './styles'; @@ -40,7 +41,7 @@ const AddReaction = React.memo(({ theme }: { theme: TSupportedThemes }) => { key='message-add-reaction' testID='message-add-reaction' accessibilityRole='button' - accessibilityLabel='Add reaction' + accessibilityLabel={I18n.t('Add_reaction')} style={[styles.reactionButton, { backgroundColor: themes[theme].surfaceRoom }]} hitSlop={BUTTON_HIT_SLOP}> diff --git a/app/i18n/locales/en.json b/app/i18n/locales/en.json index 039513dbe47..eedbcfb5dfa 100644 --- a/app/i18n/locales/en.json +++ b/app/i18n/locales/en.json @@ -29,6 +29,7 @@ "Add_Channel_to_Team": "Add channel to team", "Add_Existing": "Add existing", "Add_Existing_Channel": "Add existing channel", + "Add_reaction": "Add reaction", "Add_Server": "Add workspace", "Add_server": "Add workspace", "Add_thread_reply": "Add thread reply", From 4cdce84566ad3b15140d96dc5771f6a962a93130 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 8 Apr 2026 19:54:41 -0300 Subject: [PATCH 059/108] chore: add commentsto reference invertedScrollView references --- .../List/components/RNLikeInvertedScrollView.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx index 47a5b69b894..c4416baa36f 100644 --- a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx +++ b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx @@ -32,6 +32,12 @@ interface State { const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); +// Imperative scroll API for FlatList / VirtualizedList: +// `requireNativeComponent` refs do not get JS `scrollTo` / `scrollToEnd` like `ScrollView` does. +// Our Android `InvertedScrollViewManager` extends `ReactScrollViewManager`, so the native view +// accepts the same commands as RCTScrollView. We mirror RN's ScrollViewCommands pattern +// (`react-native/Libraries/Components/ScrollView/ScrollViewCommands.js`) via `codegenNativeCommands`, +// which dispatches commands correctly on both bridge and Fabric. interface InvertedScrollViewCommands { scrollTo: (viewRef: React.ElementRef, x: number, y: number, animated: boolean) => void; scrollToEnd: (viewRef: React.ElementRef, animated: boolean) => void; @@ -171,6 +177,9 @@ class RNLikeInvertedScrollView extends React.Component { (this.scrollRef as React.MutableRefObject).current = instance; }; + // Exposed on the class instance so VirtualizedList's `_scrollRef` has `scrollTo` (used by + // `scrollToOffset`, `scrollToIndex`, `scrollToEnd`). `findNodeHandle` supports layout helpers + // that call `getScrollableNode` when present. scrollTo = (options?: { x?: number; y?: number; animated?: boolean } | number) => { let x = 0; let y = 0; @@ -257,6 +266,8 @@ const styles = StyleSheet.create({ } }); +// Forward ref to the class instance (not the raw native host), so list consumers receive +// `scrollTo` / `getScrollableNode` / `getScrollResponder` as VirtualizedList expects. const Wrapper = React.forwardRef((props, ref) => { const classRef = React.useRef(null); React.useImperativeHandle(ref, () => classRef.current!, []); From 3939687b384b0b667cc733d9e747ab22f745b1f2 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 13 Apr 2026 13:02:06 -0300 Subject: [PATCH 060/108] chore: rename archive --- ...rdInversionA11yAndroid.ts => NativeKeyboardA11yAndroid.ts} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename app/lib/native/{KeyboardInversionA11yAndroid.ts => NativeKeyboardA11yAndroid.ts} (86%) diff --git a/app/lib/native/KeyboardInversionA11yAndroid.ts b/app/lib/native/NativeKeyboardA11yAndroid.ts similarity index 86% rename from app/lib/native/KeyboardInversionA11yAndroid.ts rename to app/lib/native/NativeKeyboardA11yAndroid.ts index 6f26387272f..201924105f9 100644 --- a/app/lib/native/KeyboardInversionA11yAndroid.ts +++ b/app/lib/native/NativeKeyboardA11yAndroid.ts @@ -1,7 +1,7 @@ import type { TurboModule } from 'react-native'; import { TurboModuleRegistry } from 'react-native'; -export interface KeyboardInversionState { +export interface KeyboardA11yState { enabled: boolean; scope: 'room-view' | null; } @@ -9,7 +9,7 @@ export interface KeyboardInversionState { interface Spec extends TurboModule { enable(scope: 'room-view'): void; disable(): void; - getState(): Promise; + getState(): Promise; } const NativeModule = TurboModuleRegistry.getEnforcing('KeyboardA11y'); From 284bc804422f6c3f22a16f7c03116e85ca8adb05 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 13 Apr 2026 13:03:19 -0300 Subject: [PATCH 061/108] fix: remove fowardref --- app/containers/RoomHeader/RoomHeader.tsx | 204 +++++++++++------------ app/containers/RoomHeader/index.tsx | 142 ++++++++-------- 2 files changed, 173 insertions(+), 173 deletions(-) diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index 68c319a0963..6df269d8018 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -83,6 +83,10 @@ interface IRoomHeader { abacAttributes?: ISubscription['abacAttributes']; } +type IRoomHeaderProps = IRoomHeader & { + ref?: React.Ref; +}; + export interface IRoomHeaderRef { focus: () => void; } @@ -135,114 +139,110 @@ const HeaderTitle = React.memo(({ title, tmid, prid, scale, testID }: TRoomHeade return ; }); -const Header = React.forwardRef( - ( - { - title, - subtitle, - parentTitle, - type, - status, - width, - height, - roomUserId, - prid, - tmid, - onPress, - isGroupChat, - teamMain, - testID, - usersTyping = [], - sourceType, - disabled, - abacAttributes - }: IRoomHeader, - ref - ) => { - const headerRef = React.useRef(null); - React.useImperativeHandle( - ref, - () => ({ - focus: () => { - const nodeHandle = headerRef.current ? findNodeHandle(headerRef.current) : null; - if (nodeHandle) { - AccessibilityInfo.setAccessibilityFocus(nodeHandle); - } +const Header = ({ + title, + subtitle, + parentTitle, + type, + status, + width, + height, + roomUserId, + prid, + tmid, + onPress, + isGroupChat, + teamMain, + testID, + usersTyping = [], + sourceType, + disabled, + abacAttributes, + ref +}: IRoomHeaderProps) => { + const headerRef = React.useRef(null); + React.useImperativeHandle( + ref, + () => ({ + focus: () => { + const nodeHandle = headerRef.current ? findNodeHandle(headerRef.current) : null; + if (nodeHandle) { + AccessibilityInfo.setAccessibilityFocus(nodeHandle); } - }), - [] - ); - - const statusAccessibilityLabel = useStatusAccessibilityLabel({ - isGroupChat, - prid, - roomUserId, - status, - teamMain, - type - }); - const { colors } = useTheme(); - const { fontScale } = useWindowDimensions(); - const portrait = height > width; - let scale = 1; - const isMasterDetail = useAppSelector(state => state.app.isMasterDetail); - const subtitleAccessibilityLabel = tmid ? parentTitle : subtitle; - const accessibilityLabel = `${statusAccessibilityLabel} ${title} ${subtitleAccessibilityLabel || ''}.`; - - if (!portrait && !tmid && !isMasterDetail) { - if (usersTyping.length > 0 || subtitle) { - scale = 0.8; } + }), + [] + ); + + const statusAccessibilityLabel = useStatusAccessibilityLabel({ + isGroupChat, + prid, + roomUserId, + status, + teamMain, + type + }); + const { colors } = useTheme(); + const { fontScale } = useWindowDimensions(); + const portrait = height > width; + let scale = 1; + const isMasterDetail = useAppSelector(state => state.app.isMasterDetail); + const subtitleAccessibilityLabel = tmid ? parentTitle : subtitle; + const accessibilityLabel = `${statusAccessibilityLabel} ${title} ${subtitleAccessibilityLabel || ''}.`; + + if (!portrait && !tmid && !isMasterDetail) { + if (usersTyping.length > 0 || subtitle) { + scale = 0.8; } + } - let renderFunc; - if (tmid) { - renderFunc = () => ( - - - - {parentTitle} - - - ); - } - - const handleOnPress = () => onPress(); - - return ( - - - - {tmid ? null : ( - - )} - - - - + let renderFunc; + if (tmid) { + renderFunc = () => ( + + + + {parentTitle} + ); } -); + + const handleOnPress = () => onPress(); + + return ( + + + + {tmid ? null : ( + + )} + + + + + + ); +}; export default Header; diff --git a/app/containers/RoomHeader/index.tsx b/app/containers/RoomHeader/index.tsx index f55ddb3d221..82f398cfd18 100644 --- a/app/containers/RoomHeader/index.tsx +++ b/app/containers/RoomHeader/index.tsx @@ -24,83 +24,83 @@ interface IRoomHeaderContainerProps { abacAttributes?: ISubscription['abacAttributes']; } +type IRoomHeaderContainerWithRefProps = IRoomHeaderContainerProps & { + ref?: React.Ref; +}; + const RoomHeaderContainer = React.memo( - React.forwardRef( - ( - { - isGroupChat, - onPress, - parentTitle, - prid, - roomUserId, - subtitle: subtitleProp, - teamMain, - testID, - title, - tmid, - type, - sourceType, - visitor, - disabled, - abacAttributes - }: IRoomHeaderContainerProps, - ref - ) => { - let subtitle: string | undefined; - let statusVisitor: TUserStatus | undefined; - let statusText: string | undefined; - const { width, height } = useResponsiveLayout(); + ({ + isGroupChat, + onPress, + parentTitle, + prid, + roomUserId, + subtitle: subtitleProp, + teamMain, + testID, + title, + tmid, + type, + sourceType, + visitor, + disabled, + abacAttributes, + ref + }: IRoomHeaderContainerWithRefProps) => { + let subtitle: string | undefined; + let statusVisitor: TUserStatus | undefined; + let statusText: string | undefined; + const { width, height } = useResponsiveLayout(); - const connecting = useSelector((state: IApplicationState) => state.meteor.connecting || state.server.loading); - const usersTyping = useSelector((state: IApplicationState) => state.usersTyping, shallowEqual); - const connected = useSelector((state: IApplicationState) => state.meteor.connected); - const activeUser = useSelector( - (state: IApplicationState) => (roomUserId ? state.activeUsers?.[roomUserId] : undefined), - shallowEqual - ); + const connecting = useSelector((state: IApplicationState) => state.meteor.connecting || state.server.loading); + const usersTyping = useSelector((state: IApplicationState) => state.usersTyping, shallowEqual); + const connected = useSelector((state: IApplicationState) => state.meteor.connected); + const activeUser = useSelector( + (state: IApplicationState) => (roomUserId ? state.activeUsers?.[roomUserId] : undefined), + shallowEqual + ); - if (connecting) { - subtitle = I18n.t('Connecting'); - } else if (!connected) { - subtitle = I18n.t('Waiting_for_network'); - } else { - subtitle = subtitleProp; - } + if (connecting) { + subtitle = I18n.t('Connecting'); + } else if (!connected) { + subtitle = I18n.t('Waiting_for_network'); + } else { + subtitle = subtitleProp; + } - if (connected) { - if ((type === 'd' || (tmid && roomUserId)) && activeUser) { - const { statusText: statusTextActiveUser } = activeUser; - statusText = statusTextActiveUser; - } else if (type === 'l' && visitor?.status) { - ({ status: statusVisitor } = visitor); - } + if (connected) { + if ((type === 'd' || (tmid && roomUserId)) && activeUser) { + const { statusText: statusTextActiveUser } = activeUser; + statusText = statusTextActiveUser; + } else if (type === 'l' && visitor?.status) { + ({ status: statusVisitor } = visitor); } - - return ( - - ); } - ) + + return ( + + ); + } ); export default RoomHeaderContainer; From 0b17432b7737c10fabe2032471ccc5b426e439b1 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 13 Apr 2026 13:25:00 -0300 Subject: [PATCH 062/108] fix: remove fowardref --- app/lib/methods/helpers/goRoom.ts | 3 +-- .../List/components/RNLikeInvertedScrollView.tsx | 14 +------------- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/app/lib/methods/helpers/goRoom.ts b/app/lib/methods/helpers/goRoom.ts index 3e12cfc4845..08c8402b860 100644 --- a/app/lib/methods/helpers/goRoom.ts +++ b/app/lib/methods/helpers/goRoom.ts @@ -42,8 +42,7 @@ const navigate = ({ room: item, visitor: item.visitor, roomUserId: getUidDirectMessage(item), - ...props, - ...(isMasterDetail && props.focusHeaderOnOpen ? { focusHeaderOnOpen: true } : {}) + ...props }; const currentRoute = Navigation.getCurrentRoute() as any; diff --git a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx index c4416baa36f..87254458ac2 100644 --- a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx +++ b/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx @@ -50,7 +50,7 @@ const Commands = codegenNativeCommands({ const IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16; -class RNLikeInvertedScrollView extends React.Component { +export default class RNLikeInvertedScrollView extends React.Component { private scrollRef = React.createRef(); private _keyboardMetrics: { height: number } | null = null; private _isTouching = false; @@ -265,15 +265,3 @@ const styles = StyleSheet.create({ flexDirection: 'row' } }); - -// Forward ref to the class instance (not the raw native host), so list consumers receive -// `scrollTo` / `getScrollableNode` / `getScrollResponder` as VirtualizedList expects. -const Wrapper = React.forwardRef((props, ref) => { - const classRef = React.useRef(null); - React.useImperativeHandle(ref, () => classRef.current!, []); - return ; -}); - -Wrapper.displayName = 'RNLikeInvertedScrollView'; - -export default Wrapper; From 20f5abe533e9f247b60bb6b48d565e080f28f29b Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 13 Apr 2026 13:29:28 -0300 Subject: [PATCH 063/108] remove focusOnOpen --- app/lib/methods/helpers/goRoom.ts | 11 +---------- app/stacks/types.ts | 1 - app/views/RoomView/index.tsx | 5 ++--- app/views/RoomsListView/index.tsx | 2 +- 4 files changed, 4 insertions(+), 15 deletions(-) diff --git a/app/lib/methods/helpers/goRoom.ts b/app/lib/methods/helpers/goRoom.ts index 08c8402b860..6119420898f 100644 --- a/app/lib/methods/helpers/goRoom.ts +++ b/app/lib/methods/helpers/goRoom.ts @@ -25,15 +25,7 @@ interface IGoRoomItem { export type TGoRoomItem = IGoRoomItem | TSubscriptionModel | ISubscription | IOmnichannelRoomVisitor; -const navigate = ({ - item, - isMasterDetail, - ...props -}: { - item: TGoRoomItem; - isMasterDetail: boolean; - focusHeaderOnOpen?: boolean; -}) => { +const navigate = ({ item, isMasterDetail, ...props }: { item: TGoRoomItem; isMasterDetail: boolean }) => { const routeParams = { rid: item.rid, name: getRoomTitle(item), @@ -99,7 +91,6 @@ export const goRoom = async ({ isMasterDetail: boolean; jumpToMessageId?: string; usedCannedResponse?: string; - focusHeaderOnOpen?: boolean; }): Promise => { if (!('id' in item) && item.t === SubscriptionType.DIRECT && item?.search) { // if user is using the search we need first to join/create room diff --git a/app/stacks/types.ts b/app/stacks/types.ts index fbda5ef6b66..c8afff63863 100644 --- a/app/stacks/types.ts +++ b/app/stacks/types.ts @@ -41,7 +41,6 @@ export type ChatsStackParamList = { jumpToThreadId?: string; roomUserId?: string | null; usedCannedResponse?: string; - focusHeaderOnOpen?: boolean; status?: string; } | undefined; // Navigates back to RoomView already on stack diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index 0b1703c26a7..92ea7f6da4d 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -219,7 +219,7 @@ class RoomView extends React.Component { } componentDidMount() { - const { navigation, dispatch, isMasterDetail, route } = this.props; + const { navigation, dispatch, isMasterDetail } = this.props; const { selectedMessages } = this.state; dispatch(clearInAppFeedback()); this.mounted = true; @@ -257,9 +257,8 @@ class RoomView extends React.Component { }); this.unsubscribeFocus = navigation.addListener('focus', () => { InteractionManager.runAfterInteractions(() => { - if (isMasterDetail && route?.params?.focusHeaderOnOpen) { + if (isMasterDetail) { this.roomHeaderRef.current?.focus(); - navigation.setParams({ focusHeaderOnOpen: undefined }); return; } this.messageComposerRef.current?.focus?.(); diff --git a/app/views/RoomsListView/index.tsx b/app/views/RoomsListView/index.tsx index 308ab92e9fe..0ec091befb3 100644 --- a/app/views/RoomsListView/index.tsx +++ b/app/views/RoomsListView/index.tsx @@ -73,7 +73,7 @@ const RoomsListView = memo(function RoomsListView() { logEvent(events.RL_GO_ROOM); stopSearch(); - goRoom({ item, isMasterDetail, focusHeaderOnOpen: true }); + goRoom({ item, isMasterDetail }); }; const renderItem = ({ item }: { item: IRoomItem }) => { From c7fe93c0771aa45cff3317369dce1cd1117b9b5a Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 13 Apr 2026 13:30:05 -0300 Subject: [PATCH 064/108] rename invertedScrollViewAdapter --- app/views/RoomView/List/components/InvertedScrollView.tsx | 4 ++-- ...keInvertedScrollView.tsx => InvertedScrollViewAdapter.tsx} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename app/views/RoomView/List/components/{RNLikeInvertedScrollView.tsx => InvertedScrollViewAdapter.tsx} (99%) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index b1a68c23896..368d25fde6b 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -1,10 +1,10 @@ import type { ComponentType } from 'react'; import { type ScrollViewProps } from 'react-native'; -import RNLikeInvertedScrollView from './RNLikeInvertedScrollView'; +import InvertedScrollViewAdapter from './RNLikeInvertedScrollView'; interface InvertedScrollViewProps extends ScrollViewProps { exitFocusNativeId?: string; } -export default RNLikeInvertedScrollView as ComponentType; +export default InvertedScrollViewAdapter as ComponentType; diff --git a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx similarity index 99% rename from app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx rename to app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx index 87254458ac2..4ea4b15049d 100644 --- a/app/views/RoomView/List/components/RNLikeInvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx @@ -50,7 +50,7 @@ const Commands = codegenNativeCommands({ const IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16; -export default class RNLikeInvertedScrollView extends React.Component { +export default class InvertedScrollViewAdapter extends React.Component { private scrollRef = React.createRef(); private _keyboardMetrics: { height: number } | null = null; private _isTouching = false; From a30f780bb18fef265c75ff967f3298b2bfaec169 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 13 Apr 2026 14:12:41 -0300 Subject: [PATCH 065/108] fix: code issues --- .../reactnative/a11y/KeyboardA11yModule.java | 33 +++++++++----- .../scroll/InvertedScrollView.java | 45 +++++++++++-------- .../components/MessageComposerContent.tsx | 2 + app/containers/message/Reactions.tsx | 6 ++- app/lib/constants/accessibility.ts | 2 + .../List/components/InvertedScrollView.tsx | 2 +- .../components/InvertedScrollViewAdapter.tsx | 3 +- app/views/RoomView/List/components/List.tsx | 3 +- 8 files changed, 61 insertions(+), 35 deletions(-) create mode 100644 app/lib/constants/accessibility.ts diff --git a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java index 68b4506ba44..f72f0fd6392 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java +++ b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java @@ -7,44 +7,53 @@ import com.facebook.react.bridge.WritableMap; import com.facebook.react.module.annotations.ReactModule; +import java.util.concurrent.atomic.AtomicReference; + @ReactModule(name = KeyboardA11ySpec.NAME) public class KeyboardA11yModule extends KeyboardA11ySpec { - private static volatile boolean sEnabled = false; - @Nullable - private static volatile String sScope = null; + private static final class State { + final boolean enabled; + @Nullable final String scope; + + State(boolean enabled, @Nullable String scope) { + this.enabled = enabled; + this.scope = scope; + } + } + + private static final AtomicReference sState = + new AtomicReference<>(new State(false, null)); public KeyboardA11yModule(ReactApplicationContext reactContext) { super(reactContext); } public static boolean isEnabled() { - return sEnabled; + return sState.get().enabled; } @Nullable public static String getScope() { - return sScope; + return sState.get().scope; } @Override public void enable(String scope) { - sEnabled = true; - sScope = scope; + sState.set(new State(true, scope)); } @Override public void disable() { - sEnabled = false; - sScope = null; + sState.set(new State(false, null)); } @Override public void getState(Promise promise) { + State snapshot = sState.get(); WritableMap state = com.facebook.react.bridge.Arguments.createMap(); - state.putBoolean("enabled", sEnabled); - state.putString("scope", sScope); + state.putBoolean("enabled", snapshot.enabled); + state.putString("scope", snapshot.scope); promise.resolve(state); } } - diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index 281dc32f87f..1ad09c61f30 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -9,6 +9,8 @@ import androidx.annotation.Nullable; import com.facebook.react.uimanager.util.ReactFindViewUtil; import com.facebook.react.views.scroll.ReactScrollView; +import java.util.HashMap; +import java.util.Map; /** * Custom ScrollView for inverted FlatLists that corrects keyboard navigation so it follows @@ -20,8 +22,8 @@ */ public class InvertedScrollView extends ReactScrollView { - private boolean mKeyConsumed = false; - private @Nullable String mExitFocusNativeId; + private final Map mKeyConsumedMap = new HashMap<>(); + private volatile @Nullable String mExitFocusNativeId; public InvertedScrollView(Context context) { super(context); @@ -35,22 +37,21 @@ public void setExitFocusNativeId(@Nullable String nativeId) { public boolean dispatchKeyEvent(KeyEvent event) { int keyCode = event.getKeyCode(); - if (keyCode == KeyEvent.KEYCODE_DPAD_DOWN || keyCode == KeyEvent.KEYCODE_DPAD_UP) { + if (keyCode == KeyEvent.KEYCODE_DPAD_DOWN + || keyCode == KeyEvent.KEYCODE_DPAD_UP + || keyCode == KeyEvent.KEYCODE_TAB) { if (event.getAction() == KeyEvent.ACTION_DOWN) { - boolean isForward = (keyCode == KeyEvent.KEYCODE_DPAD_DOWN); - mKeyConsumed = handleCellNavigation(isForward); - return mKeyConsumed; + boolean isForward = keyCode == KeyEvent.KEYCODE_TAB + ? !event.isShiftPressed() + : (keyCode == KeyEvent.KEYCODE_DPAD_DOWN); + boolean consumed = handleCellNavigation(isForward); + mKeyConsumedMap.put(keyCode, consumed); + return consumed; } - return mKeyConsumed; - } - - if (keyCode == KeyEvent.KEYCODE_TAB) { - if (event.getAction() == KeyEvent.ACTION_DOWN) { - boolean isForward = !event.isShiftPressed(); - mKeyConsumed = handleCellNavigation(isForward); - return mKeyConsumed; + if (event.getAction() == KeyEvent.ACTION_UP) { + Boolean consumed = mKeyConsumedMap.remove(keyCode); + return consumed != null && consumed; } - return mKeyConsumed; } return super.dispatchKeyEvent(event); @@ -66,7 +67,11 @@ private boolean handleCellNavigation(boolean isForward) { return false; } - ViewGroup contentView = (ViewGroup) getChildAt(0); + View firstChild = getChildAt(0); + if (!(firstChild instanceof ViewGroup)) { + return false; + } + ViewGroup contentView = (ViewGroup) firstChild; int cellIndex = findContainingCellIndex(contentView, focused); if (cellIndex < 0) { return false; @@ -89,7 +94,7 @@ private boolean handleCellNavigation(boolean isForward) { return true; } - return true; + return false; } private int findContainingCellIndex(ViewGroup contentView, View focused) { @@ -116,8 +121,12 @@ private View findExitTarget(int direction) { if (!(rootView instanceof ViewGroup)) { return null; } + View focused = findFocus(); + if (focused == null) { + return null; + } View target = FocusFinder.getInstance() - .findNextFocus((ViewGroup) rootView, this, direction); + .findNextFocus((ViewGroup) rootView, focused, direction); if (target != null && !isDescendantOf(target, this)) { return target; } diff --git a/app/containers/MessageComposer/components/MessageComposerContent.tsx b/app/containers/MessageComposer/components/MessageComposerContent.tsx index 407bb26e93b..d0967c6afd0 100644 --- a/app/containers/MessageComposer/components/MessageComposerContent.tsx +++ b/app/containers/MessageComposer/components/MessageComposerContent.tsx @@ -12,6 +12,7 @@ import { EmojiSearchbar } from './EmojiSearchbar'; import { Toolbar } from './Toolbar'; import { Quotes } from './Quotes'; import { ComposerInput } from './ComposerInput'; +import { MESSAGE_COMPOSER_EXIT_FOCUS_NATIVE_ID } from '../../../lib/constants/accessibility'; interface MessageComposerContentProps { recordingAudio: boolean; @@ -35,6 +36,7 @@ export const MessageComposerContent = memo( return ( diff --git a/app/containers/message/Reactions.tsx b/app/containers/message/Reactions.tsx index 8d9e17b9909..2832258cd36 100644 --- a/app/containers/message/Reactions.tsx +++ b/app/containers/message/Reactions.tsx @@ -43,7 +43,8 @@ const AddReaction = React.memo(({ theme }: { theme: TSupportedThemes }) => { accessibilityRole='button' accessibilityLabel={I18n.t('Add_reaction')} style={[styles.reactionButton, { backgroundColor: themes[theme].surfaceRoom }]} - hitSlop={BUTTON_HIT_SLOP}> + hitSlop={BUTTON_HIT_SLOP} + android_ripple={{ color: themes[theme].strokeLight }}> @@ -68,7 +69,8 @@ const Reaction = React.memo(({ reaction, getCustomEmoji, theme }: IMessageReacti accessibilityLabel={`${reaction.emoji}, ${reaction.usernames.length}`} accessibilityState={{ selected: reacted }} style={[styles.reactionButton, { backgroundColor: reacted ? themes[theme].surfaceNeutral : themes[theme].surfaceRoom }]} - hitSlop={BUTTON_HIT_SLOP}> + hitSlop={BUTTON_HIT_SLOP} + android_ripple={{ color: themes[theme].strokeLight }}> boolean; } interface Props extends Omit { @@ -218,7 +219,7 @@ export default class InvertedScrollViewAdapter extends React.Component; return ( { style={styles.list} inverted renderScrollComponent={ - isIOS ? undefined : props => + isIOS ? undefined : props => } removeClippedSubviews={isIOS} initialNumToRender={7} From bc935c4f0c33cad2f830d666fcbe9429ea57e682 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 13 Apr 2026 17:49:27 -0300 Subject: [PATCH 066/108] simplify invertedScrollViewAdapter --- .../components/InvertedScrollViewAdapter.tsx | 145 +----------------- 1 file changed, 6 insertions(+), 139 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx b/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx index 649ea9c6670..9d8d9d0383d 100644 --- a/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx +++ b/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx @@ -1,12 +1,8 @@ import React from 'react'; import { - Keyboard, - Platform, StyleSheet, - TextInput, codegenNativeCommands, findNodeHandle, - type GestureResponderEvent, type LayoutChangeEvent, requireNativeComponent, type ScrollViewProps, @@ -19,26 +15,19 @@ interface InvertedScrollContentViewProps extends ViewProps { interface InvertedScrollViewNativeProps extends ScrollViewProps { exitFocusNativeId?: string; - onScrollShouldSetResponder?: (event: GestureResponderEvent) => boolean; } interface Props extends Omit { exitFocusNativeId?: string; } -interface State { - layoutHeight: number | null; -} - const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); -// Imperative scroll API for FlatList / VirtualizedList: -// `requireNativeComponent` refs do not get JS `scrollTo` / `scrollToEnd` like `ScrollView` does. -// Our Android `InvertedScrollViewManager` extends `ReactScrollViewManager`, so the native view -// accepts the same commands as RCTScrollView. We mirror RN's ScrollViewCommands pattern -// (`react-native/Libraries/Components/ScrollView/ScrollViewCommands.js`) via `codegenNativeCommands`, -// which dispatches commands correctly on both bridge and Fabric. +// Minimal compatibility wrapper used by FlatList/VirtualizedList when RoomView renders a custom +// Android scroll component for inverted content. Keep these methods in sync with list expectations: +// `scrollTo`, `scrollToEnd`, `flashScrollIndicators`, `getScrollableNode`, `getNativeScrollRef`, +// and `getScrollResponder`. Keyboard/focus traversal logic belongs to native Android classes. interface InvertedScrollViewCommands { scrollTo: (viewRef: React.ElementRef, x: number, y: number, animated: boolean) => void; scrollToEnd: (viewRef: React.ElementRef, animated: boolean) => void; @@ -49,62 +38,10 @@ const Commands = codegenNativeCommands({ supportedCommands: ['scrollTo', 'scrollToEnd', 'flashScrollIndicators'] }); -const IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16; - -export default class InvertedScrollViewAdapter extends React.Component { +export default class InvertedScrollViewAdapter extends React.Component { private scrollRef = React.createRef(); - private _keyboardMetrics: { height: number } | null = null; - private _isTouching = false; - private _lastMomentumScrollBeginTime = 0; - private _lastMomentumScrollEndTime = 0; - private _observedScrollSinceBecomingResponder = false; - private _subscriptionKeyboardDidShow?: { remove: () => void }; - private _subscriptionKeyboardDidHide?: { remove: () => void }; - - state: State = { - layoutHeight: null - }; - - componentDidMount() { - this._subscriptionKeyboardDidShow = Keyboard.addListener('keyboardDidShow', this.onKeyboardDidShow); - this._subscriptionKeyboardDidHide = Keyboard.addListener('keyboardDidHide', this.onKeyboardDidHide); - } - - componentWillUnmount() { - this._subscriptionKeyboardDidShow?.remove(); - this._subscriptionKeyboardDidHide?.remove(); - } - - private onKeyboardDidShow = (e: any) => { - this._keyboardMetrics = e?.endCoordinates ?? { height: 0 }; - }; - - private onKeyboardDidHide = (_e: any) => { - this._keyboardMetrics = null; - }; - - private isAnimating = () => { - const now = global.performance.now(); - const timeSinceLastMomentumScrollEnd = now - this._lastMomentumScrollEndTime; - return ( - timeSinceLastMomentumScrollEnd < IS_ANIMATING_TOUCH_START_THRESHOLD_MS || - this._lastMomentumScrollEndTime < this._lastMomentumScrollBeginTime - ); - }; - - private keyboardEventsAreUnreliable = () => Platform.OS === 'android' && Platform.Version < 30; - - private keyboardIsDismissible = () => { - const currentlyFocusedInput = TextInput.State.currentlyFocusedInput?.(); - const hasFocusedTextInput = currentlyFocusedInput != null; - const softKeyboardMayBeOpen = this._keyboardMetrics != null || this.keyboardEventsAreUnreliable(); - return hasFocusedTextInput && softKeyboardMayBeOpen; - }; private handleLayout = (e: LayoutChangeEvent) => { - if (this.props.invertStickyHeaders === true) { - this.setState({ layoutHeight: e.nativeEvent.layout.height }); - } this.props.onLayout?.(e); }; @@ -113,67 +50,6 @@ export default class InvertedScrollViewAdapter extends React.Component { - this._observedScrollSinceBecomingResponder = true; - this.props.onScroll?.(e); - }; - - private handleMomentumScrollBegin = (e: any) => { - this._lastMomentumScrollBeginTime = global.performance.now(); - this.props.onMomentumScrollBegin?.(e); - }; - - private handleMomentumScrollEnd = (e: any) => { - this._lastMomentumScrollEndTime = global.performance.now(); - this.props.onMomentumScrollEnd?.(e); - }; - - private handleResponderGrant = (e: GestureResponderEvent) => { - this._observedScrollSinceBecomingResponder = false; - this.props.onResponderGrant?.(e); - }; - - private handleResponderRelease = (e: GestureResponderEvent) => { - this._isTouching = e.nativeEvent.touches.length !== 0; - this.props.onResponderRelease?.(e); - }; - - private handleResponderTerminationRequest = () => !this._observedScrollSinceBecomingResponder; - - private handleScrollShouldSetResponder = () => { - if (this.props.disableScrollViewPanResponder === true) { - return false; - } - return this._isTouching; - }; - - private handleStartShouldSetResponder = (e: GestureResponderEvent) => { - if (this.props.disableScrollViewPanResponder === true) { - return false; - } - const currentlyFocusedInput = TextInput.State.currentlyFocusedInput?.(); - if ( - this.props.keyboardShouldPersistTaps === 'handled' && - this.keyboardIsDismissible() && - e.target !== currentlyFocusedInput - ) { - return true; - } - return false; - }; - - private handleStartShouldSetResponderCapture = (e: GestureResponderEvent) => { - if (this.isAnimating()) { - return true; - } - if (this.props.disableScrollViewPanResponder === true) { - return false; - } - const { keyboardShouldPersistTaps } = this.props; - const keyboardNeverPersistTaps = !keyboardShouldPersistTaps || keyboardShouldPersistTaps === 'never'; - return keyboardNeverPersistTaps && this.keyboardIsDismissible() && e.target != null; - }; - private setNativeRef = (instance: any) => { (this.scrollRef as React.MutableRefObject).current = instance; }; @@ -226,16 +102,7 @@ export default class InvertedScrollViewAdapter extends React.Component + onLayout={this.handleLayout}> Date: Mon, 13 Apr 2026 18:37:22 -0300 Subject: [PATCH 067/108] fix: snapshot --- .../__snapshots__/MessageComposer.test.tsx.snap | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap index 75645bb6264..784af1d6b08 100644 --- a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap +++ b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap @@ -261,6 +261,7 @@ exports[`MessageComposer Audio tap record 1`] = ` exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` [ Date: Tue, 14 Apr 2026 15:00:24 -0300 Subject: [PATCH 068/108] fix: imports --- .../RoomView/List/components/InvertedScrollViewAdapter.tsx | 2 +- app/views/RoomView/index.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx b/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx index 9d8d9d0383d..77861a704a1 100644 --- a/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx +++ b/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx @@ -1,13 +1,13 @@ import React from 'react'; import { StyleSheet, - codegenNativeCommands, findNodeHandle, type LayoutChangeEvent, requireNativeComponent, type ScrollViewProps, type ViewProps } from 'react-native'; +import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands'; interface InvertedScrollContentViewProps extends ViewProps { isInvertedContent?: boolean; diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index 92ea7f6da4d..91bd1112d10 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -219,7 +219,7 @@ class RoomView extends React.Component { } componentDidMount() { - const { navigation, dispatch, isMasterDetail } = this.props; + const { navigation, dispatch } = this.props; const { selectedMessages } = this.state; dispatch(clearInAppFeedback()); this.mounted = true; @@ -257,7 +257,7 @@ class RoomView extends React.Component { }); this.unsubscribeFocus = navigation.addListener('focus', () => { InteractionManager.runAfterInteractions(() => { - if (isMasterDetail) { + if (this.props.isMasterDetail) { this.roomHeaderRef.current?.focus(); return; } From a096bec7dba988af24e9083832d57926cd7e93e3 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 14 Apr 2026 15:34:27 -0300 Subject: [PATCH 069/108] code improvements --- .../chat/rocket/reactnative/MainActivity.kt | 41 ------------- .../reactnative/a11y/KeyboardA11yModule.java | 59 ------------------- .../reactnative/a11y/KeyboardA11ySpec.java | 31 ---------- .../rocket/reactnative/scroll/FocusUtils.java | 30 ---------- .../scroll/InvertedScrollContentView.java | 7 --- .../scroll/InvertedScrollView.java | 35 +---------- android/app/src/main/res/values/ids.xml | 5 +- app/lib/native/NativeKeyboardA11yAndroid.ts | 25 -------- 8 files changed, 4 insertions(+), 229 deletions(-) delete mode 100644 android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java delete mode 100644 android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11ySpec.java delete mode 100644 android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java delete mode 100644 app/lib/native/NativeKeyboardA11yAndroid.ts diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt b/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt index eac65e52db2..08cc7191569 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt +++ b/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt @@ -2,16 +2,12 @@ package chat.rocket.reactnative import android.os.Bundle import android.content.Intent -import android.view.KeyEvent -import android.view.View import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled import com.facebook.react.defaults.DefaultReactActivityDelegate import com.zoontek.rnbootsplash.RNBootSplash import chat.rocket.reactnative.notification.NotificationIntentHandler -import chat.rocket.reactnative.a11y.KeyboardA11yModule -import chat.rocket.reactnative.scroll.FocusUtils class MainActivity : ReactActivity() { @@ -44,43 +40,6 @@ class MainActivity : ReactActivity() { NotificationIntentHandler.handleIntent(this, intent) } - override fun dispatchKeyEvent(event: KeyEvent): Boolean { - if (KeyboardA11yModule.isEnabled()) { - val current: View? = currentFocus - if (current != null && FocusUtils.hasInvertedParent(current)) { - if (event.action == KeyEvent.ACTION_DOWN) { - val keyCode = event.keyCode - val isShiftPressed = event.isShiftPressed - val mapped = when (keyCode) { - // Invert DPAD vertical arrows for inverted lists - KeyEvent.KEYCODE_DPAD_DOWN -> KeyEvent.KEYCODE_DPAD_UP - KeyEvent.KEYCODE_DPAD_UP -> KeyEvent.KEYCODE_DPAD_DOWN - // Map Tab / Shift+Tab to vertical navigation as well - KeyEvent.KEYCODE_TAB -> - if (isShiftPressed) KeyEvent.KEYCODE_DPAD_UP else KeyEvent.KEYCODE_DPAD_DOWN - else -> keyCode - } - if (mapped != keyCode) { - val invertedEvent = KeyEvent( - event.downTime, - event.eventTime, - event.action, - mapped, - event.repeatCount, - event.metaState, - event.deviceId, - event.scanCode, - event.flags, - event.source - ) - return super.dispatchKeyEvent(invertedEvent) - } - } - } - } - return super.dispatchKeyEvent(event) - } - override fun invokeDefaultOnBackPressed() { moveTaskToBack(true) } diff --git a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java deleted file mode 100644 index f72f0fd6392..00000000000 --- a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11yModule.java +++ /dev/null @@ -1,59 +0,0 @@ -package chat.rocket.reactnative.a11y; - -import androidx.annotation.Nullable; - -import com.facebook.react.bridge.Promise; -import com.facebook.react.bridge.ReactApplicationContext; -import com.facebook.react.bridge.WritableMap; -import com.facebook.react.module.annotations.ReactModule; - -import java.util.concurrent.atomic.AtomicReference; - -@ReactModule(name = KeyboardA11ySpec.NAME) -public class KeyboardA11yModule extends KeyboardA11ySpec { - - private static final class State { - final boolean enabled; - @Nullable final String scope; - - State(boolean enabled, @Nullable String scope) { - this.enabled = enabled; - this.scope = scope; - } - } - - private static final AtomicReference sState = - new AtomicReference<>(new State(false, null)); - - public KeyboardA11yModule(ReactApplicationContext reactContext) { - super(reactContext); - } - - public static boolean isEnabled() { - return sState.get().enabled; - } - - @Nullable - public static String getScope() { - return sState.get().scope; - } - - @Override - public void enable(String scope) { - sState.set(new State(true, scope)); - } - - @Override - public void disable() { - sState.set(new State(false, null)); - } - - @Override - public void getState(Promise promise) { - State snapshot = sState.get(); - WritableMap state = com.facebook.react.bridge.Arguments.createMap(); - state.putBoolean("enabled", snapshot.enabled); - state.putString("scope", snapshot.scope); - promise.resolve(state); - } -} diff --git a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11ySpec.java b/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11ySpec.java deleted file mode 100644 index eb0bc0430f2..00000000000 --- a/android/app/src/main/java/chat/rocket/reactnative/a11y/KeyboardA11ySpec.java +++ /dev/null @@ -1,31 +0,0 @@ -package chat.rocket.reactnative.a11y; - -import com.facebook.react.bridge.Promise; -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; - -public abstract class KeyboardA11ySpec extends ReactContextBaseJavaModule implements TurboModule { - - public static final String NAME = "KeyboardA11y"; - - public KeyboardA11ySpec(ReactApplicationContext reactContext) { - super(reactContext); - } - - @Override - public String getName() { - return NAME; - } - - @ReactMethod - public abstract void enable(String scope); - - @ReactMethod - public abstract void disable(); - - @ReactMethod - public abstract void getState(Promise promise); -} - diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java deleted file mode 100644 index ec17d8e7cf5..00000000000 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/FocusUtils.java +++ /dev/null @@ -1,30 +0,0 @@ -package chat.rocket.reactnative.scroll; - -import android.view.View; -import android.view.ViewParent; -import chat.rocket.reactnative.R; - -/** - * Utilities for focus-related queries inside custom scroll views. - */ -public final class FocusUtils { - - private FocusUtils() {} - - public static boolean hasInvertedParent(View view) { - if (view == null) { - return false; - } - ViewParent parent = view.getParent(); - while (parent instanceof View) { - View parentView = (View) parent; - Object tag = parentView.getTag(R.id.tag_inverted_list); - if (tag instanceof Boolean && (Boolean) tag) { - return true; - } - parent = parentView.getParent(); - } - return false; - } -} - diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java index 02003559c6d..c97d7ce5460 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java @@ -5,7 +5,6 @@ import com.facebook.react.views.view.ReactViewGroup; import java.util.ArrayList; import java.util.Collections; -import chat.rocket.reactnative.R; /** * Content view for inverted FlatLists. Reports its children to accessibility in reversed order so @@ -21,11 +20,6 @@ public InvertedScrollContentView(android.content.Context context) { public void setIsInvertedContent(boolean isInverted) { mIsInvertedContent = isInverted; - if (isInverted) { - setTag(R.id.tag_inverted_list, true); - } else { - setTag(R.id.tag_inverted_list, null); - } } @Override @@ -76,4 +70,3 @@ public void addFocusables(ArrayList views, int direction, int focusableMod } } } - diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java index 1ad09c61f30..9ab9731390f 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollView.java @@ -1,7 +1,6 @@ package chat.rocket.reactnative.scroll; import android.content.Context; -import android.view.FocusFinder; import android.view.KeyEvent; import android.view.View; import android.view.ViewGroup; @@ -87,8 +86,7 @@ private boolean handleCellNavigation(boolean isForward) { } } - int exitDir = isForward ? View.FOCUS_DOWN : View.FOCUS_UP; - View exitTarget = findExitTarget(exitDir); + View exitTarget = findExitTarget(); if (exitTarget != null) { exitTarget.requestFocus(); return true; @@ -110,37 +108,10 @@ private int findContainingCellIndex(ViewGroup contentView, View focused) { return current != null ? contentView.indexOfChild(current) : -1; } - private View findExitTarget(int direction) { + private View findExitTarget() { if (mExitFocusNativeId != null) { - View target = ReactFindViewUtil.findView(getRootView(), mExitFocusNativeId); - if (target != null) { - return target; - } - } - View rootView = getRootView(); - if (!(rootView instanceof ViewGroup)) { - return null; - } - View focused = findFocus(); - if (focused == null) { - return null; - } - View target = FocusFinder.getInstance() - .findNextFocus((ViewGroup) rootView, focused, direction); - if (target != null && !isDescendantOf(target, this)) { - return target; + return ReactFindViewUtil.findView(getRootView(), mExitFocusNativeId); } return null; } - - private static boolean isDescendantOf(View view, ViewGroup ancestor) { - ViewParent parent = view.getParent(); - while (parent != null) { - if (parent == ancestor) { - return true; - } - parent = parent.getParent(); - } - return false; - } } diff --git a/android/app/src/main/res/values/ids.xml b/android/app/src/main/res/values/ids.xml index bab9bf66bef..545704f2fe3 100644 --- a/android/app/src/main/res/values/ids.xml +++ b/android/app/src/main/res/values/ids.xml @@ -1,5 +1,2 @@ - - - - + diff --git a/app/lib/native/NativeKeyboardA11yAndroid.ts b/app/lib/native/NativeKeyboardA11yAndroid.ts deleted file mode 100644 index 201924105f9..00000000000 --- a/app/lib/native/NativeKeyboardA11yAndroid.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { TurboModule } from 'react-native'; -import { TurboModuleRegistry } from 'react-native'; - -export interface KeyboardA11yState { - enabled: boolean; - scope: 'room-view' | null; -} - -interface Spec extends TurboModule { - enable(scope: 'room-view'): void; - disable(): void; - getState(): Promise; -} - -const NativeModule = TurboModuleRegistry.getEnforcing('KeyboardA11y'); - -export const enableRoomViewKeyboardA11y = (scope: 'room-view' = 'room-view') => { - NativeModule.enable(scope); -}; - -export const disableKeyboardA11y = () => { - NativeModule.disable(); -}; - -export const getKeyboardA11yState = () => NativeModule.getState(); From d86e019413f79c339a6fea021fdf050b7b385eb2 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 14 Apr 2026 16:53:25 -0300 Subject: [PATCH 070/108] chore: keyboard navigation test --- .../accessibility-and-appearance.yaml | 203 ------------------ .../keyboard-navigation-onboarding.yaml | 67 ++++++ 2 files changed, 67 insertions(+), 203 deletions(-) delete mode 100644 .maestro/tests/assorted/accessibility-and-appearance.yaml create mode 100644 .maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml diff --git a/.maestro/tests/assorted/accessibility-and-appearance.yaml b/.maestro/tests/assorted/accessibility-and-appearance.yaml deleted file mode 100644 index c3df95a495f..00000000000 --- a/.maestro/tests/assorted/accessibility-and-appearance.yaml +++ /dev/null @@ -1,203 +0,0 @@ -appId: chat.rocket.reactnative -name: Accessibility and Appearance -onFlowStart: - - runFlow: '../../helpers/setup.yaml' -onFlowComplete: - - evalScript: ${output.utils.deleteCreatedUsers()} -tags: - - test-5 - - android-only - ---- -- evalScript: ${output.user = output.utils.createUser()} -- runFlow: - file: '../../helpers/login-with-deeplink.yaml' - env: - USERNAME: ${output.user.username} - PASSWORD: ${output.user.password} -- runFlow: - file: './utils/go-to-accessibility-appearance.yaml' - -# should have accessibility view list -- extendedWaitUntil: - visible: - id: 'accessibility-view-list' - timeout: 60000 - -# should have menu button -- extendedWaitUntil: - visible: - id: 'accessibility-view-drawer' - timeout: 60000 - -# should have theme button -- extendedWaitUntil: - visible: - id: 'accessibility-theme-button' - timeout: 60000 - -# should have display button -- extendedWaitUntil: - visible: - id: 'accessibility-display-button' - timeout: 60000 - -# should have rooms with hashtag symbol switch -- extendedWaitUntil: - visible: - id: 'accessibility-rooms-with-hashtag-symbol-switch' - timeout: 60000 - -# should have mentions with at symbol switch -- extendedWaitUntil: - visible: - id: 'accessibility-mentions-with-at-symbol-switch' - timeout: 60000 - -# should have autoplay gifs switch -- extendedWaitUntil: - visible: - id: 'accessibility-autoplay-gifs-switch' - timeout: 60000 - -# should enable mentions with @ symbol -- extendedWaitUntil: - visible: - id: 'accessibility-mentions-with-at-symbol-switch' - timeout: 60000 -- tapOn: - id: 'accessibility-mentions-with-at-symbol-switch' - -- extendedWaitUntil: - visible: - id: 'accessibility-view-drawer' - timeout: 60000 -- tapOn: - id: 'accessibility-view-drawer' -- extendedWaitUntil: - visible: - id: 'sidebar-chats' - timeout: 60000 -- tapOn: - id: 'sidebar-chats' -- runFlow: - file: '../../helpers/search-and-navigate-room.yaml' - env: - ROOM: 'maestro-accessibility-test' - -- extendedWaitUntil: - visible: - text: '@all - all mention' - timeout: 60000 -- extendedWaitUntil: - visible: - text: '@rocket.cat - user mention' - timeout: 60000 - -# should disable mentions with @ symbol -- tapOn: - id: header-back -- runFlow: - file: './utils/go-to-accessibility-appearance.yaml' - -- extendedWaitUntil: - visible: - id: 'accessibility-mentions-with-at-symbol-switch' - timeout: 60000 -- tapOn: - id: 'accessibility-mentions-with-at-symbol-switch' - -- extendedWaitUntil: - visible: - id: 'accessibility-view-drawer' - timeout: 60000 -- tapOn: - id: 'accessibility-view-drawer' -- extendedWaitUntil: - visible: - id: 'sidebar-chats' - timeout: 60000 -- tapOn: - id: 'sidebar-chats' -- runFlow: - file: '../../helpers/search-and-navigate-room.yaml' - env: - ROOM: 'maestro-accessibility-test' - -- extendedWaitUntil: - visible: - text: 'all - all mention' - timeout: 60000 -- extendedWaitUntil: - visible: - text: 'rocket.cat - user mention' - timeout: 60000 - -# should enable rooms with # symbol -- tapOn: - id: header-back -- runFlow: - file: './utils/go-to-accessibility-appearance.yaml' - -- extendedWaitUntil: - visible: - id: 'accessibility-rooms-with-hashtag-symbol-switch' - timeout: 60000 -- tapOn: - id: 'accessibility-rooms-with-hashtag-symbol-switch' - -- extendedWaitUntil: - visible: - id: 'accessibility-view-drawer' - timeout: 60000 -- tapOn: - id: 'accessibility-view-drawer' -- extendedWaitUntil: - visible: - id: 'sidebar-chats' - timeout: 60000 -- tapOn: - id: 'sidebar-chats' -- runFlow: - file: '../../helpers/search-and-navigate-room.yaml' - env: - ROOM: 'maestro-accessibility-test' - -- extendedWaitUntil: - visible: - text: '#general - channel mention' - timeout: 60000 - -# should disable mentions with # symbol -- tapOn: - id: header-back -- runFlow: - file: './utils/go-to-accessibility-appearance.yaml' - -- extendedWaitUntil: - visible: - id: 'accessibility-rooms-with-hashtag-symbol-switch' - timeout: 60000 -- tapOn: - id: 'accessibility-rooms-with-hashtag-symbol-switch' - -- extendedWaitUntil: - visible: - id: 'accessibility-view-drawer' - timeout: 60000 -- tapOn: - id: 'accessibility-view-drawer' -- extendedWaitUntil: - visible: - id: 'sidebar-chats' - timeout: 60000 -- tapOn: - id: 'sidebar-chats' -- runFlow: - file: '../../helpers/search-and-navigate-room.yaml' - env: - ROOM: 'maestro-accessibility-test' -- extendedWaitUntil: - visible: - text: 'general - channel mention' - timeout: 60000 diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml new file mode 100644 index 00000000000..992deb23ae6 --- /dev/null +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml @@ -0,0 +1,67 @@ +appId: chat.rocket.reactnative +name: Accessibility and Appearance +onFlowStart: + - runFlow: '../../helpers/setup.yaml' +onFlowComplete: + - evalScript: ${output.utils.deleteCreatedUsers()} +tags: + - test-5 + - android-only + +--- +- evalScript: ${output.user = output.utils.createUser()} +- evalScript: ${output.keyboardMessage = 'keyboard-nav-' + output.random(6)} + +- runFlow: ../../helpers/launch-app.yaml + +# login from onboarding/NewServerView +- extendedWaitUntil: + visible: + id: 'new-server-view' + timeout: 60000 +- tapOn: + id: 'new-server-view-input' +- inputText: ${output.data.server} +- runFlow: '../../helpers/hide-keyboard.yaml' +- pressKey: tab +- pressKey: enter +- extendedWaitUntil: + visible: 'Login' + timeout: 60000 +- tapOn: 'Login' + +- extendedWaitUntil: + visible: + id: 'login-view' + timeout: 60000 +- pressKey: Remote Dpad Down + +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Down + +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Down + +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Down + +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Down +- inputText: ${output.user.email} +- pressKey: enter +- waitForAnimationToEnd: + timeout: 1000 +- inputText: ${output.user.password} +- runFlow: '../../helpers/hide-keyboard.yaml' +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: enter +- extendedWaitUntil: + visible: + id: 'rooms-list-view' + timeout: 60000 +# From 9f257b4a66f185348f972e725c00e1464d99bfe7 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 14 Apr 2026 20:01:07 -0300 Subject: [PATCH 071/108] feat: e2e tests batch --- .../keyboard-navigation-components.yaml | 124 ++++++++++++++++++ .../keyboard-navigation-onboarding.yaml | 11 +- 2 files changed, 128 insertions(+), 7 deletions(-) create mode 100644 .maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml new file mode 100644 index 00000000000..d1e8d48754e --- /dev/null +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml @@ -0,0 +1,124 @@ +appId: chat.rocket.reactnative +name: Keyboard Navigation Components +onFlowStart: + - runFlow: '../../helpers/setup.yaml' +onFlowComplete: + - evalScript: ${output.utils.deleteCreatedUsers()} +tags: + - test-14 + - android-only + +--- +- evalScript: ${output.user = output.utils.createUser()} + +- runFlow: + file: '../../helpers/login-with-deeplink.yaml' + env: + USERNAME: ${output.user.username} + PASSWORD: ${output.user.password} + +# open Accessibility & appearance +- tapOn: + id: 'rooms-list-view-sidebar' +- extendedWaitUntil: + visible: + id: 'sidebar-accessibility' + timeout: 60000 +- tapOn: + id: 'sidebar-accessibility' +- extendedWaitUntil: + visible: + id: 'accessibility-view-list' + timeout: 60000 + +# switches +- pressKey: Remote Dpad Down +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Down +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Down +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: enter +- pressKey: Remote Dpad Down +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: enter +- pressKey: Remote Dpad Down +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: enter + +# open Theme and navigate radio buttons +- pressKey: Remote Dpad Up +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Up +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Up +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: Remote Dpad Up +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: enter +- extendedWaitUntil: + visible: + id: 'theme-view' + timeout: 60000 +- pressKey: Remote Dpad Down +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: enter +- pressKey: Remote Dpad Down +- waitForAnimationToEnd: + timeout: 1000 +- pressKey: enter + +# open Toasts and Dialogs action sheet and navigate through options +- tapOn: + id: 'custom-header-back' +- extendedWaitUntil: + visible: + id: 'accessibility-view-list' + timeout: 60000 +- assertVisible: Show alerts as +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: enter +- waitForAnimationToEnd: + timeout: 1000 +- assertVisible: 'Toasts. Dismissed automatically. Checked' +- assertVisible: 'Dialogs. Require manual dismissal. Unchecked' +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: enter +- waitForAnimationToEnd: + timeout: 1000 +- assertVisible: Dialogs +- assertVisible: Show alerts as +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: enter +- waitForAnimationToEnd: + timeout: 1000 +- assertVisible: 'Toasts. Dismissed automatically. Unchecked' +- assertVisible: 'Dialogs. Require manual dismissal. Checked' +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: enter +- waitForAnimationToEnd: + timeout: 1000 +- assertVisible: Toasts +- assertVisible: Show alerts as diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml index 992deb23ae6..80802d6cc9e 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml @@ -1,11 +1,11 @@ appId: chat.rocket.reactnative -name: Accessibility and Appearance +name: Keyboard Navigation Onboarding onFlowStart: - runFlow: '../../helpers/setup.yaml' onFlowComplete: - evalScript: ${output.utils.deleteCreatedUsers()} tags: - - test-5 + - test-14 - android-only --- @@ -19,16 +19,14 @@ tags: visible: id: 'new-server-view' timeout: 60000 -- tapOn: - id: 'new-server-view-input' - inputText: ${output.data.server} -- runFlow: '../../helpers/hide-keyboard.yaml' - pressKey: tab - pressKey: enter - extendedWaitUntil: visible: 'Login' timeout: 60000 -- tapOn: 'Login' +- pressKey: tab +- pressKey: enter - extendedWaitUntil: visible: @@ -56,7 +54,6 @@ tags: - waitForAnimationToEnd: timeout: 1000 - inputText: ${output.user.password} -- runFlow: '../../helpers/hide-keyboard.yaml' - waitForAnimationToEnd: timeout: 1000 - pressKey: enter From 75f5617d9a1b8e35e052e952b2906dd5079027a2 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 14 Apr 2026 20:18:06 -0300 Subject: [PATCH 072/108] feat: e2e tests batch --- .../tests/keyboardNavigation/keyboard-navigation-onboarding.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml index 80802d6cc9e..2458f745ce0 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml @@ -56,6 +56,7 @@ tags: - inputText: ${output.user.password} - waitForAnimationToEnd: timeout: 1000 +- pressKey: Remote Dpad Down - pressKey: enter - extendedWaitUntil: visible: From 1d487f6d7e4b0616dbe4d81fd2954d2e5e641bb1 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 14 Apr 2026 20:19:12 -0300 Subject: [PATCH 073/108] fix: test --- .../keyboard-navigation-onboarding.yaml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml index 2458f745ce0..1571c6c9be9 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-onboarding.yaml @@ -25,7 +25,6 @@ tags: - extendedWaitUntil: visible: 'Login' timeout: 60000 -- pressKey: tab - pressKey: enter - extendedWaitUntil: @@ -33,19 +32,12 @@ tags: id: 'login-view' timeout: 60000 - pressKey: Remote Dpad Down - - waitForAnimationToEnd: timeout: 1000 - pressKey: Remote Dpad Down - - waitForAnimationToEnd: timeout: 1000 - pressKey: Remote Dpad Down - -- waitForAnimationToEnd: - timeout: 1000 -- pressKey: Remote Dpad Down - - waitForAnimationToEnd: timeout: 1000 - pressKey: Remote Dpad Down @@ -54,9 +46,6 @@ tags: - waitForAnimationToEnd: timeout: 1000 - inputText: ${output.user.password} -- waitForAnimationToEnd: - timeout: 1000 -- pressKey: Remote Dpad Down - pressKey: enter - extendedWaitUntil: visible: From d8fb7179031fd72a0cf9f32285bdb19d64a25c92 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Tue, 14 Apr 2026 21:43:56 -0300 Subject: [PATCH 074/108] chore: keyboard-natigation-room test --- .../keyboard-navigation-room.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml new file mode 100644 index 00000000000..adc89dfa2eb --- /dev/null +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -0,0 +1,34 @@ +appId: chat.rocket.reactnative +name: Keyboard Navigation Room +jsEngine: graaljs +onFlowStart: + - runFlow: '../../helpers/setup.yaml' +onFlowComplete: + - evalScript: ${output.utils.deleteCreatedUsers()} +tags: + - test-14 + - android-only + +--- +- evalScript: ${output.user = output.utils.createUser()} +- evalScript: ${output.room = output.utils.createRandomRoom(output.user.username, output.user.password)} +- evalScript: ${output.keyboardMessage = 'keyboard-room-' + output.random(6)} + +- runFlow: + file: '../../helpers/login-with-deeplink.yaml' + env: + USERNAME: ${output.user.username} + PASSWORD: ${output.user.password} +# Navigate to RoomView +- extendedWaitUntil: + visible: + text: '${output.room.name}' + timeout: 60000 +- extendedWaitUntil: + visible: + text: 'Save your encryption password' + timeout: 60000 +- pressKey: Remote Dpad Up +- pressKey: Remote Dpad Up +- pressKey: Remote Dpad Down +- pressKey: enter From ef0eb01fc2e4820103eacdf1ed77e9ed7b1586bb Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 15 Apr 2026 10:49:19 -0300 Subject: [PATCH 075/108] device with keyboard navigation --- .github/workflows/maestro-android.yml | 48 ++++++++++++++- .../keyboard-navigation-room.yaml | 15 +++++ scripts/create-avd-keyboard-navigation.sh | 58 +++++++++++++++++++ 3 files changed, 120 insertions(+), 1 deletion(-) create mode 100755 scripts/create-avd-keyboard-navigation.sh diff --git a/.github/workflows/maestro-android.yml b/.github/workflows/maestro-android.yml index a12e381f5dc..5b8e2906d39 100644 --- a/.github/workflows/maestro-android.yml +++ b/.github/workflows/maestro-android.yml @@ -67,7 +67,53 @@ jobs: - name: Make Maestro script executable run: chmod +x .github/scripts/run-maestro.sh - - name: Start Android Emulator and Run Maestro Tests + - name: Create Keyboard-enabled AVD (shard 14) + if: ${{ inputs.shard == '14' }} + run: | + set -eux + + ANDROID_SDK="${ANDROID_HOME:-${ANDROID_SDK_ROOT:-/usr/local/lib/android/sdk}}" + SDKMANAGER="$ANDROID_SDK/cmdline-tools/latest/bin/sdkmanager" + AVDMANAGER="$ANDROID_SDK/cmdline-tools/latest/bin/avdmanager" + AVD_NAME="Pixel_API_34_Keyboard" + IMAGE="system-images;android-34;google_apis;x86_64" + AVD_CONFIG="$HOME/.android/avd/${AVD_NAME}.avd/config.ini" + + "$SDKMANAGER" --install emulator "$IMAGE" + yes | "$SDKMANAGER" --licenses > /dev/null || true + + echo "no" | "$AVDMANAGER" create avd -n "$AVD_NAME" -d pixel_7_pro --package "$IMAGE" --force + + { + echo "hw.keyboard=yes" + echo "hw.keyboard.lid=no" + echo "hw.lcd.density=440" + echo "hw.lcd.height=2280" + echo "hw.lcd.width=1080" + } >> "$AVD_CONFIG" + + echo "$AVD_NAME created with physical keyboard support" + + - name: Start Android Emulator and Run Maestro Tests (keyboard AVD) + if: ${{ inputs.shard == '14' }} + uses: reactivecircus/android-emulator-runner@v2 + timeout-minutes: 60 + with: + api-level: 34 + disk-size: 4096M + arch: x86_64 + target: google_apis + avd-name: Pixel_API_34_Keyboard + cores: 4 + ram-size: 4096M + force-avd-creation: false + disable-animations: true + emulator-boot-timeout: 900 + emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -accel on + script: ./.github/scripts/run-maestro.sh android ${{ inputs.shard }} + + - name: Start Android Emulator and Run Maestro Tests (default) + if: ${{ inputs.shard != '14' }} uses: reactivecircus/android-emulator-runner@v2 timeout-minutes: 60 with: diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index adc89dfa2eb..af0ba4e430b 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -32,3 +32,18 @@ tags: - pressKey: Remote Dpad Up - pressKey: Remote Dpad Down - pressKey: enter + +# Send a message using TV remote / hardware keys only (no tapOn). +# Move focus toward the composer; tune `times` if focus order on the device changes. +- extendedWaitUntil: + visible: + id: message-composer-input + timeout: 60000 +- pressKey: Remote Dpad Down +- inputText: ${output.keyboardMessage} +# Submit: ComposerInput wires onSubmitEditing -> send when soft keyboard is hidden (TV / physical keyboard) +- pressKey: enter +- extendedWaitUntil: + visible: + id: 'message-content-${output.keyboardMessage}' + timeout: 60000 diff --git a/scripts/create-avd-keyboard-navigation.sh b/scripts/create-avd-keyboard-navigation.sh new file mode 100755 index 00000000000..037de5d8d8c --- /dev/null +++ b/scripts/create-avd-keyboard-navigation.sh @@ -0,0 +1,58 @@ +#!/usr/bin/env bash +set -e + +if [ -z "$ANDROID_HOME" ]; then + export ANDROID_HOME="$ANDROID_SDK_ROOT" +fi + +if [ -z "$ANDROID_HOME" ]; then + export ANDROID_HOME="$HOME/Android/Sdk" +fi + +export PATH="$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/platform-tools:$ANDROID_HOME/emulator:$PATH" + +API_LEVEL="${API_LEVEL:-31}" +TARGET="${TARGET:-default}" +DEVICE_PROFILE="${DEVICE_PROFILE:-pixel}" + +HOST_ARCH="$(uname -m)" +if [[ "$HOST_ARCH" == "arm64" || "$HOST_ARCH" == "aarch64" ]]; then + ABI="${ABI:-arm64-v8a}" +else + ABI="${ABI:-x86_64}" +fi + +AVD_NAME="${AVD_NAME:-Pixel_API_${API_LEVEL}_AOSP_Keyboard}" +IMAGE="system-images;android-${API_LEVEL};${TARGET};${ABI}" +CONFIG="$HOME/.android/avd/${AVD_NAME}.avd/config.ini" + +echo "ANDROID_HOME=$ANDROID_HOME" +echo "Host architecture: $HOST_ARCH" +echo "Using image: $IMAGE" +echo "Creating AVD: $AVD_NAME" + +echo "Accepting Android SDK licenses" +yes | sdkmanager --licenses > /dev/null || true + +echo "Installing emulator + system image" +sdkmanager --install emulator +sdkmanager "$IMAGE" + +echo "Creating AVD profile" +echo "no" | avdmanager create avd \ + -n "$AVD_NAME" \ + -d "$DEVICE_PROFILE" \ + --package "$IMAGE" \ + --force + +echo "Applying keyboard-navigation AVD config" +{ + echo "hw.keyboard=yes" + echo "hw.keyboard.lid=no" + echo "hw.lcd.density=440" + echo "hw.lcd.height=2280" + echo "hw.lcd.width=1080" + echo "hw.gpu.enabled=yes" +} >> "$CONFIG" + +echo "AVD created: $AVD_NAME" From 5f645311014eb8bd1324552dd9734137b45b98de Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 15 Apr 2026 13:05:18 -0300 Subject: [PATCH 076/108] rollback changs and fix test run on CI --- .github/workflows/build-pr.yml | 2 +- .../assorted/acessibility-and-appearance.yaml | 203 ++++++++++++++++++ 2 files changed, 204 insertions(+), 1 deletion(-) create mode 100644 .maestro/tests/assorted/acessibility-and-appearance.yaml diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 9871d27b04d..b1731a36ab3 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -82,7 +82,7 @@ jobs: secrets: inherit strategy: matrix: - shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] + shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] fail-fast: false with: shard: ${{ matrix.shard }} diff --git a/.maestro/tests/assorted/acessibility-and-appearance.yaml b/.maestro/tests/assorted/acessibility-and-appearance.yaml new file mode 100644 index 00000000000..c3df95a495f --- /dev/null +++ b/.maestro/tests/assorted/acessibility-and-appearance.yaml @@ -0,0 +1,203 @@ +appId: chat.rocket.reactnative +name: Accessibility and Appearance +onFlowStart: + - runFlow: '../../helpers/setup.yaml' +onFlowComplete: + - evalScript: ${output.utils.deleteCreatedUsers()} +tags: + - test-5 + - android-only + +--- +- evalScript: ${output.user = output.utils.createUser()} +- runFlow: + file: '../../helpers/login-with-deeplink.yaml' + env: + USERNAME: ${output.user.username} + PASSWORD: ${output.user.password} +- runFlow: + file: './utils/go-to-accessibility-appearance.yaml' + +# should have accessibility view list +- extendedWaitUntil: + visible: + id: 'accessibility-view-list' + timeout: 60000 + +# should have menu button +- extendedWaitUntil: + visible: + id: 'accessibility-view-drawer' + timeout: 60000 + +# should have theme button +- extendedWaitUntil: + visible: + id: 'accessibility-theme-button' + timeout: 60000 + +# should have display button +- extendedWaitUntil: + visible: + id: 'accessibility-display-button' + timeout: 60000 + +# should have rooms with hashtag symbol switch +- extendedWaitUntil: + visible: + id: 'accessibility-rooms-with-hashtag-symbol-switch' + timeout: 60000 + +# should have mentions with at symbol switch +- extendedWaitUntil: + visible: + id: 'accessibility-mentions-with-at-symbol-switch' + timeout: 60000 + +# should have autoplay gifs switch +- extendedWaitUntil: + visible: + id: 'accessibility-autoplay-gifs-switch' + timeout: 60000 + +# should enable mentions with @ symbol +- extendedWaitUntil: + visible: + id: 'accessibility-mentions-with-at-symbol-switch' + timeout: 60000 +- tapOn: + id: 'accessibility-mentions-with-at-symbol-switch' + +- extendedWaitUntil: + visible: + id: 'accessibility-view-drawer' + timeout: 60000 +- tapOn: + id: 'accessibility-view-drawer' +- extendedWaitUntil: + visible: + id: 'sidebar-chats' + timeout: 60000 +- tapOn: + id: 'sidebar-chats' +- runFlow: + file: '../../helpers/search-and-navigate-room.yaml' + env: + ROOM: 'maestro-accessibility-test' + +- extendedWaitUntil: + visible: + text: '@all - all mention' + timeout: 60000 +- extendedWaitUntil: + visible: + text: '@rocket.cat - user mention' + timeout: 60000 + +# should disable mentions with @ symbol +- tapOn: + id: header-back +- runFlow: + file: './utils/go-to-accessibility-appearance.yaml' + +- extendedWaitUntil: + visible: + id: 'accessibility-mentions-with-at-symbol-switch' + timeout: 60000 +- tapOn: + id: 'accessibility-mentions-with-at-symbol-switch' + +- extendedWaitUntil: + visible: + id: 'accessibility-view-drawer' + timeout: 60000 +- tapOn: + id: 'accessibility-view-drawer' +- extendedWaitUntil: + visible: + id: 'sidebar-chats' + timeout: 60000 +- tapOn: + id: 'sidebar-chats' +- runFlow: + file: '../../helpers/search-and-navigate-room.yaml' + env: + ROOM: 'maestro-accessibility-test' + +- extendedWaitUntil: + visible: + text: 'all - all mention' + timeout: 60000 +- extendedWaitUntil: + visible: + text: 'rocket.cat - user mention' + timeout: 60000 + +# should enable rooms with # symbol +- tapOn: + id: header-back +- runFlow: + file: './utils/go-to-accessibility-appearance.yaml' + +- extendedWaitUntil: + visible: + id: 'accessibility-rooms-with-hashtag-symbol-switch' + timeout: 60000 +- tapOn: + id: 'accessibility-rooms-with-hashtag-symbol-switch' + +- extendedWaitUntil: + visible: + id: 'accessibility-view-drawer' + timeout: 60000 +- tapOn: + id: 'accessibility-view-drawer' +- extendedWaitUntil: + visible: + id: 'sidebar-chats' + timeout: 60000 +- tapOn: + id: 'sidebar-chats' +- runFlow: + file: '../../helpers/search-and-navigate-room.yaml' + env: + ROOM: 'maestro-accessibility-test' + +- extendedWaitUntil: + visible: + text: '#general - channel mention' + timeout: 60000 + +# should disable mentions with # symbol +- tapOn: + id: header-back +- runFlow: + file: './utils/go-to-accessibility-appearance.yaml' + +- extendedWaitUntil: + visible: + id: 'accessibility-rooms-with-hashtag-symbol-switch' + timeout: 60000 +- tapOn: + id: 'accessibility-rooms-with-hashtag-symbol-switch' + +- extendedWaitUntil: + visible: + id: 'accessibility-view-drawer' + timeout: 60000 +- tapOn: + id: 'accessibility-view-drawer' +- extendedWaitUntil: + visible: + id: 'sidebar-chats' + timeout: 60000 +- tapOn: + id: 'sidebar-chats' +- runFlow: + file: '../../helpers/search-and-navigate-room.yaml' + env: + ROOM: 'maestro-accessibility-test' +- extendedWaitUntil: + visible: + text: 'general - channel mention' + timeout: 60000 From ef36528a9d5f4e982aa5eb27ec71b4bc072c8e36 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 15 Apr 2026 13:07:55 -0300 Subject: [PATCH 077/108] ci(security): pin android-emulator-runner GitHub Action by SHA --- .github/workflows/maestro-android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maestro-android.yml b/.github/workflows/maestro-android.yml index 5b8e2906d39..32a16ab75b1 100644 --- a/.github/workflows/maestro-android.yml +++ b/.github/workflows/maestro-android.yml @@ -96,7 +96,7 @@ jobs: - name: Start Android Emulator and Run Maestro Tests (keyboard AVD) if: ${{ inputs.shard == '14' }} - uses: reactivecircus/android-emulator-runner@v2 + uses: reactivecircus/android-emulator-runner@e89f39f1abbbd05b1113a29cf4db69e7540cae5a # v2.37.0 timeout-minutes: 60 with: api-level: 34 @@ -114,7 +114,7 @@ jobs: - name: Start Android Emulator and Run Maestro Tests (default) if: ${{ inputs.shard != '14' }} - uses: reactivecircus/android-emulator-runner@v2 + uses: reactivecircus/android-emulator-runner@e89f39f1abbbd05b1113a29cf4db69e7540cae5a # v2.37.0 timeout-minutes: 60 with: api-level: 34 From a2df8ccee38f6cb03d16e89e1f9004e42b9831f9 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 15 Apr 2026 14:58:20 -0300 Subject: [PATCH 078/108] fix: maestro running --- .github/workflows/maestro-android.yml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maestro-android.yml b/.github/workflows/maestro-android.yml index 32a16ab75b1..ad738cab1a6 100644 --- a/.github/workflows/maestro-android.yml +++ b/.github/workflows/maestro-android.yml @@ -77,13 +77,38 @@ jobs: AVDMANAGER="$ANDROID_SDK/cmdline-tools/latest/bin/avdmanager" AVD_NAME="Pixel_API_34_Keyboard" IMAGE="system-images;android-34;google_apis;x86_64" - AVD_CONFIG="$HOME/.android/avd/${AVD_NAME}.avd/config.ini" + AVD_BASE="${ANDROID_AVD_HOME:-${ANDROID_USER_HOME:-$HOME/.android}/avd}" + AVD_INI="$AVD_BASE/${AVD_NAME}.ini" + + mkdir -p "$AVD_BASE" + rm -rf "$AVD_BASE/${AVD_NAME}.avd" "$AVD_INI" "$SDKMANAGER" --install emulator "$IMAGE" yes | "$SDKMANAGER" --licenses > /dev/null || true echo "no" | "$AVDMANAGER" create avd -n "$AVD_NAME" -d pixel_7_pro --package "$IMAGE" --force + if [ ! -f "$AVD_INI" ]; then + echo "Expected AVD ini not found: $AVD_INI" + ls -la "$AVD_BASE" || true + exit 1 + fi + + AVD_PATH="$(sed -n 's/^path=//p' "$AVD_INI")" + if [ -z "$AVD_PATH" ]; then + echo "Could not resolve AVD path from: $AVD_INI" + cat "$AVD_INI" + exit 1 + fi + + AVD_CONFIG="$AVD_PATH/config.ini" + if [ ! -f "$AVD_CONFIG" ]; then + echo "Expected AVD config not found: $AVD_CONFIG" + ls -la "$AVD_BASE" || true + ls -la "$AVD_PATH" || true + exit 1 + fi + { echo "hw.keyboard=yes" echo "hw.keyboard.lid=no" From 69c4041d109ea79fb7112dee0b7cd10b41018539 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 15 Apr 2026 16:47:28 -0300 Subject: [PATCH 079/108] external input module --- .../rocket/reactnative/MainApplication.kt | 2 + .../reactnative/input/ExternalInputModule.kt | 18 ++++++ .../reactnative/input/ExternalInputPackage.kt | 14 +++++ app/lib/methods/helpers/externalInput.ts | 10 +++ ios/ExternalInputModule.h | 3 + ios/ExternalInputModule.m | 62 +++++++++++++++++++ jest.setup.js | 4 ++ 7 files changed, 113 insertions(+) create mode 100644 android/app/src/main/java/chat/rocket/reactnative/input/ExternalInputModule.kt create mode 100644 android/app/src/main/java/chat/rocket/reactnative/input/ExternalInputPackage.kt create mode 100644 app/lib/methods/helpers/externalInput.ts create mode 100644 ios/ExternalInputModule.h create mode 100644 ios/ExternalInputModule.m diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.kt b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.kt index 1161d3b7e11..500a877c45e 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.kt +++ b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.kt @@ -22,6 +22,7 @@ import chat.rocket.reactnative.storage.SecureStoragePackage; import chat.rocket.reactnative.notification.VideoConfTurboPackage import chat.rocket.reactnative.notification.PushNotificationTurboPackage import chat.rocket.reactnative.scroll.InvertedScrollPackage +import chat.rocket.reactnative.input.ExternalInputPackage /** * Main Application class. @@ -47,6 +48,7 @@ open class MainApplication : Application(), ReactApplication { add(PushNotificationTurboPackage()) add(SecureStoragePackage()) add(InvertedScrollPackage()) + add(ExternalInputPackage()) } override fun getJSMainModuleName(): String = "index" diff --git a/android/app/src/main/java/chat/rocket/reactnative/input/ExternalInputModule.kt b/android/app/src/main/java/chat/rocket/reactnative/input/ExternalInputModule.kt new file mode 100644 index 00000000000..7461c2dffe7 --- /dev/null +++ b/android/app/src/main/java/chat/rocket/reactnative/input/ExternalInputModule.kt @@ -0,0 +1,18 @@ +package chat.rocket.reactnative.input + +import android.content.res.Configuration +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.bridge.ReactContextBaseJavaModule +import com.facebook.react.bridge.ReactMethod + +class ExternalInputModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaModule(reactContext) { + + override fun getName(): String = "ExternalInput" + + @ReactMethod(isBlockingSynchronousMethod = true) + fun isExternalKeyboardConnected(): Boolean { + val config = reactApplicationContext.resources.configuration + return config.keyboard == Configuration.KEYBOARD_QWERTY && + config.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_NO + } +} diff --git a/android/app/src/main/java/chat/rocket/reactnative/input/ExternalInputPackage.kt b/android/app/src/main/java/chat/rocket/reactnative/input/ExternalInputPackage.kt new file mode 100644 index 00000000000..98d22f8049d --- /dev/null +++ b/android/app/src/main/java/chat/rocket/reactnative/input/ExternalInputPackage.kt @@ -0,0 +1,14 @@ +package chat.rocket.reactnative.input + +import com.facebook.react.ReactPackage +import com.facebook.react.bridge.NativeModule +import com.facebook.react.bridge.ReactApplicationContext +import com.facebook.react.uimanager.ViewManager + +class ExternalInputPackage : ReactPackage { + override fun createNativeModules(reactContext: ReactApplicationContext): List = + listOf(ExternalInputModule(reactContext)) + + override fun createViewManagers(reactContext: ReactApplicationContext): List> = + emptyList() +} diff --git a/app/lib/methods/helpers/externalInput.ts b/app/lib/methods/helpers/externalInput.ts new file mode 100644 index 00000000000..96b8534cc4b --- /dev/null +++ b/app/lib/methods/helpers/externalInput.ts @@ -0,0 +1,10 @@ +import { NativeModules } from 'react-native'; + +const ExternalInput = NativeModules.ExternalInput as { isExternalKeyboardConnected?: () => boolean } | undefined; + +export const isExternalKeyboardConnected = (): boolean => { + if (!ExternalInput?.isExternalKeyboardConnected) { + return false; + } + return Boolean(ExternalInput.isExternalKeyboardConnected()); +}; diff --git a/ios/ExternalInputModule.h b/ios/ExternalInputModule.h new file mode 100644 index 00000000000..e93b0600114 --- /dev/null +++ b/ios/ExternalInputModule.h @@ -0,0 +1,3 @@ +#import +@interface ExternalInputModule : NSObject +@end diff --git a/ios/ExternalInputModule.m b/ios/ExternalInputModule.m new file mode 100644 index 00000000000..412b19a3eba --- /dev/null +++ b/ios/ExternalInputModule.m @@ -0,0 +1,62 @@ +#import "ExternalInputModule.h" +#import +#import + +@implementation ExternalInputModule +{ + BOOL _hasExternalKeyboard; + BOOL _hasInitializedKeyboardState; +} + +RCT_EXPORT_MODULE(ExternalInput); + ++ (BOOL)requiresMainQueueSetup +{ + return NO; +} + +- (instancetype)init +{ + self = [super init]; + if (self) { + GCKeyboard *coalescedKeyboard = [GCKeyboard coalescedKeyboard]; + _hasExternalKeyboard = coalescedKeyboard != nil; + _hasInitializedKeyboardState = YES; + + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(handleKeyboardDidConnect:) + name:GCKeyboardDidConnectNotification + object:nil]; + [[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(handleKeyboardDidDisconnect:) + name:GCKeyboardDidDisconnectNotification + object:nil]; + } + return self; +} + +- (void)dealloc +{ + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +- (void)handleKeyboardDidConnect:(NSNotification *)notification +{ + _hasExternalKeyboard = YES; + _hasInitializedKeyboardState = YES; +} + +- (void)handleKeyboardDidDisconnect:(NSNotification *)notification +{ + _hasExternalKeyboard = NO; + _hasInitializedKeyboardState = YES; +} + +RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(isExternalKeyboardConnected) +{ + BOOL fallbackFromCoalesced = [GCKeyboard coalescedKeyboard] != nil; + BOOL hasExternalKeyboard = _hasInitializedKeyboardState ? _hasExternalKeyboard : fallbackFromCoalesced; + return @(hasExternalKeyboard); +} + +@end diff --git a/jest.setup.js b/jest.setup.js index f5dc728f966..245d973cdec 100644 --- a/jest.setup.js +++ b/jest.setup.js @@ -303,6 +303,10 @@ jest.mock('react-native-math-view', () => { jest.mock('react-native-keyboard-controller'); +jest.mock('./app/lib/methods/helpers/externalInput', () => ({ + isExternalKeyboardConnected: jest.fn(() => false) +})); + jest.mock('react-native-webview', () => { const React = require('react'); const { View } = require('react-native'); From fb14cda94564a47d689c1275caa12f4e3398e32f Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 15 Apr 2026 16:47:50 -0300 Subject: [PATCH 080/108] fix: toolbar --- .../components/Buttons/BaseButton.tsx | 5 +++- .../components/ComposerInput.tsx | 3 ++- app/containers/MessageComposer/context.tsx | 24 +++++++++++++++++-- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/app/containers/MessageComposer/components/Buttons/BaseButton.tsx b/app/containers/MessageComposer/components/Buttons/BaseButton.tsx index 102f46b1ba8..2e0ad5e0522 100644 --- a/app/containers/MessageComposer/components/Buttons/BaseButton.tsx +++ b/app/containers/MessageComposer/components/Buttons/BaseButton.tsx @@ -4,6 +4,7 @@ import { View, StyleSheet, useWindowDimensions } from 'react-native'; import I18n from '../../../../i18n'; import { CustomIcon, type TIconsName } from '../../../CustomIcon'; +import { useMessageComposerApi } from '../../context'; export interface IBaseButton { testID: string; @@ -23,6 +24,7 @@ export const hitSlop = { export const BaseButton = ({ accessibilityLabel, icon, color, testID, onPress }: IBaseButton) => { 'use memo'; + const { setFocused } = useMessageComposerApi(); const { fontScale } = useWindowDimensions(); const size = 24 * fontScale; @@ -33,7 +35,8 @@ export const BaseButton = ({ accessibilityLabel, icon, color, testID, onPress }: accessibilityLabel={I18n.t(accessibilityLabel)} accessibilityRole='button' collapsable={false} - testID={testID}> + testID={testID} + onFocus={() => setFocused(true)}> diff --git a/app/containers/MessageComposer/components/ComposerInput.tsx b/app/containers/MessageComposer/components/ComposerInput.tsx index d1835ef4abd..c0b9656c4bd 100644 --- a/app/containers/MessageComposer/components/ComposerInput.tsx +++ b/app/containers/MessageComposer/components/ComposerInput.tsx @@ -42,6 +42,7 @@ import { usePrevious } from '../../../lib/hooks/usePrevious'; import { type ChatsStackParamList } from '../../../stacks/types'; import { loadDraftMessage } from '../../../lib/methods/draftMessage'; import useIOSBackSwipeHandler from '../hooks/useIOSBackSwipeHandler'; +import { isExternalKeyboardConnected } from '../../../lib/methods/helpers/externalInput'; const defaultSelection: IInputSelection = { start: 0, end: 0 }; @@ -214,7 +215,7 @@ export const ComposerInput = memo( }; const onBlur: TextInputProps['onBlur'] = () => { - if (!iOSBackSwipe.current) { + if (!iOSBackSwipe.current && !isExternalKeyboardConnected()) { setFocused(false); stopAutocomplete(); } diff --git a/app/containers/MessageComposer/context.tsx b/app/containers/MessageComposer/context.tsx index d066e111876..0e765b08337 100644 --- a/app/containers/MessageComposer/context.tsx +++ b/app/containers/MessageComposer/context.tsx @@ -1,10 +1,11 @@ -import React, { createContext, type ReactElement, useContext, useMemo, useReducer } from 'react'; +import React, { createContext, type ReactElement, useContext, useMemo, useReducer, useRef } from 'react'; import { type IEmoji } from '../../definitions'; import { type IAutocompleteBase, type TMicOrSend } from './interfaces'; type TMessageComposerContextApi = { setFocused(focused: boolean): void; + cancelBlur(): void; setMicOrSend(micOrSend: TMicOrSend): void; setMarkdownToolbar(showMarkdownToolbar: boolean): void; setAlsoSendThreadToChannel(alsoSendThreadToChannel: boolean): void; @@ -86,8 +87,26 @@ export const MessageComposerProvider = ({ children }: { children: ReactElement } autocompleteParams: { text: '', type: null } } as State); + const blurTimeoutRef = useRef | null>(null); + const api = useMemo(() => { - const setFocused = (focused: boolean) => dispatch({ type: 'updateFocused', focused }); + const cancelBlur = () => { + if (blurTimeoutRef.current) { + clearTimeout(blurTimeoutRef.current); + blurTimeoutRef.current = null; + } + }; + + const setFocused = (focused: boolean) => { + if (focused) { + cancelBlur(); + dispatch({ type: 'updateFocused', focused: true }); + } else { + blurTimeoutRef.current = setTimeout(() => { + dispatch({ type: 'updateFocused', focused: false }); + }, 150); + } + }; const setMicOrSend = (micOrSend: TMicOrSend) => dispatch({ type: 'setMicOrSend', micOrSend }); @@ -102,6 +121,7 @@ export const MessageComposerProvider = ({ children }: { children: ReactElement } return { setFocused, + cancelBlur, setMicOrSend, setMarkdownToolbar, setAlsoSendThreadToChannel, From 2ee3b49182004e2211e3ea5595e8706c7e1de5d2 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 15 Apr 2026 17:37:09 -0300 Subject: [PATCH 081/108] fix: tests --- .../keyboard-navigation-room.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index af0ba4e430b..5d5ed2f3826 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -41,9 +41,37 @@ tags: timeout: 60000 - pressKey: Remote Dpad Down - inputText: ${output.keyboardMessage} +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Right + # Submit: ComposerInput wires onSubmitEditing -> send when soft keyboard is hidden (TV / physical keyboard) - pressKey: enter - extendedWaitUntil: visible: id: 'message-content-${output.keyboardMessage}' timeout: 60000 +# Open Emoji Keyboard +- pressKey: Remote Dpad Up +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Right +- pressKey: enter + +# Open category emoji +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Right +- pressKey: enter + +# Select emoji +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Right +- pressKey: Remote Dpad Up +- pressKey: enter + +# Send emoji +- pressKey: Remote Dpad Up +- pressKey: Remote Dpad Up +- pressKey: enter +- assertVisible: + id: 'message-content-😀' From 686da412f01d42b0f9b097b101c5c54221722e44 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 15 Apr 2026 17:44:10 -0300 Subject: [PATCH 082/108] fix: snapshot --- .../MessageComposer.test.tsx.snap | 104 ++++++++++++++++++ 1 file changed, 104 insertions(+) diff --git a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap index 784af1d6b08..7d35fa40981 100644 --- a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap +++ b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap @@ -117,6 +117,7 @@ exports[`MessageComposer Audio tap record 1`] = ` accessibilityRole="button" accessible={true} collapsable={false} + onFocus={[Function]} testID="message-composer-delete-audio" > Date: Thu, 16 Apr 2026 12:40:47 -0300 Subject: [PATCH 083/108] fix: android keyboard build on gh actions --- .github/workflows/maestro-android.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maestro-android.yml b/.github/workflows/maestro-android.yml index ad738cab1a6..ec7f502cdd8 100644 --- a/.github/workflows/maestro-android.yml +++ b/.github/workflows/maestro-android.yml @@ -13,6 +13,7 @@ jobs: runs-on: ubuntu-latest env: MAESTRO_VERSION: 2.2.0 + ANDROID_AVD_HOME: /home/runner/.android/avd steps: - name: Checkout Repository @@ -77,7 +78,7 @@ jobs: AVDMANAGER="$ANDROID_SDK/cmdline-tools/latest/bin/avdmanager" AVD_NAME="Pixel_API_34_Keyboard" IMAGE="system-images;android-34;google_apis;x86_64" - AVD_BASE="${ANDROID_AVD_HOME:-${ANDROID_USER_HOME:-$HOME/.android}/avd}" + AVD_BASE="$ANDROID_AVD_HOME" AVD_INI="$AVD_BASE/${AVD_NAME}.ini" mkdir -p "$AVD_BASE" @@ -90,6 +91,9 @@ jobs: if [ ! -f "$AVD_INI" ]; then echo "Expected AVD ini not found: $AVD_INI" + echo "--- avdmanager list avd ---" + "$AVDMANAGER" list avd || true + echo "--- ls AVD_BASE ---" ls -la "$AVD_BASE" || true exit 1 fi From 02ec0fd1ced3cc92f78f71b364e74eb1247c7f66 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 16 Apr 2026 13:37:15 -0300 Subject: [PATCH 084/108] fix: test --- .maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index 5d5ed2f3826..1a1ede483a6 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -67,11 +67,13 @@ tags: - pressKey: Remote Dpad Down - pressKey: Remote Dpad Right - pressKey: Remote Dpad Up +- pressKey: Remote Dpad Up - pressKey: enter # Send emoji - pressKey: Remote Dpad Up - pressKey: Remote Dpad Up +- pressKey: Remote Dpad Up - pressKey: enter - assertVisible: id: 'message-content-😀' From 164c0d9c07b4a3830fa101b9534944f20b515eb8 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 16 Apr 2026 14:13:09 -0300 Subject: [PATCH 085/108] fix: unit test --- .maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index 1a1ede483a6..6307a0df2a5 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -73,7 +73,6 @@ tags: # Send emoji - pressKey: Remote Dpad Up - pressKey: Remote Dpad Up -- pressKey: Remote Dpad Up - pressKey: enter - assertVisible: id: 'message-content-😀' From 18baad54916eb8cdcfaa7be6d428d897bfedcc7c Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 16 Apr 2026 15:35:18 -0300 Subject: [PATCH 086/108] chore: code improvements --- ...yaml => accessibility-and-appearance.yaml} | 0 android/app/src/main/res/values/ids.xml | 2 - app/containers/MessageComposer/context.tsx | 24 +--- .../List/components/InvertedScrollView.tsx | 128 ++++++++++++++++- .../components/InvertedScrollViewAdapter.tsx | 135 ------------------ 5 files changed, 125 insertions(+), 164 deletions(-) rename .maestro/tests/assorted/{acessibility-and-appearance.yaml => accessibility-and-appearance.yaml} (100%) delete mode 100644 app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx diff --git a/.maestro/tests/assorted/acessibility-and-appearance.yaml b/.maestro/tests/assorted/accessibility-and-appearance.yaml similarity index 100% rename from .maestro/tests/assorted/acessibility-and-appearance.yaml rename to .maestro/tests/assorted/accessibility-and-appearance.yaml diff --git a/android/app/src/main/res/values/ids.xml b/android/app/src/main/res/values/ids.xml index 545704f2fe3..e69de29bb2d 100644 --- a/android/app/src/main/res/values/ids.xml +++ b/android/app/src/main/res/values/ids.xml @@ -1,2 +0,0 @@ - - diff --git a/app/containers/MessageComposer/context.tsx b/app/containers/MessageComposer/context.tsx index 0e765b08337..d066e111876 100644 --- a/app/containers/MessageComposer/context.tsx +++ b/app/containers/MessageComposer/context.tsx @@ -1,11 +1,10 @@ -import React, { createContext, type ReactElement, useContext, useMemo, useReducer, useRef } from 'react'; +import React, { createContext, type ReactElement, useContext, useMemo, useReducer } from 'react'; import { type IEmoji } from '../../definitions'; import { type IAutocompleteBase, type TMicOrSend } from './interfaces'; type TMessageComposerContextApi = { setFocused(focused: boolean): void; - cancelBlur(): void; setMicOrSend(micOrSend: TMicOrSend): void; setMarkdownToolbar(showMarkdownToolbar: boolean): void; setAlsoSendThreadToChannel(alsoSendThreadToChannel: boolean): void; @@ -87,26 +86,8 @@ export const MessageComposerProvider = ({ children }: { children: ReactElement } autocompleteParams: { text: '', type: null } } as State); - const blurTimeoutRef = useRef | null>(null); - const api = useMemo(() => { - const cancelBlur = () => { - if (blurTimeoutRef.current) { - clearTimeout(blurTimeoutRef.current); - blurTimeoutRef.current = null; - } - }; - - const setFocused = (focused: boolean) => { - if (focused) { - cancelBlur(); - dispatch({ type: 'updateFocused', focused: true }); - } else { - blurTimeoutRef.current = setTimeout(() => { - dispatch({ type: 'updateFocused', focused: false }); - }, 150); - } - }; + const setFocused = (focused: boolean) => dispatch({ type: 'updateFocused', focused }); const setMicOrSend = (micOrSend: TMicOrSend) => dispatch({ type: 'setMicOrSend', micOrSend }); @@ -121,7 +102,6 @@ export const MessageComposerProvider = ({ children }: { children: ReactElement } return { setFocused, - cancelBlur, setMicOrSend, setMarkdownToolbar, setAlsoSendThreadToChannel, diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index abdf79580ec..1dffcaa70ba 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -1,10 +1,128 @@ -import type { ComponentType } from 'react'; -import { type ScrollViewProps } from 'react-native'; +import React from 'react'; +import { + StyleSheet, + findNodeHandle, + type LayoutChangeEvent, + requireNativeComponent, + type ScrollViewProps, + type ViewProps +} from 'react-native'; +import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands'; -import InvertedScrollViewAdapter from './InvertedScrollViewAdapter'; +interface InvertedScrollContentViewProps extends ViewProps { + isInvertedContent?: boolean; +} + +interface InvertedScrollViewNativeProps extends ScrollViewProps { + exitFocusNativeId?: string; +} -interface InvertedScrollViewProps extends ScrollViewProps { +interface Props extends Omit { exitFocusNativeId?: string; } -export default InvertedScrollViewAdapter as ComponentType; +const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); +const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); + +interface InvertedScrollViewCommands { + scrollTo: (viewRef: React.ElementRef, x: number, y: number, animated: boolean) => void; + scrollToEnd: (viewRef: React.ElementRef, animated: boolean) => void; + flashScrollIndicators: (viewRef: React.ElementRef) => void; +} + +const Commands = codegenNativeCommands({ + supportedCommands: ['scrollTo', 'scrollToEnd', 'flashScrollIndicators'] +}); + +export default class InvertedScrollView extends React.Component { + private scrollRef = React.createRef(); + + private handleLayout = (e: LayoutChangeEvent) => { + this.props.onLayout?.(e); + }; + + private handleContentOnLayout = (e: LayoutChangeEvent) => { + const { width, height } = e.nativeEvent.layout; + this.props.onContentSizeChange?.(width, height); + }; + + private setNativeRef = (instance: any) => { + (this.scrollRef as React.MutableRefObject).current = instance; + }; + + scrollTo = (options?: { x?: number; y?: number; animated?: boolean } | number) => { + let x = 0; + let y = 0; + let animated = true; + if (typeof options === 'number') { + y = options; + } else if (options) { + x = options.x ?? 0; + y = options.y ?? 0; + animated = options.animated !== false; + } + if (this.scrollRef.current) { + Commands.scrollTo(this.scrollRef.current, x, y, animated); + } + }; + + scrollToEnd = (options?: { animated?: boolean }) => { + if (this.scrollRef.current) { + Commands.scrollToEnd(this.scrollRef.current, options?.animated !== false); + } + }; + + flashScrollIndicators = () => { + if (this.scrollRef.current) { + Commands.flashScrollIndicators(this.scrollRef.current); + } + }; + + getScrollableNode = () => findNodeHandle(this.scrollRef.current); + + getNativeScrollRef = () => this.scrollRef.current; + + getScrollResponder = () => this; + + render() { + const { horizontal, children, style, contentContainerStyle, onContentSizeChange, ...rest } = this.props; + const contentStyle = [horizontal ? styles.contentContainerHorizontal : null, contentContainerStyle]; + const baseStyle = horizontal ? styles.baseHorizontal : styles.baseVertical; + const ScrollContainer = NativeInvertedScrollView as React.ComponentClass; + + return ( + + + {children} + + + ); + } +} + +const styles = StyleSheet.create({ + baseVertical: { + flexGrow: 1, + flexShrink: 1, + flexDirection: 'column', + overflow: 'scroll' + }, + baseHorizontal: { + flexGrow: 1, + flexShrink: 1, + flexDirection: 'row', + overflow: 'scroll' + }, + contentContainerHorizontal: { + flexDirection: 'row' + } +}); diff --git a/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx b/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx deleted file mode 100644 index 77861a704a1..00000000000 --- a/app/views/RoomView/List/components/InvertedScrollViewAdapter.tsx +++ /dev/null @@ -1,135 +0,0 @@ -import React from 'react'; -import { - StyleSheet, - findNodeHandle, - type LayoutChangeEvent, - requireNativeComponent, - type ScrollViewProps, - type ViewProps -} from 'react-native'; -import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands'; - -interface InvertedScrollContentViewProps extends ViewProps { - isInvertedContent?: boolean; -} - -interface InvertedScrollViewNativeProps extends ScrollViewProps { - exitFocusNativeId?: string; -} - -interface Props extends Omit { - exitFocusNativeId?: string; -} - -const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); -const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); - -// Minimal compatibility wrapper used by FlatList/VirtualizedList when RoomView renders a custom -// Android scroll component for inverted content. Keep these methods in sync with list expectations: -// `scrollTo`, `scrollToEnd`, `flashScrollIndicators`, `getScrollableNode`, `getNativeScrollRef`, -// and `getScrollResponder`. Keyboard/focus traversal logic belongs to native Android classes. -interface InvertedScrollViewCommands { - scrollTo: (viewRef: React.ElementRef, x: number, y: number, animated: boolean) => void; - scrollToEnd: (viewRef: React.ElementRef, animated: boolean) => void; - flashScrollIndicators: (viewRef: React.ElementRef) => void; -} - -const Commands = codegenNativeCommands({ - supportedCommands: ['scrollTo', 'scrollToEnd', 'flashScrollIndicators'] -}); - -export default class InvertedScrollViewAdapter extends React.Component { - private scrollRef = React.createRef(); - - private handleLayout = (e: LayoutChangeEvent) => { - this.props.onLayout?.(e); - }; - - private handleContentOnLayout = (e: LayoutChangeEvent) => { - const { width, height } = e.nativeEvent.layout; - this.props.onContentSizeChange?.(width, height); - }; - - private setNativeRef = (instance: any) => { - (this.scrollRef as React.MutableRefObject).current = instance; - }; - - // Exposed on the class instance so VirtualizedList's `_scrollRef` has `scrollTo` (used by - // `scrollToOffset`, `scrollToIndex`, `scrollToEnd`). `findNodeHandle` supports layout helpers - // that call `getScrollableNode` when present. - scrollTo = (options?: { x?: number; y?: number; animated?: boolean } | number) => { - let x = 0; - let y = 0; - let animated = true; - if (typeof options === 'number') { - y = options; - } else if (options) { - x = options.x ?? 0; - y = options.y ?? 0; - animated = options.animated !== false; - } - if (this.scrollRef.current) { - Commands.scrollTo(this.scrollRef.current, x, y, animated); - } - }; - - scrollToEnd = (options?: { animated?: boolean }) => { - if (this.scrollRef.current) { - Commands.scrollToEnd(this.scrollRef.current, options?.animated !== false); - } - }; - - flashScrollIndicators = () => { - if (this.scrollRef.current) { - Commands.flashScrollIndicators(this.scrollRef.current); - } - }; - - getScrollableNode = () => findNodeHandle(this.scrollRef.current); - - getNativeScrollRef = () => this.scrollRef.current; - - getScrollResponder = () => this; - - render() { - const { horizontal, children, style, contentContainerStyle, onContentSizeChange, ...rest } = this.props; - const contentStyle = [horizontal ? styles.contentContainerHorizontal : null, contentContainerStyle]; - const baseStyle = horizontal ? styles.baseHorizontal : styles.baseVertical; - const ScrollContainer = NativeInvertedScrollView as React.ComponentClass; - - return ( - - - {children} - - - ); - } -} - -const styles = StyleSheet.create({ - baseVertical: { - flexGrow: 1, - flexShrink: 1, - flexDirection: 'column', - overflow: 'scroll' - }, - baseHorizontal: { - flexGrow: 1, - flexShrink: 1, - flexDirection: 'row', - overflow: 'scroll' - }, - contentContainerHorizontal: { - flexDirection: 'row' - } -}); From 2b006e9e5363dfc60ad55ccfaf364499758b1b17 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 16 Apr 2026 18:38:05 -0300 Subject: [PATCH 087/108] fix: test --- .../keyboard-navigation-components.yaml | 13 ++++++----- android/app/src/main/res/values/ids.xml | 2 ++ .../Header/components/HeaderButton/Common.tsx | 23 ++++++++++++------- package.json | 2 +- yarn.lock | 2 +- 5 files changed, 26 insertions(+), 16 deletions(-) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml index d1e8d48754e..8c6806db739 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml @@ -18,18 +18,19 @@ tags: PASSWORD: ${output.user.password} # open Accessibility & appearance -- tapOn: - id: 'rooms-list-view-sidebar' - extendedWaitUntil: visible: - id: 'sidebar-accessibility' + text: 'Save your encryption password' timeout: 60000 -- tapOn: - id: 'sidebar-accessibility' +- pressKey: enter - extendedWaitUntil: visible: - id: 'accessibility-view-list' + text: 'Accessibility & Appearance' timeout: 60000 +- pressKey: Remote Dpad Left +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: enter # switches - pressKey: Remote Dpad Down diff --git a/android/app/src/main/res/values/ids.xml b/android/app/src/main/res/values/ids.xml index e69de29bb2d..545704f2fe3 100644 --- a/android/app/src/main/res/values/ids.xml +++ b/android/app/src/main/res/values/ids.xml @@ -0,0 +1,2 @@ + + diff --git a/app/containers/Header/components/HeaderButton/Common.tsx b/app/containers/Header/components/HeaderButton/Common.tsx index ddf27a0ce88..450107b30db 100644 --- a/app/containers/Header/components/HeaderButton/Common.tsx +++ b/app/containers/Header/components/HeaderButton/Common.tsx @@ -1,6 +1,7 @@ import React from 'react'; import { StackActions, useNavigation } from '@react-navigation/native'; import { type StyleProp, type ViewStyle } from 'react-native'; +import { withKeyboardFocus } from 'react-native-external-keyboard'; import I18n from '../../../../i18n'; import { isIOS } from '../../../../lib/methods/helpers/deviceInfo'; @@ -22,16 +23,22 @@ export const Drawer = ({ ...props }: IHeaderButtonCommon) => { const { colors } = useTheme(); + const ItemChildren = withKeyboardFocus(Item); + + const item = ( + + ); + return ( - + {item} ); }; diff --git a/package.json b/package.json index 341f668ffab..7e19640fa58 100644 --- a/package.json +++ b/package.json @@ -95,7 +95,7 @@ "react-native-device-info": "11.1.0", "react-native-easy-grid": "0.2.2", "react-native-easy-toast": "2.3.0", - "react-native-external-keyboard": "^0.8.2", + "react-native-external-keyboard": "0.8.2", "react-native-file-viewer": "2.1.4", "react-native-gesture-handler": "~2.28.0", "react-native-image-crop-picker": "RocketChat/react-native-image-crop-picker#f028aac24373d05166747ef6d9e59bb037fe3224", diff --git a/yarn.lock b/yarn.lock index f34ba4fe236..b4e10c4720e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11268,7 +11268,7 @@ react-native-easy-toast@2.3.0: deprecated-react-native-prop-types "^2.3.0" prop-types "^15.6.0" -react-native-external-keyboard@^0.8.2: +react-native-external-keyboard@0.8.2: version "0.8.2" resolved "https://registry.yarnpkg.com/react-native-external-keyboard/-/react-native-external-keyboard-0.8.2.tgz#2929460223f1ed3a1153e631ee28b062c66dac75" integrity sha512-UMchkfHwC6p9hQOoMSO+OwX31VC4Pzjyul0XArH/eZLZS+GDDDpIn6q15QUwYUudrt+rXB+DtwSszTyxZbIY2g== From 0f8469629809a8d368f8bb91e5ba6393a7aa2ad2 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 16 Apr 2026 20:00:54 -0300 Subject: [PATCH 088/108] improve tests --- .../keyboard-navigation-components.yaml | 32 +++++++------------ .../Header/components/HeaderButton/Common.tsx | 4 ++- .../AccessibilityAndAppearanceView/index.tsx | 6 ++++ 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml index 8c6806db739..ef5ee2fc5d8 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-components.yaml @@ -33,38 +33,30 @@ tags: - pressKey: enter # switches +- extendedWaitUntil: + visible: + text: 'Theme' + timeout: 60000 - pressKey: Remote Dpad Down -- waitForAnimationToEnd: - timeout: 1000 - pressKey: Remote Dpad Down -- waitForAnimationToEnd: - timeout: 1000 - pressKey: Remote Dpad Down -- waitForAnimationToEnd: - timeout: 1000 -- pressKey: enter - pressKey: Remote Dpad Down -- waitForAnimationToEnd: - timeout: 1000 -- pressKey: enter - pressKey: Remote Dpad Down -- waitForAnimationToEnd: - timeout: 1000 +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Down +- pressKey: Remote Dpad Up +- assertVisible: + text: 'Mentions with @ symbol unchecked' - pressKey: enter +- assertVisible: + text: 'Mentions with @ symbol checked' +- pressKey: Remote Dpad Down # open Theme and navigate radio buttons - pressKey: Remote Dpad Up -- waitForAnimationToEnd: - timeout: 1000 - pressKey: Remote Dpad Up -- waitForAnimationToEnd: - timeout: 1000 - pressKey: Remote Dpad Up -- waitForAnimationToEnd: - timeout: 1000 - pressKey: Remote Dpad Up -- waitForAnimationToEnd: - timeout: 1000 - pressKey: enter - extendedWaitUntil: visible: diff --git a/app/containers/Header/components/HeaderButton/Common.tsx b/app/containers/Header/components/HeaderButton/Common.tsx index 450107b30db..007c5b76557 100644 --- a/app/containers/Header/components/HeaderButton/Common.tsx +++ b/app/containers/Header/components/HeaderButton/Common.tsx @@ -9,6 +9,8 @@ import Container from './HeaderButtonContainer'; import Item, { type IHeaderButtonItem } from './HeaderButtonItem'; import { useTheme } from '../../../../theme'; +const ItemChildren = withKeyboardFocus(Item); + interface IHeaderButtonCommon extends IHeaderButtonItem { navigation?: any; // TODO: Evaluate proper type style?: StyleProp; @@ -23,10 +25,10 @@ export const Drawer = ({ ...props }: IHeaderButtonCommon) => { const { colors } = useTheme(); - const ItemChildren = withKeyboardFocus(Item); const item = ( { right={renderAutoplayGifs} onPress={toggleAutoplayGifs} accessibilityRole='switch' + additionalAccessibilityLabel={autoplayGifs} + additionalAccessibilityLabelCheck /> { right={renderMentionsWithAtSymbolSwitch} onPress={toggleMentionsWithAtSymbol} accessibilityRole='switch' + additionalAccessibilityLabel={mentionsWithAtSymbol} + additionalAccessibilityLabelCheck /> { right={renderRoomsWithHashTagSwitch} onPress={toggleRoomsWithHashTag} accessibilityRole='switch' + additionalAccessibilityLabel={roomsWithHashTagSymbol} + additionalAccessibilityLabelCheck /> From abb798d454b4e1af3faf421a13b34732a5915573 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 16 Apr 2026 20:11:58 -0300 Subject: [PATCH 089/108] fix: snapshot --- .../__snapshots__/HeaderButtons.test.tsx.snap | 860 ++++++++++-------- 1 file changed, 495 insertions(+), 365 deletions(-) diff --git a/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap b/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap index ae9cd98fcf3..c47dfec83b2 100644 --- a/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap +++ b/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap @@ -462,96 +462,122 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` ] } > - - - + -  - - - - + [ + { + "lineHeight": 24, + }, + [ + undefined, + undefined, + ], + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + + + @@ -699,76 +725,102 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` ] } > - - - + -  - - - + [ + { + "lineHeight": 24, + }, + [ + undefined, + undefined, + ], + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + + - - - + -  - - - - + [ + { + "lineHeight": 24, + }, + [ + undefined, + undefined, + ], + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + + + - - - + -  - - - - + [ + { + "lineHeight": 24, + }, + [ + undefined, + undefined, + ], + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + + + - - - + -  - - - - + [ + { + "lineHeight": 24, + }, + [ + undefined, + undefined, + ], + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + + + Date: Fri, 17 Apr 2026 19:26:06 -0300 Subject: [PATCH 090/108] fix: e2e tests --- .../keyboardNavigation/keyboard-navigation-room.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index 6307a0df2a5..d20bbd4d81d 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -28,13 +28,12 @@ tags: visible: text: 'Save your encryption password' timeout: 60000 -- pressKey: Remote Dpad Up -- pressKey: Remote Dpad Up +- pressKey: Remote Dpad Right +- pressKey: Remote Dpad Right +- pressKey: Remote Dpad Down - pressKey: Remote Dpad Down - pressKey: enter - -# Send a message using TV remote / hardware keys only (no tapOn). -# Move focus toward the composer; tune `times` if focus order on the device changes. +# Submit: ComposerInput wires onSubmitEditing -> send when soft keyboard is hidden (TV / physical keyboard) - extendedWaitUntil: visible: id: message-composer-input @@ -43,8 +42,6 @@ tags: - inputText: ${output.keyboardMessage} - pressKey: Remote Dpad Down - pressKey: Remote Dpad Right - -# Submit: ComposerInput wires onSubmitEditing -> send when soft keyboard is hidden (TV / physical keyboard) - pressKey: enter - extendedWaitUntil: visible: @@ -67,7 +64,6 @@ tags: - pressKey: Remote Dpad Down - pressKey: Remote Dpad Right - pressKey: Remote Dpad Up -- pressKey: Remote Dpad Up - pressKey: enter # Send emoji From 9fee0216e48ea9e99fc9a24d3327e6033cd88ce3 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 22 Apr 2026 13:35:38 -0300 Subject: [PATCH 091/108] fix: test --- .maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index d20bbd4d81d..0b38bb8f8f8 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -69,6 +69,7 @@ tags: # Send emoji - pressKey: Remote Dpad Up - pressKey: Remote Dpad Up +- pressKey: Remote Dpad Up - pressKey: enter - assertVisible: id: 'message-content-😀' From fe1affb437bac7c83f13b433014e291a44d207ff Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 22 Apr 2026 13:39:33 -0300 Subject: [PATCH 092/108] code improvements --- .../MessageComposer/MessageComposer.tsx | 21 ++++++++++--------- ios/RocketChatRN.xcodeproj/project.pbxproj | 8 +++++++ 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/app/containers/MessageComposer/MessageComposer.tsx b/app/containers/MessageComposer/MessageComposer.tsx index 0c39eea5946..b7d0d598f75 100644 --- a/app/containers/MessageComposer/MessageComposer.tsx +++ b/app/containers/MessageComposer/MessageComposer.tsx @@ -1,4 +1,4 @@ -import React, { type ReactElement, useRef, useImperativeHandle } from 'react'; +import React, { type ReactElement, type Ref, useRef, useImperativeHandle } from 'react'; import { AccessibilityInfo, findNodeHandle, type LayoutChangeEvent } from 'react-native'; import { useBackHandler } from '@react-native-community/hooks'; import { Q } from '@nozbe/watermelondb'; @@ -8,7 +8,7 @@ import { useRoomContext } from '../../views/RoomView/context'; import { Autocomplete } from './components'; import { MIN_HEIGHT } from './constants'; import { MessageInnerContext, useAlsoSendThreadToChannel, useMessageComposerApi, useRecordingAudio } from './context'; -import { type IComposerInput } from './interfaces'; +import { type IComposerInput, type IMessageComposerRef } from './interfaces'; import { EventTypes } from '../EmojiPicker/interfaces'; import { type IEmoji } from '../../definitions'; import database from '../../lib/database'; @@ -28,7 +28,7 @@ export const MessageComposer = ({ forwardedRef, children }: { - forwardedRef: any; + forwardedRef: Ref; children?: ReactElement; }): ReactElement | null => { 'use memo'; @@ -52,12 +52,6 @@ export const MessageComposer = ({ const { formatShortnameToUnicode } = useShortnameToUnicode(); const { colors } = useTheme(); - useImperativeHandle(forwardedRef, () => ({ - closeEmojiKeyboardAndAction, - getText: composerInputComponentRef.current?.getText, - setInput: composerInputComponentRef.current?.setInput - })); - useBackHandler(() => { if (showEmojiSearchbar) { resetKeyboard(); @@ -71,6 +65,13 @@ export const MessageComposer = ({ action && action(params); }; + useImperativeHandle(forwardedRef, () => ({ + closeEmojiKeyboardAndAction, + getText: () => composerInputComponentRef.current.getText(), + setInput: (...args: Parameters) => composerInputComponentRef.current.setInput(...args), + focus: () => composerInputComponentRef.current.focus() + })); + const handleLayout = (event: LayoutChangeEvent) => { const { height } = event.nativeEvent.layout; contentHeight.value = height; @@ -190,7 +191,7 @@ export const MessageComposer = ({ sendMessage: handleSendMessage, onEmojiSelected, closeEmojiKeyboardAndAction, - focus: composerInputComponentRef.current?.focus + focus: () => composerInputComponentRef.current.focus() }}> Date: Wed, 22 Apr 2026 15:59:35 -0300 Subject: [PATCH 093/108] usememo --- app/containers/RoomHeader/RoomHeader.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index 6df269d8018..25c006e7505 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -160,6 +160,8 @@ const Header = ({ abacAttributes, ref }: IRoomHeaderProps) => { + 'use memo'; + const headerRef = React.useRef(null); React.useImperativeHandle( ref, From 25f78ea4e10aa333cbaf3a4ababcb39bbe5a199a Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 22 Apr 2026 17:03:29 -0300 Subject: [PATCH 094/108] rollback mainActivity --- .../src/main/java/chat/rocket/reactnative/MainActivity.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt b/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt index 08cc7191569..6050f4a0ad8 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt +++ b/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt @@ -1,12 +1,13 @@ package chat.rocket.reactnative -import android.os.Bundle -import android.content.Intent import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled import com.facebook.react.defaults.DefaultReactActivityDelegate +import android.os.Bundle import com.zoontek.rnbootsplash.RNBootSplash +import android.content.Intent +import android.content.res.Configuration import chat.rocket.reactnative.notification.NotificationIntentHandler class MainActivity : ReactActivity() { From 31d37c4070e0f1a6869dbe4692ef09961863cc62 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Wed, 22 Apr 2026 17:04:29 -0300 Subject: [PATCH 095/108] rollback mainActivity --- .../app/src/main/java/chat/rocket/reactnative/MainActivity.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt b/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt index 6050f4a0ad8..b6dae6cbad0 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt +++ b/android/app/src/main/java/chat/rocket/reactnative/MainActivity.kt @@ -4,6 +4,7 @@ import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled import com.facebook.react.defaults.DefaultReactActivityDelegate + import android.os.Bundle import com.zoontek.rnbootsplash.RNBootSplash import android.content.Intent From aafe576dca2fca34c79fea13fa2b893b9d07bcd7 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 23 Apr 2026 16:08:52 -0300 Subject: [PATCH 096/108] fix: e2e tests --- .maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index 0b38bb8f8f8..4344c7b4784 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -38,7 +38,6 @@ tags: visible: id: message-composer-input timeout: 60000 -- pressKey: Remote Dpad Down - inputText: ${output.keyboardMessage} - pressKey: Remote Dpad Down - pressKey: Remote Dpad Right From 3ed3d2b276141fc07aa1f4724f5d19f9818ca674 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 23 Apr 2026 18:07:24 -0300 Subject: [PATCH 097/108] fix: keyboard test --- .maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index 4344c7b4784..26fdb922b1f 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -63,6 +63,7 @@ tags: - pressKey: Remote Dpad Down - pressKey: Remote Dpad Right - pressKey: Remote Dpad Up +- pressKey: Remote Dpad Up - pressKey: enter # Send emoji From ddec498480f811f9e981f0e1cc9dbb8c34d79e11 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 23 Apr 2026 20:19:26 -0300 Subject: [PATCH 098/108] fix: tests --- .maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml index 26fdb922b1f..ddc5cc993e6 100644 --- a/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml +++ b/.maestro/tests/keyboardNavigation/keyboard-navigation-room.yaml @@ -69,7 +69,6 @@ tags: # Send emoji - pressKey: Remote Dpad Up - pressKey: Remote Dpad Up -- pressKey: Remote Dpad Up - pressKey: enter - assertVisible: id: 'message-content-😀' From 76334863352fe6a6e2fed3f5fcf95bfed6662b62 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 24 Apr 2026 13:18:20 -0300 Subject: [PATCH 099/108] fix: autofocus --- app/views/RoomView/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index 50b6c67f380..e75623df153 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -109,6 +109,7 @@ import { type IRoomFederated, isRoomFederated, isRoomNativeFederated } from '../ import { InvitedRoom } from './components/InvitedRoom'; import { getInvitationData } from '../../lib/methods/getInvitationData'; import { isInviteSubscription } from '../../lib/methods/isInviteSubscription'; +import { isExternalKeyboardConnected } from '../../lib/methods/helpers/externalInput'; class RoomView extends React.Component { private rid?: string; @@ -261,7 +262,10 @@ class RoomView extends React.Component { this.roomHeaderRef.current?.focus(); return; } - this.messageComposerRef.current?.focus?.(); + const hasExternalKeyboard = isExternalKeyboardConnected(); + if (hasExternalKeyboard) { + this.messageComposerRef.current?.focus?.(); + } }); }); } From 1acc3d156e00b6394b4f845c8836a89e12c770ca Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 24 Apr 2026 14:07:35 -0300 Subject: [PATCH 100/108] replace requireNativeComponent --- .../List/components/InvertedScrollView.tsx | 105 ++++++++++++++---- 1 file changed, 82 insertions(+), 23 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index 1dffcaa70ba..797b272b42c 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -1,33 +1,93 @@ import React from 'react'; -import { - StyleSheet, - findNodeHandle, - type LayoutChangeEvent, - requireNativeComponent, - type ScrollViewProps, - type ViewProps -} from 'react-native'; +import { StyleSheet, findNodeHandle, type LayoutChangeEvent, type ScrollViewProps, processColor } from 'react-native'; import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands'; -interface InvertedScrollContentViewProps extends ViewProps { - isInvertedContent?: boolean; -} - -interface InvertedScrollViewNativeProps extends ScrollViewProps { - exitFocusNativeId?: string; -} +// NativeComponentRegistry.get() registers components as proper Fabric host components. +// requireNativeComponent() uses the legacy interop layer, which breaks Fabric's touch +// event routing: when Fabric-rendered children (FlatList cells with pressable elements) +// are nested inside a legacy interop node, Fabric's event router cannot traverse the +// shadow tree boundary and drops all interaction events. newArchEnabled=true exposes this. +// eslint-disable-next-line @typescript-eslint/no-var-requires +const NativeComponentRegistry = require('react-native/Libraries/NativeComponent/NativeComponentRegistry') as { + get: (name: string, viewConfigProvider: () => object) => React.ComponentType; +}; + +const pointsDiffer = require('react-native/Libraries/Utilities/differ/pointsDiffer').default as ( + a: object | null, + b: object | null +) => boolean; interface Props extends Omit { exitFocusNativeId?: string; } -const NativeInvertedScrollView = requireNativeComponent('InvertedScrollView'); -const NativeInvertedScrollContentView = requireNativeComponent('InvertedScrollContentView'); +// Mirrors the Android validAttributes of RCTScrollView (ScrollViewNativeComponent.js) +// extended with our custom exitFocusNativeId prop. +const NativeInvertedScrollView = NativeComponentRegistry.get('InvertedScrollView', () => ({ + uiViewClassName: 'InvertedScrollView', + bubblingEventTypes: {}, + directEventTypes: { + topMomentumScrollBegin: { registrationName: 'onMomentumScrollBegin' }, + topMomentumScrollEnd: { registrationName: 'onMomentumScrollEnd' }, + topScroll: { registrationName: 'onScroll' }, + topScrollBeginDrag: { registrationName: 'onScrollBeginDrag' }, + topScrollEndDrag: { registrationName: 'onScrollEndDrag' } + }, + validAttributes: { + contentOffset: { diff: pointsDiffer }, + decelerationRate: true, + disableIntervalMomentum: true, + maintainVisibleContentPosition: true, + pagingEnabled: true, + scrollEnabled: true, + showsVerticalScrollIndicator: true, + snapToAlignment: true, + snapToEnd: true, + snapToInterval: true, + snapToOffsets: true, + snapToStart: true, + borderBottomLeftRadius: true, + borderBottomRightRadius: true, + sendMomentumEvents: true, + borderRadius: true, + nestedScrollEnabled: true, + scrollEventThrottle: true, + borderStyle: true, + borderRightColor: { process: processColor }, + borderColor: { process: processColor }, + borderBottomColor: { process: processColor }, + persistentScrollbar: true, + horizontal: true, + endFillColor: { process: processColor }, + fadingEdgeLength: true, + overScrollMode: true, + borderTopLeftRadius: true, + scrollPerfTag: true, + borderTopColor: { process: processColor }, + removeClippedSubviews: true, + borderTopRightRadius: true, + borderLeftColor: { process: processColor }, + pointerEvents: true, + isInvertedVirtualizedList: true, + exitFocusNativeId: true + } +})); + +const NativeInvertedScrollContentView = NativeComponentRegistry.get('InvertedScrollContentView', () => ({ + uiViewClassName: 'InvertedScrollContentView', + bubblingEventTypes: {}, + directEventTypes: {}, + validAttributes: { + isInvertedContent: true, + removeClippedSubviews: true, + collapsable: true + } +})); interface InvertedScrollViewCommands { - scrollTo: (viewRef: React.ElementRef, x: number, y: number, animated: boolean) => void; - scrollToEnd: (viewRef: React.ElementRef, animated: boolean) => void; - flashScrollIndicators: (viewRef: React.ElementRef) => void; + scrollTo: (viewRef: any, x: number, y: number, animated: boolean) => void; + scrollToEnd: (viewRef: any, animated: boolean) => void; + flashScrollIndicators: (viewRef: any) => void; } const Commands = codegenNativeCommands({ @@ -88,10 +148,9 @@ export default class InvertedScrollView extends React.Component { const { horizontal, children, style, contentContainerStyle, onContentSizeChange, ...rest } = this.props; const contentStyle = [horizontal ? styles.contentContainerHorizontal : null, contentContainerStyle]; const baseStyle = horizontal ? styles.baseHorizontal : styles.baseVertical; - const ScrollContainer = NativeInvertedScrollView as React.ComponentClass; return ( - { isInvertedContent> {children} - + ); } } From 160dfa7152ffef07a932c13c00b71f87c98ef491 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 24 Apr 2026 14:22:34 -0300 Subject: [PATCH 101/108] fix: tests --- .../__snapshots__/Message.test.tsx.snap | 4533 ++--------------- .../__snapshots__/LoadMore.test.tsx.snap | 21 - 2 files changed, 348 insertions(+), 4206 deletions(-) diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 25f931dcbe2..923b6f35823 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -21,7 +21,6 @@ exports[`Story Snapshots: Archived should match snapshot 1`] = ` >>>>>> develop style={ { "flexDirection": "row", @@ -37975,323 +37863,9 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ -<<<<<<< HEAD - [ - { - "alignItems": "center", - "borderRadius": 4, - "borderWidth": 1, - "flexDirection": "row", - "gap": 4, - "justifyContent": "center", - "minWidth": 46.3, - "paddingHorizontal": 4, - }, - { - "borderColor": "#1D74F5", - "height": 28, - }, - ] - } - > - - 😂 - - - 1 - - - - >>>>>> develop { "paddingLeft": 5, } -<<<<<<< HEAD - height={19} - nativeViewRef={{"current":"NativeComponent"}} - onError={[Function]} - onLoad={[Function]} - onLoadStart={[Function]} - onProgress={[Function]} - placeholder={[]} - source={ - [ - { - "uri": "https://open.rocket.chat/emoji-custom/marioparty.gif", - }, - ] - } - style={ - { - "height": 19, - "width": 19, - } - } - transition={null} - width={19} - /> - - 1 - - - - - - - 🤔 - - - 1 - - - - - >>>>>> develop } > >>>>>> develop style={ { "flexDirection": "row", @@ -42780,323 +42312,9 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` onResponderTerminationRequest={[Function]} onStartShouldSetResponder={[Function]} style={ -<<<<<<< HEAD - [ - { - "alignItems": "center", - "borderRadius": 4, - "borderWidth": 1, - "flexDirection": "row", - "gap": 4, - "justifyContent": "center", - "minWidth": 46.3, - "paddingHorizontal": 4, - }, - { - "borderColor": "#1D74F5", - "height": 28, - }, - ] - } - > - - 😂 - - - 1 - - - - >>>>>> develop { "paddingLeft": 5, } -<<<<<<< HEAD - height={19} - nativeViewRef={{"current":"NativeComponent"}} - onError={[Function]} - onLoad={[Function]} - onLoadStart={[Function]} - onProgress={[Function]} - placeholder={[]} - source={ - [ - { - "uri": "https://open.rocket.chat/emoji-custom/marioparty.gif", - }, - ] - } - style={ - { - "height": 19, - "width": 19, - } - } - transition={null} - width={19} - /> - - 1 - - - - - - - 🤔 - - - 1 - - - - - >>>>>> develop } > diego.mello -<<<<<<< HEAD - - - - -======= ->>>>>>> develop - - - - - - How are you? - - - - - - - - - View thread - - - - - - - î§Š - - - 1 - - - - - î§• - - - 0 - - - - - - - - - -  - - - - - - - - -======= "fontFamily": "custom", "fontStyle": "normal", "fontWeight": "normal", @@ -93788,7 +92500,6 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` > î§Š ->>>>>>> develop >>>>>> develop > -<<<<<<< HEAD - 1 - - - - - - - >>>>>> develop { "backgroundColor": "transparent", "flexShrink": 1, "fontFamily": "Inter", "fontWeight": "400", "textAlign": "left", -<<<<<<< HEAD - }, - { - "color": "#1D74F5", - }, - ] - } - > - 99 - - - - - - >>>>>> develop } > >>>>>> develop style={ { "flexDirection": "row", @@ -104082,13 +102505,15 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` } > - 🤔 - - - 9999 - - - - - - 😂 >>>>>> develop [ { "backgroundColor": "transparent", @@ -104292,13 +102608,15 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` >>>>>> develop > -<<<<<<< HEAD - 1 - - - - - - - >>>>>> develop { "backgroundColor": "transparent", "flexShrink": 1, @@ -105309,48 +103465,6 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` >>>>>> develop style={ { "flexDirection": "row", @@ -105360,13 +103474,15 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` } > -<<<<<<< HEAD - 1 - - - - - - - â¤ï¸ - - - 1 - - - - - - - 🶠- - - 1 - - - - - - - 😀 - - - 1 - - - - - - - 😬 - - - 1 - - - - - - - 😠- - - 1 - - - - - - >>>>>> develop [ { "uri": "https://open.rocket.chat/emoji-custom/marioparty.gif", @@ -106086,13 +103599,15 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` >>>>>> develop > -<<<<<<< HEAD - 1 - - - - - - - >>>>>> develop { "backgroundColor": "transparent", "flexShrink": 1, "fontFamily": "Inter", "fontWeight": "400", "textAlign": "left", -<<<<<<< HEAD - }, - { - "color": "#1D74F5", - }, - ] - } - > - 99 - - - - - - >>>>>> develop } > >>>>>> develop style={ { "flexDirection": "row", @@ -107684,13 +104912,15 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` } > - 🤔 - - - 9999 - - - - - - 😂 >>>>>> develop [ { "backgroundColor": "transparent", @@ -107894,13 +105015,15 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` >>>>>> develop > -<<<<<<< HEAD - 1 - - - - - - - >>>>>> develop { "backgroundColor": "transparent", "flexShrink": 1, @@ -108911,48 +105872,6 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` >>>>>> develop style={ { "flexDirection": "row", @@ -108962,13 +105881,15 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` } > -<<<<<<< HEAD - 1 - - - - - - - â¤ï¸ - - - 1 - - - - - - - 🶠- - - 1 - - - - - - - 😀 - - - 1 - - - - - - - 😬 - - - 1 - - - - - - - 😠- - - 1 - - - - - - >>>>>> develop [ { "uri": "https://open.rocket.chat/emoji-custom/marioparty.gif", @@ -109688,136 +106006,140 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` - - - - 1 - - - - + + + + 1 + + + + diego.mello -<<<<<<< HEAD - - - - -======= ->>>>>>> develop - - How are you? - - - - - - - - >>>>>> develop "fontWeight": "600", "lineHeight": 22, "textAlign": "left", @@ -112708,6 +108913,37 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont } > Date: Fri, 24 Apr 2026 14:28:26 -0300 Subject: [PATCH 102/108] fix: tests --- .../__snapshots__/HeaderButtons.test.tsx.snap | 5 + .../__snapshots__/Message.test.tsx.snap | 268 ++++++++++++++++++ .../__snapshots__/LoadMore.test.tsx.snap | 21 ++ 3 files changed, 294 insertions(+) diff --git a/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap b/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap index c47dfec83b2..31412c6f62d 100644 --- a/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap +++ b/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap @@ -466,6 +466,7 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` autoFocus={true} canBeFocused={true} enableA11yFocus={false} + enableContextMenu={false} group={false} haloEffect={true} hasKeyDownPress={false} @@ -729,6 +730,7 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` autoFocus={true} canBeFocused={true} enableA11yFocus={false} + enableContextMenu={false} group={false} haloEffect={true} hasKeyDownPress={false} @@ -2978,6 +2980,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` autoFocus={true} canBeFocused={true} enableA11yFocus={false} + enableContextMenu={false} group={false} haloEffect={true} hasKeyDownPress={false} @@ -3522,6 +3525,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` autoFocus={true} canBeFocused={true} enableA11yFocus={false} + enableContextMenu={false} group={false} haloEffect={true} hasKeyDownPress={false} @@ -4066,6 +4070,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` autoFocus={true} canBeFocused={true} enableA11yFocus={false} + enableContextMenu={false} group={false} haloEffect={true} hasKeyDownPress={false} diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 923b6f35823..97924702204 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -21,6 +21,7 @@ exports[`Story Snapshots: Archived should match snapshot 1`] = ` Date: Fri, 24 Apr 2026 16:15:49 -0300 Subject: [PATCH 103/108] collapse children --- app/views/RoomView/List/components/InvertedScrollView.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/views/RoomView/List/components/InvertedScrollView.tsx b/app/views/RoomView/List/components/InvertedScrollView.tsx index 797b272b42c..fefa9c98903 100644 --- a/app/views/RoomView/List/components/InvertedScrollView.tsx +++ b/app/views/RoomView/List/components/InvertedScrollView.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { StyleSheet, findNodeHandle, type LayoutChangeEvent, type ScrollViewProps, processColor } from 'react-native'; +import { Platform, StyleSheet, findNodeHandle, type LayoutChangeEvent, type ScrollViewProps, processColor } from 'react-native'; import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands'; // NativeComponentRegistry.get() registers components as proper Fabric host components. @@ -80,7 +80,8 @@ const NativeInvertedScrollContentView = NativeComponentRegistry.get('InvertedScr validAttributes: { isInvertedContent: true, removeClippedSubviews: true, - collapsable: true + collapsable: true, + collapsableChildren: true } })); @@ -148,6 +149,8 @@ export default class InvertedScrollView extends React.Component { const { horizontal, children, style, contentContainerStyle, onContentSizeChange, ...rest } = this.props; const contentStyle = [horizontal ? styles.contentContainerHorizontal : null, contentContainerStyle]; const baseStyle = horizontal ? styles.baseHorizontal : styles.baseVertical; + const preserveChildren = + this.props.maintainVisibleContentPosition != null || (Platform.OS === 'android' && this.props.snapToAlignment != null); return ( { style={contentStyle} removeClippedSubviews={this.props.removeClippedSubviews} collapsable={false} + collapsableChildren={!preserveChildren} isInvertedContent> {children} From fb23540603bec2a86bdd91e284fb898a7732f2d7 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 24 Apr 2026 17:11:31 -0300 Subject: [PATCH 104/108] fix(android): prevent inverted scroll content view from consuming taps --- .../reactnative/scroll/InvertedScrollContentView.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java index c97d7ce5460..3e097bc0420 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java +++ b/android/app/src/main/java/chat/rocket/reactnative/scroll/InvertedScrollContentView.java @@ -1,6 +1,7 @@ package chat.rocket.reactnative.scroll; import android.graphics.Rect; +import android.view.MotionEvent; import android.view.View; import com.facebook.react.views.view.ReactViewGroup; import java.util.ArrayList; @@ -69,4 +70,12 @@ public void addFocusables(ArrayList views, int direction, int focusableMod } } } + + @Override + public boolean onTouchEvent(MotionEvent event) { + // Match the stock vertical Android ScrollView content host, which is a plain non-clickable + // View. This container exists only to preserve inverted accessibility/focus order and should + // never consume fallback taps that miss transformed children after scrolling. + return false; + } } From afa078d303f1ca7fa33b509c7ba72bd86a6e01cd Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 24 Apr 2026 17:12:10 -0300 Subject: [PATCH 105/108] oly use customScrollview if has screenReader of keyboard enabled --- app/lib/hooks/useIsScreenReaderEnabled.ts | 26 +++++++++++++++++++++ app/views/RoomView/List/components/List.tsx | 10 +++++++- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 app/lib/hooks/useIsScreenReaderEnabled.ts diff --git a/app/lib/hooks/useIsScreenReaderEnabled.ts b/app/lib/hooks/useIsScreenReaderEnabled.ts new file mode 100644 index 00000000000..2f5c17693a8 --- /dev/null +++ b/app/lib/hooks/useIsScreenReaderEnabled.ts @@ -0,0 +1,26 @@ +import { useEffect, useState } from 'react'; +import { AccessibilityInfo } from 'react-native'; + +export const useIsScreenReaderEnabled = (): boolean => { + const [enabled, setEnabled] = useState(false); + + useEffect(() => { + let ignore = false; + AccessibilityInfo.isScreenReaderEnabled().then(result => { + if (!ignore) { + setEnabled(result); + } + }); + const subscription = AccessibilityInfo.addEventListener('screenReaderChanged', result => { + if (!ignore) { + setEnabled(result); + } + }); + return () => { + ignore = true; + subscription.remove(); + }; + }, []); + + return enabled; +}; diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index fc21ede9341..fbcee27f7bd 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -3,8 +3,11 @@ import { StyleSheet, View } from 'react-native'; import Animated, { useAnimatedScrollHandler } from 'react-native-reanimated'; import { scheduleOnRN } from 'react-native-worklets'; +import { useIsScreenReaderEnabled } from 'lib/hooks/useIsScreenReaderEnabled'; + import { isIOS } from '../../../../lib/methods/helpers'; import scrollPersistTaps from '../../../../lib/methods/helpers/scrollPersistTaps'; +import { isExternalKeyboardConnected } from '../../../../lib/methods/helpers/externalInput'; import { MESSAGE_COMPOSER_EXIT_FOCUS_NATIVE_ID } from '../../../../lib/constants/accessibility'; import InvertedScrollView from './InvertedScrollView'; import NavBottomFAB from './NavBottomFAB'; @@ -34,6 +37,9 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { } }); + const isScreenReaderEnabled = useIsScreenReaderEnabled(); + + const renderScrollComponent = !isIOS && (isScreenReaderEnabled || isExternalKeyboardConnected()); return ( {/* @ts-ignore */} @@ -47,7 +53,9 @@ const List = ({ listRef, jumpToBottom, ...props }: IListProps) => { style={styles.list} inverted renderScrollComponent={ - isIOS ? undefined : props => + renderScrollComponent + ? props => + : undefined } removeClippedSubviews={isIOS} initialNumToRender={7} From 7e15509ca50752a8a24f0ba0d6ed34274d927413 Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Fri, 24 Apr 2026 17:34:03 -0300 Subject: [PATCH 106/108] fix: path --- app/views/RoomView/List/components/List.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/views/RoomView/List/components/List.tsx b/app/views/RoomView/List/components/List.tsx index fbcee27f7bd..f0b80738225 100644 --- a/app/views/RoomView/List/components/List.tsx +++ b/app/views/RoomView/List/components/List.tsx @@ -3,8 +3,7 @@ import { StyleSheet, View } from 'react-native'; import Animated, { useAnimatedScrollHandler } from 'react-native-reanimated'; import { scheduleOnRN } from 'react-native-worklets'; -import { useIsScreenReaderEnabled } from 'lib/hooks/useIsScreenReaderEnabled'; - +import { useIsScreenReaderEnabled } from '../../../../lib/hooks/useIsScreenReaderEnabled'; import { isIOS } from '../../../../lib/methods/helpers'; import scrollPersistTaps from '../../../../lib/methods/helpers/scrollPersistTaps'; import { isExternalKeyboardConnected } from '../../../../lib/methods/helpers/externalInput'; From 458d7835a02cc72224768f50f4f61cbde2ee43ba Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 27 Apr 2026 12:43:58 -0300 Subject: [PATCH 107/108] fix: focus dev mode --- app/views/RoomView/index.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/views/RoomView/index.tsx b/app/views/RoomView/index.tsx index e75623df153..3675c7a5782 100644 --- a/app/views/RoomView/index.tsx +++ b/app/views/RoomView/index.tsx @@ -262,6 +262,11 @@ class RoomView extends React.Component { this.roomHeaderRef.current?.focus(); return; } + // Skip autofocus in development because simulators always report a keyboard as connected, + // which would force the composer to open on every focus while debugging. + if (__DEV__) { + return; + } const hasExternalKeyboard = isExternalKeyboardConnected(); if (hasExternalKeyboard) { this.messageComposerRef.current?.focus?.(); From ad95220d1f79ce815211b85a4e2d43b77928ad1f Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Mon, 27 Apr 2026 12:48:29 -0300 Subject: [PATCH 108/108] bump patch package --- ...ler+2.24.0.patch => react-native-gesture-handler+2.28.0.patch} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename patches/{react-native-gesture-handler+2.24.0.patch => react-native-gesture-handler+2.28.0.patch} (100%) diff --git a/patches/react-native-gesture-handler+2.24.0.patch b/patches/react-native-gesture-handler+2.28.0.patch similarity index 100% rename from patches/react-native-gesture-handler+2.24.0.patch rename to patches/react-native-gesture-handler+2.28.0.patch