From 59e4a047fd3132630a32a573110be03c58ff0b3c Mon Sep 17 00:00:00 2001 From: OtavioStasiak Date: Thu, 26 Feb 2026 12:25:16 -0300 Subject: [PATCH 01/45] 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 02/45] 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 03/45] 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 04/45] 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 05/45] 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 06/45] 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 07/45] 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 08/45] 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 09/45] 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 10/45] 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 11/45] 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 12/45] 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 13/45] 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 14/45] 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 15/45] 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 16/45] 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 17/45] 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 18/45] 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 19/45] 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 20/45] 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 21/45] 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 22/45] 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 23/45] 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 24/45] 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 25/45] 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 26/45] 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 27/45] 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 28/45] 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 29/45] 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 30/45] 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 31/45] 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 32/45] 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 33/45] 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 34/45] 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 35/45] 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 36/45] 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 37/45] 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 38/45] 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 39/45] 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 40/45] 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 41/45] 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 42/45] 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 43/45] 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 44/45] 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 45/45] 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`] = ` } } > - + - + - +