From 1b582fe73ef0a60612da6de5694087b2a22ab5c5 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Fri, 20 Jun 2025 13:10:17 +0200 Subject: [PATCH 01/50] Enable flexible page sizes in CMake build Adds the ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES argument to the CMake configuration in the Gradle build file to support flexible page sizes in native builds. --- android/app/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index 73b1a5aba2c96..77a395bd13106 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -119,6 +119,12 @@ android { // Supported language variants must be declared here to avoid from being removed during the compilation. // This also helps us to not include unnecessary language variants in the APK. resConfigs "en", "es" + + externalNativeBuild { + cmake { + arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" + } + } } flavorDimensions "default" From c8e519fcbff08d3f6ea165c985e558e96e5ffff3 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Tue, 24 Jun 2025 12:45:31 +0200 Subject: [PATCH 02/50] chore: update HybridApp build.gradle --- modules/hybrid-app/android/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/hybrid-app/android/build.gradle b/modules/hybrid-app/android/build.gradle index 2baa6772f697f..3556fa102fc19 100644 --- a/modules/hybrid-app/android/build.gradle +++ b/modules/hybrid-app/android/build.gradle @@ -32,6 +32,12 @@ android { minSdkVersion getExtOrIntegerDefault("minSdkVersion") targetSdkVersion getExtOrIntegerDefault("targetSdkVersion") buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", "true" + + externalNativeBuild { + cmake { + arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" + } + } } buildFeatures { From e1871d024ea3f93201d7c5f867ad15e46d64f146 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Tue, 24 Jun 2025 12:51:53 +0200 Subject: [PATCH 03/50] Update cspell.json --- cspell.json | 1 + 1 file changed, 1 insertion(+) diff --git a/cspell.json b/cspell.json index cb9892ec87dfe..cca98864f5d7b 100644 --- a/cspell.json +++ b/cspell.json @@ -781,6 +781,7 @@ "modules/ExpensifyNitroUtils/nitrogen/**", "modules/ExpensifyNitroUtils/android/build.gradle", "modules/ExpensifyNitroUtils/android/src/main/cpp/**", + "modules/hybrid-app/android/build.gradle", "src/TIMEZONES.ts", "tests/unit/EmojiTest.ts", "tests/unit/FastSearchTest.ts", From b5796160603ee8599513ba846188b1d1a6edbd42 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Tue, 24 Jun 2025 15:08:20 +0200 Subject: [PATCH 04/50] chore: enable legacy packaging --- android/app/build.gradle | 6 ++++++ modules/ExpensifyNitroUtils/android/build.gradle | 4 ++++ modules/background-task/android/build.gradle | 6 ++++++ modules/hybrid-app/android/build.gradle | 6 ++++++ 4 files changed, 22 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index 77a395bd13106..a29ad794054e3 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -127,6 +127,12 @@ android { } } + packagingOptions { + jniLibs { + useLegacyPackaging true + } + } + flavorDimensions "default" productFlavors { // we need to define a production flavor but since it has default config, we can leave it empty diff --git a/modules/ExpensifyNitroUtils/android/build.gradle b/modules/ExpensifyNitroUtils/android/build.gradle index cef4d21f1e8f4..790bb150d5bec 100644 --- a/modules/ExpensifyNitroUtils/android/build.gradle +++ b/modules/ExpensifyNitroUtils/android/build.gradle @@ -60,6 +60,10 @@ android { } packagingOptions { + jniLibs { + useLegacyPackaging true + } + excludes = [ "META-INF", "META-INF/**", diff --git a/modules/background-task/android/build.gradle b/modules/background-task/android/build.gradle index ffb17153aae3e..11f43d046177c 100644 --- a/modules/background-task/android/build.gradle +++ b/modules/background-task/android/build.gradle @@ -66,6 +66,12 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } + packagingOptions { + jniLibs { + useLegacyPackaging true + } + } + sourceSets { main { if (isNewArchitectureEnabled()) { diff --git a/modules/hybrid-app/android/build.gradle b/modules/hybrid-app/android/build.gradle index 3556fa102fc19..eba8c5b463558 100644 --- a/modules/hybrid-app/android/build.gradle +++ b/modules/hybrid-app/android/build.gradle @@ -59,6 +59,12 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } + packagingOptions { + jniLibs { + useLegacyPackaging true + } + } + sourceSets { main { java.srcDirs += [ From 1ae4dd5c31f667288976a9b70f221a4fd6a03e5d Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Tue, 24 Jun 2025 15:08:33 +0200 Subject: [PATCH 05/50] chore: add 16kb mode to other libraries --- modules/ExpensifyNitroUtils/android/build.gradle | 2 +- modules/background-task/android/build.gradle | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/ExpensifyNitroUtils/android/build.gradle b/modules/ExpensifyNitroUtils/android/build.gradle index 790bb150d5bec..a648dc5df5b26 100644 --- a/modules/ExpensifyNitroUtils/android/build.gradle +++ b/modules/ExpensifyNitroUtils/android/build.gradle @@ -47,7 +47,7 @@ android { externalNativeBuild { cmake { cppFlags "-O2 -frtti -fexceptions -Wall -fstack-protector-all" - arguments "-DANDROID_STL=c++_shared" + arguments "-DANDROID_STL=c++_shared -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" abiFilters (*reactNativeArchitectures()) } } diff --git a/modules/background-task/android/build.gradle b/modules/background-task/android/build.gradle index 11f43d046177c..74723efc2f087 100644 --- a/modules/background-task/android/build.gradle +++ b/modules/background-task/android/build.gradle @@ -45,6 +45,11 @@ android { targetSdkVersion getExtOrIntegerDefault("targetSdkVersion") buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() + externalNativeBuild { + cmake { + arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" + } + } } buildFeatures { From 29dad86bb6f9d97fe9c82dc6da53166847a17df0 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Tue, 24 Jun 2025 15:24:46 +0200 Subject: [PATCH 06/50] chore: update nitro --- Mobile-Expensify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mobile-Expensify b/Mobile-Expensify index 939b50dace6f0..0b52c81736eb8 160000 --- a/Mobile-Expensify +++ b/Mobile-Expensify @@ -1 +1 @@ -Subproject commit 939b50dace6f0db569b351aeafd0b2b00220ab94 +Subproject commit 0b52c81736eb874fdcbfd075bdd3477d28ae97bc From db87ce8437ab579779288e33cecb51d6ba941ee6 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 15:18:31 +0200 Subject: [PATCH 07/50] chore: react-native-safe-area-context patch --- ...-jni-packaging-for-16kb-memory-page-size.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 patches/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch diff --git a/patches/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..71eb299d1382d --- /dev/null +++ b/patches/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch @@ -0,0 +1,15 @@ +diff --git a/node_modules/react-native-safe-area-context/android/build.gradle b/node_modules/react-native-safe-area-context/android/build.gradle +index f324b9a..d35b98f 100644 +--- a/node_modules/react-native-safe-area-context/android/build.gradle ++++ b/node_modules/react-native-safe-area-context/android/build.gradle +@@ -80,6 +80,10 @@ android { + // only the ones that make the build fail (ideally we should only include libsafeareacontext_modules but we + // are only allowed to specify exclude patterns) + exclude "**/libreact_render*.so" ++ ++ jniLibs { ++ useLegacyPackaging true ++ } + } + sourceSets.main { + java { \ No newline at end of file From 3a081626818e97ea86efc77f4b1a4bce32eea8d7 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 16:51:22 +0200 Subject: [PATCH 08/50] chore: @rnmapbox/maps --- .../@rnmapbox+maps+10.1.33+001+initial.patch} | 0 ...-packaging-for-16kb-memory-page-size.patch | 13979 ++++++++++++++++ patches/@rnmapbox/maps/details.md | 15 + 3 files changed, 13994 insertions(+) rename patches/{@rnmapbox+maps+10.1.33.patch => @rnmapbox/maps/@rnmapbox+maps+10.1.33+001+initial.patch} (100%) create mode 100644 patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch create mode 100644 patches/@rnmapbox/maps/details.md diff --git a/patches/@rnmapbox+maps+10.1.33.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+001+initial.patch similarity index 100% rename from patches/@rnmapbox+maps+10.1.33.patch rename to patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+001+initial.patch diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..81d3db3a5db7b --- /dev/null +++ b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch @@ -0,0 +1,13979 @@ +diff --git a/node_modules/@rnmapbox/maps/android/build.gradle b/node_modules/@rnmapbox/maps/android/build.gradle +index dd8e6c6..7c5ca38 100644 +--- a/node_modules/@rnmapbox/maps/android/build.gradle ++++ b/node_modules/@rnmapbox/maps/android/build.gradle +@@ -84,6 +84,10 @@ android { + } + + packagingOptions { ++ jniLibs { ++ useLegacyPackaging true ++ } ++ + pickFirst 'lib/x86/libc++_shared.so' + pickFirst 'lib/x86_64/libc++_shared.so' + pickFirst 'lib/arm64-v8a/libc++_shared.so' +diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/results.bin b/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/transformed/classes/classes_dex/classes.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..de56de6 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java b/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java +new file mode 100644 +index 0000000..f8f7ad6 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java +@@ -0,0 +1,12 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.rnmapbox.rnmbx; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.rnmapbox.rnmbx"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = true; ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java +new file mode 100644 +index 0000000..342de06 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java +@@ -0,0 +1,33 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXAtmosphereManagerDelegate & RNMBXAtmosphereManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXAtmosphereManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.java +new file mode 100644 +index 0000000..4ca4850 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.java +@@ -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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXAtmosphereManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.java +new file mode 100644 +index 0000000..a7af3e0 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXBackgroundLayerManagerDelegate & RNMBXBackgroundLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXBackgroundLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.java +new file mode 100644 +index 0000000..6ac2e9e +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.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 com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXBackgroundLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, Dynamic value); ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.java +new file mode 100644 +index 0000000..5f13e79 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.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 RNMBXCalloutManagerDelegate & RNMBXCalloutManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXCalloutManagerDelegate(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/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.java +new file mode 100644 +index 0000000..4c8e042 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.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 RNMBXCalloutManagerInterface extends ViewManagerWithGeneratedInterface { ++ // No props ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java +new file mode 100644 +index 0000000..db3e9ce +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java +@@ -0,0 +1,75 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXCameraManagerDelegate & RNMBXCameraManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXCameraManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "maxBounds": ++ mViewManager.setMaxBounds(view, new DynamicFromObject(value)); ++ break; ++ case "animationDuration": ++ mViewManager.setAnimationDuration(view, new DynamicFromObject(value)); ++ break; ++ case "animationMode": ++ mViewManager.setAnimationMode(view, new DynamicFromObject(value)); ++ break; ++ case "defaultStop": ++ mViewManager.setDefaultStop(view, new DynamicFromObject(value)); ++ break; ++ case "userTrackingMode": ++ mViewManager.setUserTrackingMode(view, new DynamicFromObject(value)); ++ break; ++ case "followUserLocation": ++ mViewManager.setFollowUserLocation(view, new DynamicFromObject(value)); ++ break; ++ case "followUserMode": ++ mViewManager.setFollowUserMode(view, new DynamicFromObject(value)); ++ break; ++ case "followZoomLevel": ++ mViewManager.setFollowZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "followPitch": ++ mViewManager.setFollowPitch(view, new DynamicFromObject(value)); ++ break; ++ case "followHeading": ++ mViewManager.setFollowHeading(view, new DynamicFromObject(value)); ++ break; ++ case "followPadding": ++ mViewManager.setFollowPadding(view, new DynamicFromObject(value)); ++ break; ++ case "zoomLevel": ++ mViewManager.setZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "stop": ++ mViewManager.setStop(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.java +new file mode 100644 +index 0000000..0460c4e +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.java +@@ -0,0 +1,32 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXCameraManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setMaxBounds(T view, Dynamic value); ++ void setAnimationDuration(T view, Dynamic value); ++ void setAnimationMode(T view, Dynamic value); ++ void setDefaultStop(T view, Dynamic value); ++ void setUserTrackingMode(T view, Dynamic value); ++ void setFollowUserLocation(T view, Dynamic value); ++ void setFollowUserMode(T view, Dynamic value); ++ void setFollowZoomLevel(T view, Dynamic value); ++ void setFollowPitch(T view, Dynamic value); ++ void setFollowHeading(T view, Dynamic value); ++ void setFollowPadding(T view, Dynamic value); ++ void setZoomLevel(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setStop(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.java +new file mode 100644 +index 0000000..4615522 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXCircleLayerManagerDelegate & RNMBXCircleLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXCircleLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "sourceLayerID": ++ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "slot": ++ mViewManager.setSlot(view, new DynamicFromObject(value)); ++ break; ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.java +new file mode 100644 +index 0000000..7c8eae4 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.java +@@ -0,0 +1,29 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXCircleLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setSourceLayerID(T view, Dynamic value); ++ void setSlot(T view, Dynamic value); ++ void setId(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java +new file mode 100644 +index 0000000..5d4d3ff +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java +@@ -0,0 +1,36 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXCustomLocationProviderManagerDelegate & RNMBXCustomLocationProviderManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXCustomLocationProviderManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "coordinate": ++ mViewManager.setCoordinate(view, new DynamicFromObject(value)); ++ break; ++ case "heading": ++ mViewManager.setHeading(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.java +new file mode 100644 +index 0000000..da679d7 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.java +@@ -0,0 +1,19 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXCustomLocationProviderManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setCoordinate(T view, Dynamic value); ++ void setHeading(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java +new file mode 100644 +index 0000000..74d71ef +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java +@@ -0,0 +1,63 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXFillExtrusionLayerManagerDelegate & RNMBXFillExtrusionLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXFillExtrusionLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "sourceLayerID": ++ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.java +new file mode 100644 +index 0000000..0f410f3 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.java +@@ -0,0 +1,28 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXFillExtrusionLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, Dynamic value); ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setSourceLayerID(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.java +new file mode 100644 +index 0000000..51e36e4 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXFillLayerManagerDelegate & RNMBXFillLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXFillLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "sourceLayerID": ++ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "slot": ++ mViewManager.setSlot(view, new DynamicFromObject(value)); ++ break; ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.java +new file mode 100644 +index 0000000..4bfd29d +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.java +@@ -0,0 +1,29 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXFillLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setSourceLayerID(T view, Dynamic value); ++ void setSlot(T view, Dynamic value); ++ void setId(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.java +new file mode 100644 +index 0000000..26227c1 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXHeatmapLayerManagerDelegate & RNMBXHeatmapLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXHeatmapLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "sourceLayerID": ++ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "slot": ++ mViewManager.setSlot(view, new DynamicFromObject(value)); ++ break; ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.java +new file mode 100644 +index 0000000..d4f58e2 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.java +@@ -0,0 +1,29 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXHeatmapLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setSourceLayerID(T view, Dynamic value); ++ void setSlot(T view, Dynamic value); ++ void setId(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java +new file mode 100644 +index 0000000..9feed84 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java +@@ -0,0 +1,48 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXImageManagerDelegate & RNMBXImageManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXImageManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "stretchX": ++ mViewManager.setStretchX(view, new DynamicFromObject(value)); ++ break; ++ case "stretchY": ++ mViewManager.setStretchY(view, new DynamicFromObject(value)); ++ break; ++ case "content": ++ mViewManager.setContent(view, new DynamicFromObject(value)); ++ break; ++ case "sdf": ++ mViewManager.setSdf(view, new DynamicFromObject(value)); ++ break; ++ case "name": ++ mViewManager.setName(view, new DynamicFromObject(value)); ++ break; ++ case "scale": ++ mViewManager.setScale(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.java +new file mode 100644 +index 0000000..6dc6b3e +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.java +@@ -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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXImageManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setStretchX(T view, Dynamic value); ++ void setStretchY(T view, Dynamic value); ++ void setContent(T view, Dynamic value); ++ void setSdf(T view, Dynamic value); ++ void setName(T view, Dynamic value); ++ void setScale(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java +new file mode 100644 +index 0000000..a61516d +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java +@@ -0,0 +1,42 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXImageSourceManagerDelegate & RNMBXImageSourceManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXImageSourceManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "url": ++ mViewManager.setUrl(view, new DynamicFromObject(value)); ++ break; ++ case "coordinates": ++ mViewManager.setCoordinates(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.java +new file mode 100644 +index 0000000..ed521ac +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.java +@@ -0,0 +1,21 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXImageSourceManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setUrl(T view, Dynamic value); ++ void setCoordinates(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java +new file mode 100644 +index 0000000..0e45f93 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java +@@ -0,0 +1,39 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXImagesManagerDelegate & RNMBXImagesManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXImagesManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "images": ++ mViewManager.setImages(view, new DynamicFromObject(value)); ++ break; ++ case "nativeImages": ++ mViewManager.setNativeImages(view, new DynamicFromObject(value)); ++ break; ++ case "hasOnImageMissing": ++ mViewManager.setHasOnImageMissing(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.java +new file mode 100644 +index 0000000..3549554 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.java +@@ -0,0 +1,20 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXImagesManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setImages(T view, Dynamic value); ++ void setNativeImages(T view, Dynamic value); ++ void setHasOnImageMissing(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java +new file mode 100644 +index 0000000..2abdb45 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java +@@ -0,0 +1,33 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXLightManagerDelegate & RNMBXLightManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXLightManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.java +new file mode 100644 +index 0000000..7412e34 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.java +@@ -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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXLightManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.java +new file mode 100644 +index 0000000..8d57d8b +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXLineLayerManagerDelegate & RNMBXLineLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXLineLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "sourceLayerID": ++ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "slot": ++ mViewManager.setSlot(view, new DynamicFromObject(value)); ++ break; ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.java +new file mode 100644 +index 0000000..5d61ef8 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.java +@@ -0,0 +1,29 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXLineLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setSourceLayerID(T view, Dynamic value); ++ void setSlot(T view, Dynamic value); ++ void setId(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java +new file mode 100644 +index 0000000..e4f15e4 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java +@@ -0,0 +1,111 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXMapViewManagerDelegate & RNMBXMapViewManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXMapViewManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "attributionEnabled": ++ mViewManager.setAttributionEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "attributionPosition": ++ mViewManager.setAttributionPosition(view, new DynamicFromObject(value)); ++ break; ++ case "logoEnabled": ++ mViewManager.setLogoEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "logoPosition": ++ mViewManager.setLogoPosition(view, new DynamicFromObject(value)); ++ break; ++ case "compassEnabled": ++ mViewManager.setCompassEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "compassFadeWhenNorth": ++ mViewManager.setCompassFadeWhenNorth(view, new DynamicFromObject(value)); ++ break; ++ case "compassPosition": ++ mViewManager.setCompassPosition(view, new DynamicFromObject(value)); ++ break; ++ case "compassViewPosition": ++ mViewManager.setCompassViewPosition(view, new DynamicFromObject(value)); ++ break; ++ case "compassViewMargins": ++ mViewManager.setCompassViewMargins(view, new DynamicFromObject(value)); ++ break; ++ case "scaleBarEnabled": ++ mViewManager.setScaleBarEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "scaleBarPosition": ++ mViewManager.setScaleBarPosition(view, new DynamicFromObject(value)); ++ break; ++ case "zoomEnabled": ++ mViewManager.setZoomEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "scrollEnabled": ++ mViewManager.setScrollEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "rotateEnabled": ++ mViewManager.setRotateEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "pitchEnabled": ++ mViewManager.setPitchEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "deselectAnnotationOnTap": ++ mViewManager.setDeselectAnnotationOnTap(view, new DynamicFromObject(value)); ++ break; ++ case "requestDisallowInterceptTouchEvent": ++ mViewManager.setRequestDisallowInterceptTouchEvent(view, new DynamicFromObject(value)); ++ break; ++ case "projection": ++ mViewManager.setProjection(view, new DynamicFromObject(value)); ++ break; ++ case "localizeLabels": ++ mViewManager.setLocalizeLabels(view, new DynamicFromObject(value)); ++ break; ++ case "styleURL": ++ mViewManager.setStyleURL(view, new DynamicFromObject(value)); ++ break; ++ case "gestureSettings": ++ mViewManager.setGestureSettings(view, new DynamicFromObject(value)); ++ break; ++ case "surfaceView": ++ mViewManager.setSurfaceView(view, new DynamicFromObject(value)); ++ break; ++ case "scaleBarViewMargins": ++ mViewManager.setScaleBarViewMargins(view, new DynamicFromObject(value)); ++ break; ++ case "attributionViewMargins": ++ mViewManager.setAttributionViewMargins(view, new DynamicFromObject(value)); ++ break; ++ case "attributionViewPosition": ++ mViewManager.setAttributionViewPosition(view, new DynamicFromObject(value)); ++ break; ++ case "compassImage": ++ mViewManager.setCompassImage(view, new DynamicFromObject(value)); ++ break; ++ case "mapViewImpl": ++ mViewManager.setMapViewImpl(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.java +new file mode 100644 +index 0000000..dd21b48 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.java +@@ -0,0 +1,44 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXMapViewManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setAttributionEnabled(T view, Dynamic value); ++ void setAttributionPosition(T view, Dynamic value); ++ void setLogoEnabled(T view, Dynamic value); ++ void setLogoPosition(T view, Dynamic value); ++ void setCompassEnabled(T view, Dynamic value); ++ void setCompassFadeWhenNorth(T view, Dynamic value); ++ void setCompassPosition(T view, Dynamic value); ++ void setCompassViewPosition(T view, Dynamic value); ++ void setCompassViewMargins(T view, Dynamic value); ++ void setScaleBarEnabled(T view, Dynamic value); ++ void setScaleBarPosition(T view, Dynamic value); ++ void setZoomEnabled(T view, Dynamic value); ++ void setScrollEnabled(T view, Dynamic value); ++ void setRotateEnabled(T view, Dynamic value); ++ void setPitchEnabled(T view, Dynamic value); ++ void setDeselectAnnotationOnTap(T view, Dynamic value); ++ void setRequestDisallowInterceptTouchEvent(T view, Dynamic value); ++ void setProjection(T view, Dynamic value); ++ void setLocalizeLabels(T view, Dynamic value); ++ void setStyleURL(T view, Dynamic value); ++ void setGestureSettings(T view, Dynamic value); ++ void setSurfaceView(T view, Dynamic value); ++ void setScaleBarViewMargins(T view, Dynamic value); ++ void setAttributionViewMargins(T view, Dynamic value); ++ void setAttributionViewPosition(T view, Dynamic value); ++ void setCompassImage(T view, Dynamic value); ++ void setMapViewImpl(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.java +new file mode 100644 +index 0000000..0b53e6e +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.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 RNMBXMarkerViewContentManagerDelegate & RNMBXMarkerViewContentManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXMarkerViewContentManagerDelegate(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/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.java +new file mode 100644 +index 0000000..15a4c51 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.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 RNMBXMarkerViewContentManagerInterface extends ViewManagerWithGeneratedInterface { ++ // No props ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java +new file mode 100644 +index 0000000..1901060 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java +@@ -0,0 +1,45 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXMarkerViewManagerDelegate & RNMBXMarkerViewManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXMarkerViewManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "coordinate": ++ mViewManager.setCoordinate(view, new DynamicFromObject(value)); ++ break; ++ case "anchor": ++ mViewManager.setAnchor(view, new DynamicFromObject(value)); ++ break; ++ case "allowOverlap": ++ mViewManager.setAllowOverlap(view, new DynamicFromObject(value)); ++ break; ++ case "allowOverlapWithPuck": ++ mViewManager.setAllowOverlapWithPuck(view, new DynamicFromObject(value)); ++ break; ++ case "isSelected": ++ mViewManager.setIsSelected(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.java +new file mode 100644 +index 0000000..d116d69 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.java +@@ -0,0 +1,22 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXMarkerViewManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setCoordinate(T view, Dynamic value); ++ void setAnchor(T view, Dynamic value); ++ void setAllowOverlap(T view, Dynamic value); ++ void setAllowOverlapWithPuck(T view, Dynamic value); ++ void setIsSelected(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.java +new file mode 100644 +index 0000000..ffb987d +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXModelLayerManagerDelegate & RNMBXModelLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXModelLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "sourceLayerID": ++ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "slot": ++ mViewManager.setSlot(view, new DynamicFromObject(value)); ++ break; ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.java +new file mode 100644 +index 0000000..da992aa +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.java +@@ -0,0 +1,29 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXModelLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setSourceLayerID(T view, Dynamic value); ++ void setSlot(T view, Dynamic value); ++ void setId(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java +new file mode 100644 +index 0000000..9d0c149 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java +@@ -0,0 +1,33 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXModelsManagerDelegate & RNMBXModelsManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXModelsManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "models": ++ mViewManager.setModels(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.java +new file mode 100644 +index 0000000..2888f2d +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.java +@@ -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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXModelsManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setModels(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java +new file mode 100644 +index 0000000..35caed4 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java +@@ -0,0 +1,57 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXNativeUserLocationManagerDelegate & RNMBXNativeUserLocationManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXNativeUserLocationManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "androidRenderMode": ++ mViewManager.setAndroidRenderMode(view, new DynamicFromObject(value)); ++ break; ++ case "puckBearing": ++ mViewManager.setPuckBearing(view, new DynamicFromObject(value)); ++ break; ++ case "puckBearingEnabled": ++ mViewManager.setPuckBearingEnabled(view, new DynamicFromObject(value)); ++ break; ++ case "bearingImage": ++ mViewManager.setBearingImage(view, new DynamicFromObject(value)); ++ break; ++ case "shadowImage": ++ mViewManager.setShadowImage(view, new DynamicFromObject(value)); ++ break; ++ case "topImage": ++ mViewManager.setTopImage(view, new DynamicFromObject(value)); ++ break; ++ case "scale": ++ mViewManager.setScale(view, new DynamicFromObject(value)); ++ break; ++ case "visible": ++ mViewManager.setVisible(view, value == null ? false : (boolean) value); ++ break; ++ case "pulsing": ++ mViewManager.setPulsing(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.java +new file mode 100644 +index 0000000..0ef212d +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXNativeUserLocationManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setAndroidRenderMode(T view, Dynamic value); ++ void setPuckBearing(T view, Dynamic value); ++ void setPuckBearingEnabled(T view, Dynamic value); ++ void setBearingImage(T view, Dynamic value); ++ void setShadowImage(T view, Dynamic value); ++ void setTopImage(T view, Dynamic value); ++ void setScale(T view, Dynamic value); ++ void setVisible(T view, boolean value); ++ void setPulsing(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java +new file mode 100644 +index 0000000..950dc3b +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java +@@ -0,0 +1,42 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXPointAnnotationManagerDelegate & RNMBXPointAnnotationManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXPointAnnotationManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "coordinate": ++ mViewManager.setCoordinate(view, new DynamicFromObject(value)); ++ break; ++ case "draggable": ++ mViewManager.setDraggable(view, new DynamicFromObject(value)); ++ break; ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "anchor": ++ mViewManager.setAnchor(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.java +new file mode 100644 +index 0000000..2cceb2f +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.java +@@ -0,0 +1,21 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXPointAnnotationManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setCoordinate(T view, Dynamic value); ++ void setDraggable(T view, Dynamic value); ++ void setId(T view, Dynamic value); ++ void setAnchor(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java +new file mode 100644 +index 0000000..5fac0a3 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java +@@ -0,0 +1,51 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXRasterDemSourceManagerDelegate & RNMBXRasterDemSourceManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXRasterDemSourceManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "url": ++ mViewManager.setUrl(view, new DynamicFromObject(value)); ++ break; ++ case "tileUrlTemplates": ++ mViewManager.setTileUrlTemplates(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "tileSize": ++ mViewManager.setTileSize(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.java +new file mode 100644 +index 0000000..3e19ea1 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.java +@@ -0,0 +1,24 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXRasterDemSourceManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setUrl(T view, Dynamic value); ++ void setTileUrlTemplates(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setTileSize(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.java +new file mode 100644 +index 0000000..80776b6 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXRasterLayerManagerDelegate & RNMBXRasterLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXRasterLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "sourceLayerID": ++ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "slot": ++ mViewManager.setSlot(view, new DynamicFromObject(value)); ++ break; ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.java +new file mode 100644 +index 0000000..b992efa +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.java +@@ -0,0 +1,29 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXRasterLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setSourceLayerID(T view, Dynamic value); ++ void setSlot(T view, Dynamic value); ++ void setId(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java +new file mode 100644 +index 0000000..c9fbe12 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java +@@ -0,0 +1,57 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXRasterSourceManagerDelegate & RNMBXRasterSourceManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXRasterSourceManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "url": ++ mViewManager.setUrl(view, new DynamicFromObject(value)); ++ break; ++ case "tileUrlTemplates": ++ mViewManager.setTileUrlTemplates(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "tileSize": ++ mViewManager.setTileSize(view, new DynamicFromObject(value)); ++ break; ++ case "tms": ++ mViewManager.setTms(view, new DynamicFromObject(value)); ++ break; ++ case "attribution": ++ mViewManager.setAttribution(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.java +new file mode 100644 +index 0000000..4c021bd +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXRasterSourceManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setUrl(T view, Dynamic value); ++ void setTileUrlTemplates(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setTileSize(T view, Dynamic value); ++ void setTms(T view, Dynamic value); ++ void setAttribution(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java +new file mode 100644 +index 0000000..c780e69 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java +@@ -0,0 +1,72 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXShapeSourceManagerDelegate & RNMBXShapeSourceManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXShapeSourceManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "url": ++ mViewManager.setUrl(view, new DynamicFromObject(value)); ++ break; ++ case "shape": ++ mViewManager.setShape(view, new DynamicFromObject(value)); ++ break; ++ case "cluster": ++ mViewManager.setCluster(view, new DynamicFromObject(value)); ++ break; ++ case "clusterRadius": ++ mViewManager.setClusterRadius(view, new DynamicFromObject(value)); ++ break; ++ case "clusterMaxZoomLevel": ++ mViewManager.setClusterMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "clusterProperties": ++ mViewManager.setClusterProperties(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "buffer": ++ mViewManager.setBuffer(view, new DynamicFromObject(value)); ++ break; ++ case "tolerance": ++ mViewManager.setTolerance(view, new DynamicFromObject(value)); ++ break; ++ case "lineMetrics": ++ mViewManager.setLineMetrics(view, new DynamicFromObject(value)); ++ break; ++ case "hasPressListener": ++ mViewManager.setHasPressListener(view, new DynamicFromObject(value)); ++ break; ++ case "hitbox": ++ mViewManager.setHitbox(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.java +new file mode 100644 +index 0000000..6a15c2b +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.java +@@ -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: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXShapeSourceManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setUrl(T view, Dynamic value); ++ void setShape(T view, Dynamic value); ++ void setCluster(T view, Dynamic value); ++ void setClusterRadius(T view, Dynamic value); ++ void setClusterMaxZoomLevel(T view, Dynamic value); ++ void setClusterProperties(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setBuffer(T view, Dynamic value); ++ void setTolerance(T view, Dynamic value); ++ void setLineMetrics(T view, Dynamic value); ++ void setHasPressListener(T view, Dynamic value); ++ void setHitbox(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.java +new file mode 100644 +index 0000000..2cda3e9 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXSkyLayerManagerDelegate & RNMBXSkyLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXSkyLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.java +new file mode 100644 +index 0000000..3f42220 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.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 com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXSkyLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, Dynamic value); ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java +new file mode 100644 +index 0000000..d6eaf98 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java +@@ -0,0 +1,39 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXStyleImportManagerDelegate & RNMBXStyleImportManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXStyleImportManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, value == null ? null : (String) value); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, value == null ? false : (boolean) value); ++ break; ++ case "config": ++ mViewManager.setConfig(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.java +new file mode 100644 +index 0000000..323c65a +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.java +@@ -0,0 +1,21 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXStyleImportManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, @Nullable String value); ++ void setExisting(T view, boolean value); ++ void setConfig(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.java +new file mode 100644 +index 0000000..ca81653 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.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: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXSymbolLayerManagerDelegate & RNMBXSymbolLayerManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXSymbolLayerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "filter": ++ mViewManager.setFilter(view, new DynamicFromObject(value)); ++ break; ++ case "aboveLayerID": ++ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "belowLayerID": ++ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "layerIndex": ++ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "sourceLayerID": ++ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); ++ break; ++ case "slot": ++ mViewManager.setSlot(view, new DynamicFromObject(value)); ++ break; ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.java +new file mode 100644 +index 0000000..fa2b754 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.java +@@ -0,0 +1,29 @@ ++/** ++* 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.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXSymbolLayerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setSourceID(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setFilter(T view, Dynamic value); ++ void setAboveLayerID(T view, Dynamic value); ++ void setBelowLayerID(T view, Dynamic value); ++ void setLayerIndex(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setSourceLayerID(T view, Dynamic value); ++ void setSlot(T view, Dynamic value); ++ void setId(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java +new file mode 100644 +index 0000000..89a55a8 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java +@@ -0,0 +1,36 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXTerrainManagerDelegate & RNMBXTerrainManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXTerrainManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "sourceID": ++ mViewManager.setSourceID(view, new DynamicFromObject(value)); ++ break; ++ case "reactStyle": ++ mViewManager.setReactStyle(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.java +new file mode 100644 +index 0000000..f23b719 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.java +@@ -0,0 +1,19 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXTerrainManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setSourceID(T view, Dynamic value); ++ void setReactStyle(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java +new file mode 100644 +index 0000000..7252671 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXVectorSourceManagerDelegate & RNMBXVectorSourceManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXVectorSourceManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "id": ++ mViewManager.setId(view, new DynamicFromObject(value)); ++ break; ++ case "existing": ++ mViewManager.setExisting(view, new DynamicFromObject(value)); ++ break; ++ case "url": ++ mViewManager.setUrl(view, new DynamicFromObject(value)); ++ break; ++ case "tileUrlTemplates": ++ mViewManager.setTileUrlTemplates(view, new DynamicFromObject(value)); ++ break; ++ case "attribution": ++ mViewManager.setAttribution(view, new DynamicFromObject(value)); ++ break; ++ case "maxZoomLevel": ++ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "minZoomLevel": ++ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); ++ break; ++ case "tms": ++ mViewManager.setTms(view, new DynamicFromObject(value)); ++ break; ++ case "hasPressListener": ++ mViewManager.setHasPressListener(view, new DynamicFromObject(value)); ++ break; ++ case "hitbox": ++ mViewManager.setHitbox(view, new DynamicFromObject(value)); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.java +new file mode 100644 +index 0000000..739c6cd +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.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 com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXVectorSourceManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setId(T view, Dynamic value); ++ void setExisting(T view, Dynamic value); ++ void setUrl(T view, Dynamic value); ++ void setTileUrlTemplates(T view, Dynamic value); ++ void setAttribution(T view, Dynamic value); ++ void setMaxZoomLevel(T view, Dynamic value); ++ void setMinZoomLevel(T view, Dynamic value); ++ void setTms(T view, Dynamic value); ++ void setHasPressListener(T view, Dynamic value); ++ void setHitbox(T view, Dynamic value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java +new file mode 100644 +index 0000000..c652f46 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java +@@ -0,0 +1,36 @@ ++/** ++* 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.DynamicFromObject; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNMBXViewportManagerDelegate & RNMBXViewportManagerInterface> extends BaseViewManagerDelegate { ++ public RNMBXViewportManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "transitionsToIdleUponUserInteraction": ++ mViewManager.setTransitionsToIdleUponUserInteraction(view, new DynamicFromObject(value)); ++ break; ++ case "hasStatusChanged": ++ mViewManager.setHasStatusChanged(view, value == null ? false : (boolean) value); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.java +new file mode 100644 +index 0000000..408680e +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.java +@@ -0,0 +1,19 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.bridge.Dynamic; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface RNMBXViewportManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setTransitionsToIdleUponUserInteraction(T view, Dynamic value); ++ void setHasStatusChanged(T view, boolean value); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.java +new file mode 100644 +index 0000000..8050413 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.java +@@ -0,0 +1,88 @@ ++ ++/** ++ * 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.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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.bridge.ReadableArray; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++import javax.annotation.Nullable; ++ ++public abstract class NativeMapViewModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXMapViewModule"; ++ ++ public NativeMapViewModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void takeSnap(@Nullable Double viewRef, boolean writeToDisk, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void queryTerrainElevation(@Nullable Double viewRef, ReadableArray coordinates, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void setSourceVisibility(@Nullable Double viewRef, boolean visible, String sourceId, String sourceLayerId, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getCenter(@Nullable Double viewRef, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getCoordinateFromView(@Nullable Double viewRef, ReadableArray atPoint, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getPointInView(@Nullable Double viewRef, ReadableArray atCoordinate, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getZoom(@Nullable Double viewRef, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getVisibleBounds(@Nullable Double viewRef, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void queryRenderedFeaturesAtPoint(@Nullable Double viewRef, ReadableArray atPoint, ReadableArray withFilter, ReadableArray withLayerIDs, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void queryRenderedFeaturesInRect(@Nullable Double viewRef, ReadableArray withBBox, ReadableArray withFilter, ReadableArray withLayerIDs, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void setHandledMapChangedEvents(@Nullable Double viewRef, ReadableArray events, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void clearData(@Nullable Double viewRef, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void querySourceFeatures(@Nullable Double viewRef, String sourceId, ReadableArray withFilter, ReadableArray withSourceLayerIDs, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.java +new file mode 100644 +index 0000000..a8cd0e8 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.java +@@ -0,0 +1,40 @@ ++ ++/** ++ * 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.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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.bridge.ReadableMap; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++import javax.annotation.Nullable; ++ ++public abstract class NativeRNMBXCameraModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXCameraModule"; ++ ++ public NativeRNMBXCameraModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void updateCameraStop(@Nullable Double viewRef, ReadableMap stop, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.java +new file mode 100644 +index 0000000..7bc5fbc +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.java +@@ -0,0 +1,51 @@ ++ ++/** ++ * 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.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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.bridge.ReadableArray; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++ ++public abstract class NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXChangeLineOffsetsShapeAnimatorModule"; ++ ++ public NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void create(double tag, ReadableArray coordinates, double startOffset, double endOffset, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void setLineString(double tag, ReadableArray coordinates, double startOffset, double endOffset, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void setStartOffset(double tag, double offset, double duration, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void setEndOffset(double tag, double offset, double duration, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.java +new file mode 100644 +index 0000000..942ea74 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.java +@@ -0,0 +1,39 @@ ++ ++/** ++ * 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.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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; ++import javax.annotation.Nonnull; ++import javax.annotation.Nullable; ++ ++public abstract class NativeRNMBXImageModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXImageModule"; ++ ++ public NativeRNMBXImageModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void refresh(@Nullable Double viewRef, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.java +new file mode 100644 +index 0000000..944e0fc +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.java +@@ -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: GenerateModuleJavaSpec.js ++ * ++ * @nolint ++ */ ++ ++package com.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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.bridge.ReadableArray; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++ ++public abstract class NativeRNMBXMovePointShapeAnimatorModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXMovePointShapeAnimatorModule"; ++ ++ public NativeRNMBXMovePointShapeAnimatorModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void create(double tag, ReadableArray coordinate, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void moveTo(double tag, ReadableArray coordinate, double duration, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.java +new file mode 100644 +index 0000000..195a10a +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.java +@@ -0,0 +1,39 @@ ++ ++/** ++ * 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.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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; ++import javax.annotation.Nonnull; ++import javax.annotation.Nullable; ++ ++public abstract class NativeRNMBXPointAnnotationModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXPointAnnotationModule"; ++ ++ public NativeRNMBXPointAnnotationModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void refresh(@Nullable Double viewRef, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.java +new file mode 100644 +index 0000000..4b7bc27 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.java +@@ -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: GenerateModuleJavaSpec.js ++ * ++ * @nolint ++ */ ++ ++package com.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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; ++import javax.annotation.Nonnull; ++import javax.annotation.Nullable; ++ ++public abstract class NativeRNMBXShapeSourceModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXShapeSourceModule"; ++ ++ public NativeRNMBXShapeSourceModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getClusterExpansionZoom(@Nullable Double viewRef, String featureJSON, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getClusterLeaves(@Nullable Double viewRef, String featureJSON, double number, double offset, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getClusterChildren(@Nullable Double viewRef, String featureJSON, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.java +new file mode 100644 +index 0000000..1153db1 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.java +@@ -0,0 +1,44 @@ ++ ++/** ++ * 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.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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.bridge.ReadableMap; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++import javax.annotation.Nullable; ++ ++public abstract class NativeRNMBXTileStoreModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXTileStoreModule"; ++ ++ public NativeRNMBXTileStoreModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void shared(@Nullable String path, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void setOption(double tag, String key, String domain, ReadableMap value, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.java +new file mode 100644 +index 0000000..bdc8339 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.java +@@ -0,0 +1,48 @@ ++ ++/** ++ * 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.rnmapbox.rnmbx; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++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.bridge.ReadableMap; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++import javax.annotation.Nullable; ++ ++public abstract class NativeRNMBXViewportModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "RNMBXViewportModule"; ++ ++ public NativeRNMBXViewportModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void getState(@Nullable Double viewRef, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void transitionTo(@Nullable Double viewRef, ReadableMap state, ReadableMap transition, Promise promise); ++ ++ @ReactMethod ++ @DoNotStrip ++ public abstract void idle(@Nullable Double viewRef, Promise promise); ++} +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/CMakeLists.txt +new file mode 100644 +index 0000000..6fae723 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/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/rnmapbox_maps_specs/*.cpp) ++ ++add_library( ++ react_codegen_rnmapbox_maps_specs ++ OBJECT ++ ${react_codegen_SRCS} ++) ++ ++target_include_directories(react_codegen_rnmapbox_maps_specs PUBLIC . react/renderer/components/rnmapbox_maps_specs) ++ ++target_link_libraries( ++ react_codegen_rnmapbox_maps_specs ++ 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_rnmapbox_maps_specs ++ PRIVATE ++ -DLOG_TAG=\"ReactNative\" ++ -fexceptions ++ -frtti ++ -std=c++20 ++ -Wall ++) +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.cpp +new file mode 100644 +index 0000000..6247dea +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.cpp +@@ -0,0 +1,52 @@ ++ ++/** ++ * 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 rnmapbox_maps_specs_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry) { ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.h +new file mode 100644 +index 0000000..f230725 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.h +@@ -0,0 +1,54 @@ ++ ++/** ++ * 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 RNMBXAtmosphereComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXBackgroundLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXCalloutComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXCameraComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXCircleLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXCustomLocationProviderComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXFillExtrusionLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXFillLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXHeatmapLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXImageComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXImagesComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXImageSourceComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXLightComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXLineLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXMapViewComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXMarkerViewContentComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXMarkerViewComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXModelLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXModelsComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXNativeUserLocationComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXPointAnnotationComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXRasterDemSourceComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXRasterLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXRasterSourceComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXShapeSourceComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXSkyLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXStyleImportComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXSymbolLayerComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXTerrainComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXVectorSourceComponentDescriptor = ConcreteComponentDescriptor; ++using RNMBXViewportComponentDescriptor = ConcreteComponentDescriptor; ++ ++void rnmapbox_maps_specs_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry); ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.cpp +new file mode 100644 +index 0000000..aa2f936 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.cpp +@@ -0,0 +1,188 @@ ++ ++/** ++ * 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 { ++ ++ ++ ++ ++void RNMBXCameraEventEmitter::onUserTrackingModeChange(OnUserTrackingModeChange $event) const { ++ dispatchEvent("userTrackingModeChange", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++{ ++ auto payloadRenamed = jsi::Object(runtime); ++ payloadRenamed.setProperty(runtime, "followUserLocation", $event.payloadRenamed.followUserLocation); ++ payloadRenamed.setProperty(runtime, "followUserMode", $event.payloadRenamed.followUserMode); ++ $payload.setProperty(runtime, "payloadRenamed", payloadRenamed); ++} ++ return $payload; ++ }); ++} ++ ++ ++ ++ ++ ++ ++ ++ ++void RNMBXImagesEventEmitter::onImageMissing(OnImageMissing $event) const { ++ dispatchEvent("imageMissing", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++{ ++ auto payload = jsi::Object(runtime); ++ payload.setProperty(runtime, "imageKey", $event.payload.imageKey); ++ $payload.setProperty(runtime, "payload", payload); ++} ++ return $payload; ++ }); ++} ++ ++ ++ ++ ++ ++void RNMBXMapViewEventEmitter::onPress(OnPress $event) const { ++ dispatchEvent("press", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++void RNMBXMapViewEventEmitter::onLongPress(OnLongPress $event) const { ++ dispatchEvent("longPress", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++void RNMBXMapViewEventEmitter::onMapChange(OnMapChange $event) const { ++ dispatchEvent("mapChange", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++void RNMBXMapViewEventEmitter::onCameraChanged(OnCameraChanged $event) const { ++ dispatchEvent("cameraChanged", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++ ++ ++ ++ ++ ++void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationDeselected(OnMapboxPointAnnotationDeselected $event) const { ++ dispatchEvent("mapboxPointAnnotationDeselected", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationDrag(OnMapboxPointAnnotationDrag $event) const { ++ dispatchEvent("mapboxPointAnnotationDrag", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationDragEnd(OnMapboxPointAnnotationDragEnd $event) const { ++ dispatchEvent("mapboxPointAnnotationDragEnd", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationDragStart(OnMapboxPointAnnotationDragStart $event) const { ++ dispatchEvent("mapboxPointAnnotationDragStart", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationSelected(OnMapboxPointAnnotationSelected $event) const { ++ dispatchEvent("mapboxPointAnnotationSelected", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++ ++ ++ ++void RNMBXShapeSourceEventEmitter::onMapboxShapeSourcePress(OnMapboxShapeSourcePress $event) const { ++ dispatchEvent("mapboxShapeSourcePress", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++ ++ ++ ++ ++void RNMBXVectorSourceEventEmitter::onMapboxVectorSourcePress(OnMapboxVectorSourcePress $event) const { ++ dispatchEvent("mapboxVectorSourcePress", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++ ++void RNMBXViewportEventEmitter::onStatusChanged(OnStatusChanged $event) const { ++ dispatchEvent("statusChanged", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "type", $event.type); ++$payload.setProperty(runtime, "payload", $event.payload); ++ return $payload; ++ }); ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.h +new file mode 100644 +index 0000000..d554349 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.h +@@ -0,0 +1,312 @@ ++ ++/** ++ * 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 RNMBXAtmosphereEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXBackgroundLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXCalloutEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXCameraEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnUserTrackingModeChangePayloadRenamed { ++ bool followUserLocation; ++ std::string followUserMode; ++ }; ++ ++ struct OnUserTrackingModeChange { ++ std::string type; ++ OnUserTrackingModeChangePayloadRenamed payloadRenamed; ++ }; ++ void onUserTrackingModeChange(OnUserTrackingModeChange value) const; ++}; ++class RNMBXCircleLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXCustomLocationProviderEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXFillExtrusionLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXFillLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXHeatmapLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXImageEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXImagesEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnImageMissingPayload { ++ std::string imageKey; ++ }; ++ ++ struct OnImageMissing { ++ std::string type; ++ OnImageMissingPayload payload; ++ }; ++ void onImageMissing(OnImageMissing value) const; ++}; ++class RNMBXImageSourceEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXLightEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXLineLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXMapViewEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnPress { ++ std::string type; ++ std::string payload; ++ }; ++ ++ struct OnLongPress { ++ std::string type; ++ std::string payload; ++ }; ++ ++ struct OnMapChange { ++ std::string type; ++ std::string payload; ++ }; ++ ++ struct OnCameraChanged { ++ std::string type; ++ std::string payload; ++ }; ++ void onPress(OnPress value) const; ++ ++ void onLongPress(OnLongPress value) const; ++ ++ void onMapChange(OnMapChange value) const; ++ ++ void onCameraChanged(OnCameraChanged value) const; ++}; ++class RNMBXMarkerViewContentEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXMarkerViewEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXModelLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXModelsEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXNativeUserLocationEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXPointAnnotationEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnMapboxPointAnnotationDeselected { ++ std::string type; ++ std::string payload; ++ }; ++ ++ struct OnMapboxPointAnnotationDrag { ++ std::string type; ++ std::string payload; ++ }; ++ ++ struct OnMapboxPointAnnotationDragEnd { ++ std::string type; ++ std::string payload; ++ }; ++ ++ struct OnMapboxPointAnnotationDragStart { ++ std::string type; ++ std::string payload; ++ }; ++ ++ struct OnMapboxPointAnnotationSelected { ++ std::string type; ++ std::string payload; ++ }; ++ void onMapboxPointAnnotationDeselected(OnMapboxPointAnnotationDeselected value) const; ++ ++ void onMapboxPointAnnotationDrag(OnMapboxPointAnnotationDrag value) const; ++ ++ void onMapboxPointAnnotationDragEnd(OnMapboxPointAnnotationDragEnd value) const; ++ ++ void onMapboxPointAnnotationDragStart(OnMapboxPointAnnotationDragStart value) const; ++ ++ void onMapboxPointAnnotationSelected(OnMapboxPointAnnotationSelected value) const; ++}; ++class RNMBXRasterDemSourceEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXRasterLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXRasterSourceEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXShapeSourceEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnMapboxShapeSourcePress { ++ std::string type; ++ std::string payload; ++ }; ++ void onMapboxShapeSourcePress(OnMapboxShapeSourcePress value) const; ++}; ++class RNMBXSkyLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXStyleImportEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXSymbolLayerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXTerrainEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++class RNMBXVectorSourceEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnMapboxVectorSourcePress { ++ std::string type; ++ std::string payload; ++ }; ++ void onMapboxVectorSourcePress(OnMapboxVectorSourcePress value) const; ++}; ++class RNMBXViewportEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnStatusChanged { ++ std::string type; ++ std::string payload; ++ }; ++ void onStatusChanged(OnStatusChanged value) const; ++}; ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.cpp +new file mode 100644 +index 0000000..0da3a23 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.cpp +@@ -0,0 +1,447 @@ ++ ++/** ++ * 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 ++#include ++ ++namespace facebook::react { ++ ++RNMBXAtmosphereProps::RNMBXAtmosphereProps( ++ const PropsParserContext &context, ++ const RNMBXAtmosphereProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXBackgroundLayerProps::RNMBXBackgroundLayerProps( ++ const PropsParserContext &context, ++ const RNMBXBackgroundLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})) ++ {} ++RNMBXCalloutProps::RNMBXCalloutProps( ++ const PropsParserContext &context, ++ const RNMBXCalloutProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps) ++ ++ ++ {} ++RNMBXCameraProps::RNMBXCameraProps( ++ const PropsParserContext &context, ++ const RNMBXCameraProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ maxBounds(convertRawProp(context, rawProps, "maxBounds", sourceProps.maxBounds, {})), ++ animationDuration(convertRawProp(context, rawProps, "animationDuration", sourceProps.animationDuration, {})), ++ animationMode(convertRawProp(context, rawProps, "animationMode", sourceProps.animationMode, {})), ++ defaultStop(convertRawProp(context, rawProps, "defaultStop", sourceProps.defaultStop, {})), ++ userTrackingMode(convertRawProp(context, rawProps, "userTrackingMode", sourceProps.userTrackingMode, {})), ++ followUserLocation(convertRawProp(context, rawProps, "followUserLocation", sourceProps.followUserLocation, {})), ++ followUserMode(convertRawProp(context, rawProps, "followUserMode", sourceProps.followUserMode, {})), ++ followZoomLevel(convertRawProp(context, rawProps, "followZoomLevel", sourceProps.followZoomLevel, {})), ++ followPitch(convertRawProp(context, rawProps, "followPitch", sourceProps.followPitch, {})), ++ followHeading(convertRawProp(context, rawProps, "followHeading", sourceProps.followHeading, {})), ++ followPadding(convertRawProp(context, rawProps, "followPadding", sourceProps.followPadding, {})), ++ zoomLevel(convertRawProp(context, rawProps, "zoomLevel", sourceProps.zoomLevel, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ stop(convertRawProp(context, rawProps, "stop", sourceProps.stop, {})) ++ {} ++RNMBXCircleLayerProps::RNMBXCircleLayerProps( ++ const PropsParserContext &context, ++ const RNMBXCircleLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), ++ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXCustomLocationProviderProps::RNMBXCustomLocationProviderProps( ++ const PropsParserContext &context, ++ const RNMBXCustomLocationProviderProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ coordinate(convertRawProp(context, rawProps, "coordinate", sourceProps.coordinate, {})), ++ heading(convertRawProp(context, rawProps, "heading", sourceProps.heading, {})) ++ {} ++RNMBXFillExtrusionLayerProps::RNMBXFillExtrusionLayerProps( ++ const PropsParserContext &context, ++ const RNMBXFillExtrusionLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})) ++ {} ++RNMBXFillLayerProps::RNMBXFillLayerProps( ++ const PropsParserContext &context, ++ const RNMBXFillLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), ++ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXHeatmapLayerProps::RNMBXHeatmapLayerProps( ++ const PropsParserContext &context, ++ const RNMBXHeatmapLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), ++ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXImageProps::RNMBXImageProps( ++ const PropsParserContext &context, ++ const RNMBXImageProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ stretchX(convertRawProp(context, rawProps, "stretchX", sourceProps.stretchX, {})), ++ stretchY(convertRawProp(context, rawProps, "stretchY", sourceProps.stretchY, {})), ++ content(convertRawProp(context, rawProps, "content", sourceProps.content, {})), ++ sdf(convertRawProp(context, rawProps, "sdf", sourceProps.sdf, {})), ++ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})), ++ scale(convertRawProp(context, rawProps, "scale", sourceProps.scale, {})) ++ {} ++RNMBXImagesProps::RNMBXImagesProps( ++ const PropsParserContext &context, ++ const RNMBXImagesProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ images(convertRawProp(context, rawProps, "images", sourceProps.images, {})), ++ nativeImages(convertRawProp(context, rawProps, "nativeImages", sourceProps.nativeImages, {})), ++ hasOnImageMissing(convertRawProp(context, rawProps, "hasOnImageMissing", sourceProps.hasOnImageMissing, {})) ++ {} ++RNMBXImageSourceProps::RNMBXImageSourceProps( ++ const PropsParserContext &context, ++ const RNMBXImageSourceProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), ++ coordinates(convertRawProp(context, rawProps, "coordinates", sourceProps.coordinates, {})) ++ {} ++RNMBXLightProps::RNMBXLightProps( ++ const PropsParserContext &context, ++ const RNMBXLightProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXLineLayerProps::RNMBXLineLayerProps( ++ const PropsParserContext &context, ++ const RNMBXLineLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), ++ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXMapViewProps::RNMBXMapViewProps( ++ const PropsParserContext &context, ++ const RNMBXMapViewProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ attributionEnabled(convertRawProp(context, rawProps, "attributionEnabled", sourceProps.attributionEnabled, {})), ++ attributionPosition(convertRawProp(context, rawProps, "attributionPosition", sourceProps.attributionPosition, {})), ++ logoEnabled(convertRawProp(context, rawProps, "logoEnabled", sourceProps.logoEnabled, {})), ++ logoPosition(convertRawProp(context, rawProps, "logoPosition", sourceProps.logoPosition, {})), ++ compassEnabled(convertRawProp(context, rawProps, "compassEnabled", sourceProps.compassEnabled, {})), ++ compassFadeWhenNorth(convertRawProp(context, rawProps, "compassFadeWhenNorth", sourceProps.compassFadeWhenNorth, {})), ++ compassPosition(convertRawProp(context, rawProps, "compassPosition", sourceProps.compassPosition, {})), ++ compassViewPosition(convertRawProp(context, rawProps, "compassViewPosition", sourceProps.compassViewPosition, {})), ++ compassViewMargins(convertRawProp(context, rawProps, "compassViewMargins", sourceProps.compassViewMargins, {})), ++ scaleBarEnabled(convertRawProp(context, rawProps, "scaleBarEnabled", sourceProps.scaleBarEnabled, {})), ++ scaleBarPosition(convertRawProp(context, rawProps, "scaleBarPosition", sourceProps.scaleBarPosition, {})), ++ zoomEnabled(convertRawProp(context, rawProps, "zoomEnabled", sourceProps.zoomEnabled, {})), ++ scrollEnabled(convertRawProp(context, rawProps, "scrollEnabled", sourceProps.scrollEnabled, {})), ++ rotateEnabled(convertRawProp(context, rawProps, "rotateEnabled", sourceProps.rotateEnabled, {})), ++ pitchEnabled(convertRawProp(context, rawProps, "pitchEnabled", sourceProps.pitchEnabled, {})), ++ deselectAnnotationOnTap(convertRawProp(context, rawProps, "deselectAnnotationOnTap", sourceProps.deselectAnnotationOnTap, {})), ++ requestDisallowInterceptTouchEvent(convertRawProp(context, rawProps, "requestDisallowInterceptTouchEvent", sourceProps.requestDisallowInterceptTouchEvent, {})), ++ projection(convertRawProp(context, rawProps, "projection", sourceProps.projection, {})), ++ localizeLabels(convertRawProp(context, rawProps, "localizeLabels", sourceProps.localizeLabels, {})), ++ styleURL(convertRawProp(context, rawProps, "styleURL", sourceProps.styleURL, {})), ++ gestureSettings(convertRawProp(context, rawProps, "gestureSettings", sourceProps.gestureSettings, {})), ++ surfaceView(convertRawProp(context, rawProps, "surfaceView", sourceProps.surfaceView, {})), ++ scaleBarViewMargins(convertRawProp(context, rawProps, "scaleBarViewMargins", sourceProps.scaleBarViewMargins, {})), ++ attributionViewMargins(convertRawProp(context, rawProps, "attributionViewMargins", sourceProps.attributionViewMargins, {})), ++ attributionViewPosition(convertRawProp(context, rawProps, "attributionViewPosition", sourceProps.attributionViewPosition, {})), ++ compassImage(convertRawProp(context, rawProps, "compassImage", sourceProps.compassImage, {})), ++ mapViewImpl(convertRawProp(context, rawProps, "mapViewImpl", sourceProps.mapViewImpl, {})) ++ {} ++RNMBXMarkerViewContentProps::RNMBXMarkerViewContentProps( ++ const PropsParserContext &context, ++ const RNMBXMarkerViewContentProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps) ++ ++ ++ {} ++RNMBXMarkerViewProps::RNMBXMarkerViewProps( ++ const PropsParserContext &context, ++ const RNMBXMarkerViewProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ coordinate(convertRawProp(context, rawProps, "coordinate", sourceProps.coordinate, {})), ++ anchor(convertRawProp(context, rawProps, "anchor", sourceProps.anchor, {})), ++ allowOverlap(convertRawProp(context, rawProps, "allowOverlap", sourceProps.allowOverlap, {})), ++ allowOverlapWithPuck(convertRawProp(context, rawProps, "allowOverlapWithPuck", sourceProps.allowOverlapWithPuck, {})), ++ isSelected(convertRawProp(context, rawProps, "isSelected", sourceProps.isSelected, {})) ++ {} ++RNMBXModelLayerProps::RNMBXModelLayerProps( ++ const PropsParserContext &context, ++ const RNMBXModelLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), ++ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXModelsProps::RNMBXModelsProps( ++ const PropsParserContext &context, ++ const RNMBXModelsProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ models(convertRawProp(context, rawProps, "models", sourceProps.models, {})) ++ {} ++RNMBXNativeUserLocationProps::RNMBXNativeUserLocationProps( ++ const PropsParserContext &context, ++ const RNMBXNativeUserLocationProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ androidRenderMode(convertRawProp(context, rawProps, "androidRenderMode", sourceProps.androidRenderMode, {})), ++ puckBearing(convertRawProp(context, rawProps, "puckBearing", sourceProps.puckBearing, {})), ++ puckBearingEnabled(convertRawProp(context, rawProps, "puckBearingEnabled", sourceProps.puckBearingEnabled, {})), ++ bearingImage(convertRawProp(context, rawProps, "bearingImage", sourceProps.bearingImage, {})), ++ shadowImage(convertRawProp(context, rawProps, "shadowImage", sourceProps.shadowImage, {})), ++ topImage(convertRawProp(context, rawProps, "topImage", sourceProps.topImage, {})), ++ scale(convertRawProp(context, rawProps, "scale", sourceProps.scale, {})), ++ visible(convertRawProp(context, rawProps, "visible", sourceProps.visible, {false})), ++ pulsing(convertRawProp(context, rawProps, "pulsing", sourceProps.pulsing, {})) ++ {} ++RNMBXPointAnnotationProps::RNMBXPointAnnotationProps( ++ const PropsParserContext &context, ++ const RNMBXPointAnnotationProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ coordinate(convertRawProp(context, rawProps, "coordinate", sourceProps.coordinate, {})), ++ draggable(convertRawProp(context, rawProps, "draggable", sourceProps.draggable, {})), ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ anchor(convertRawProp(context, rawProps, "anchor", sourceProps.anchor, {})) ++ {} ++RNMBXRasterDemSourceProps::RNMBXRasterDemSourceProps( ++ const PropsParserContext &context, ++ const RNMBXRasterDemSourceProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), ++ tileUrlTemplates(convertRawProp(context, rawProps, "tileUrlTemplates", sourceProps.tileUrlTemplates, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ tileSize(convertRawProp(context, rawProps, "tileSize", sourceProps.tileSize, {})) ++ {} ++RNMBXRasterLayerProps::RNMBXRasterLayerProps( ++ const PropsParserContext &context, ++ const RNMBXRasterLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), ++ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXRasterSourceProps::RNMBXRasterSourceProps( ++ const PropsParserContext &context, ++ const RNMBXRasterSourceProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), ++ tileUrlTemplates(convertRawProp(context, rawProps, "tileUrlTemplates", sourceProps.tileUrlTemplates, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ tileSize(convertRawProp(context, rawProps, "tileSize", sourceProps.tileSize, {})), ++ tms(convertRawProp(context, rawProps, "tms", sourceProps.tms, {})), ++ attribution(convertRawProp(context, rawProps, "attribution", sourceProps.attribution, {})) ++ {} ++RNMBXShapeSourceProps::RNMBXShapeSourceProps( ++ const PropsParserContext &context, ++ const RNMBXShapeSourceProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), ++ shape(convertRawProp(context, rawProps, "shape", sourceProps.shape, {})), ++ cluster(convertRawProp(context, rawProps, "cluster", sourceProps.cluster, {})), ++ clusterRadius(convertRawProp(context, rawProps, "clusterRadius", sourceProps.clusterRadius, {})), ++ clusterMaxZoomLevel(convertRawProp(context, rawProps, "clusterMaxZoomLevel", sourceProps.clusterMaxZoomLevel, {})), ++ clusterProperties(convertRawProp(context, rawProps, "clusterProperties", sourceProps.clusterProperties, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ buffer(convertRawProp(context, rawProps, "buffer", sourceProps.buffer, {})), ++ tolerance(convertRawProp(context, rawProps, "tolerance", sourceProps.tolerance, {})), ++ lineMetrics(convertRawProp(context, rawProps, "lineMetrics", sourceProps.lineMetrics, {})), ++ hasPressListener(convertRawProp(context, rawProps, "hasPressListener", sourceProps.hasPressListener, {})), ++ hitbox(convertRawProp(context, rawProps, "hitbox", sourceProps.hitbox, {})) ++ {} ++RNMBXSkyLayerProps::RNMBXSkyLayerProps( ++ const PropsParserContext &context, ++ const RNMBXSkyLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})) ++ {} ++RNMBXStyleImportProps::RNMBXStyleImportProps( ++ const PropsParserContext &context, ++ const RNMBXStyleImportProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {false})), ++ config(convertRawProp(context, rawProps, "config", sourceProps.config, {})) ++ {} ++RNMBXSymbolLayerProps::RNMBXSymbolLayerProps( ++ const PropsParserContext &context, ++ const RNMBXSymbolLayerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), ++ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), ++ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), ++ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), ++ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXTerrainProps::RNMBXTerrainProps( ++ const PropsParserContext &context, ++ const RNMBXTerrainProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), ++ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) ++ {} ++RNMBXVectorSourceProps::RNMBXVectorSourceProps( ++ const PropsParserContext &context, ++ const RNMBXVectorSourceProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), ++ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), ++ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), ++ tileUrlTemplates(convertRawProp(context, rawProps, "tileUrlTemplates", sourceProps.tileUrlTemplates, {})), ++ attribution(convertRawProp(context, rawProps, "attribution", sourceProps.attribution, {})), ++ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), ++ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), ++ tms(convertRawProp(context, rawProps, "tms", sourceProps.tms, {})), ++ hasPressListener(convertRawProp(context, rawProps, "hasPressListener", sourceProps.hasPressListener, {})), ++ hitbox(convertRawProp(context, rawProps, "hitbox", sourceProps.hitbox, {})) ++ {} ++RNMBXViewportProps::RNMBXViewportProps( ++ const PropsParserContext &context, ++ const RNMBXViewportProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ transitionsToIdleUponUserInteraction(convertRawProp(context, rawProps, "transitionsToIdleUponUserInteraction", sourceProps.transitionsToIdleUponUserInteraction, {})), ++ hasStatusChanged(convertRawProp(context, rawProps, "hasStatusChanged", sourceProps.hasStatusChanged, {false})) ++ {} ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.h +new file mode 100644 +index 0000000..2ff30bd +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.h +@@ -0,0 +1,538 @@ ++ ++/** ++ * 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 ++ ++namespace facebook::react { ++ ++class RNMBXAtmosphereProps final : public ViewProps { ++ public: ++ RNMBXAtmosphereProps() = default; ++ RNMBXAtmosphereProps(const PropsParserContext& context, const RNMBXAtmosphereProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXBackgroundLayerProps final : public ViewProps { ++ public: ++ RNMBXBackgroundLayerProps() = default; ++ RNMBXBackgroundLayerProps(const PropsParserContext& context, const RNMBXBackgroundLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic id{}; ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic reactStyle{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++}; ++ ++class RNMBXCalloutProps final : public ViewProps { ++ public: ++ RNMBXCalloutProps() = default; ++ RNMBXCalloutProps(const PropsParserContext& context, const RNMBXCalloutProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ ++}; ++ ++class RNMBXCameraProps final : public ViewProps { ++ public: ++ RNMBXCameraProps() = default; ++ RNMBXCameraProps(const PropsParserContext& context, const RNMBXCameraProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic maxBounds{}; ++ folly::dynamic animationDuration{}; ++ folly::dynamic animationMode{}; ++ folly::dynamic defaultStop{}; ++ folly::dynamic userTrackingMode{}; ++ folly::dynamic followUserLocation{}; ++ folly::dynamic followUserMode{}; ++ folly::dynamic followZoomLevel{}; ++ folly::dynamic followPitch{}; ++ folly::dynamic followHeading{}; ++ folly::dynamic followPadding{}; ++ folly::dynamic zoomLevel{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic stop{}; ++}; ++ ++class RNMBXCircleLayerProps final : public ViewProps { ++ public: ++ RNMBXCircleLayerProps() = default; ++ RNMBXCircleLayerProps(const PropsParserContext& context, const RNMBXCircleLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic sourceLayerID{}; ++ folly::dynamic slot{}; ++ folly::dynamic id{}; ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXCustomLocationProviderProps final : public ViewProps { ++ public: ++ RNMBXCustomLocationProviderProps() = default; ++ RNMBXCustomLocationProviderProps(const PropsParserContext& context, const RNMBXCustomLocationProviderProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic coordinate{}; ++ folly::dynamic heading{}; ++}; ++ ++class RNMBXFillExtrusionLayerProps final : public ViewProps { ++ public: ++ RNMBXFillExtrusionLayerProps() = default; ++ RNMBXFillExtrusionLayerProps(const PropsParserContext& context, const RNMBXFillExtrusionLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic id{}; ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic reactStyle{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic sourceLayerID{}; ++}; ++ ++class RNMBXFillLayerProps final : public ViewProps { ++ public: ++ RNMBXFillLayerProps() = default; ++ RNMBXFillLayerProps(const PropsParserContext& context, const RNMBXFillLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic sourceLayerID{}; ++ folly::dynamic slot{}; ++ folly::dynamic id{}; ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXHeatmapLayerProps final : public ViewProps { ++ public: ++ RNMBXHeatmapLayerProps() = default; ++ RNMBXHeatmapLayerProps(const PropsParserContext& context, const RNMBXHeatmapLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic sourceLayerID{}; ++ folly::dynamic slot{}; ++ folly::dynamic id{}; ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXImageProps final : public ViewProps { ++ public: ++ RNMBXImageProps() = default; ++ RNMBXImageProps(const PropsParserContext& context, const RNMBXImageProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic stretchX{}; ++ folly::dynamic stretchY{}; ++ folly::dynamic content{}; ++ folly::dynamic sdf{}; ++ folly::dynamic name{}; ++ folly::dynamic scale{}; ++}; ++ ++class RNMBXImagesProps final : public ViewProps { ++ public: ++ RNMBXImagesProps() = default; ++ RNMBXImagesProps(const PropsParserContext& context, const RNMBXImagesProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic images{}; ++ folly::dynamic nativeImages{}; ++ folly::dynamic hasOnImageMissing{}; ++}; ++ ++class RNMBXImageSourceProps final : public ViewProps { ++ public: ++ RNMBXImageSourceProps() = default; ++ RNMBXImageSourceProps(const PropsParserContext& context, const RNMBXImageSourceProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic id{}; ++ folly::dynamic existing{}; ++ folly::dynamic url{}; ++ folly::dynamic coordinates{}; ++}; ++ ++class RNMBXLightProps final : public ViewProps { ++ public: ++ RNMBXLightProps() = default; ++ RNMBXLightProps(const PropsParserContext& context, const RNMBXLightProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXLineLayerProps final : public ViewProps { ++ public: ++ RNMBXLineLayerProps() = default; ++ RNMBXLineLayerProps(const PropsParserContext& context, const RNMBXLineLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic sourceLayerID{}; ++ folly::dynamic slot{}; ++ folly::dynamic id{}; ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXMapViewProps final : public ViewProps { ++ public: ++ RNMBXMapViewProps() = default; ++ RNMBXMapViewProps(const PropsParserContext& context, const RNMBXMapViewProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic attributionEnabled{}; ++ folly::dynamic attributionPosition{}; ++ folly::dynamic logoEnabled{}; ++ folly::dynamic logoPosition{}; ++ folly::dynamic compassEnabled{}; ++ folly::dynamic compassFadeWhenNorth{}; ++ folly::dynamic compassPosition{}; ++ folly::dynamic compassViewPosition{}; ++ folly::dynamic compassViewMargins{}; ++ folly::dynamic scaleBarEnabled{}; ++ folly::dynamic scaleBarPosition{}; ++ folly::dynamic zoomEnabled{}; ++ folly::dynamic scrollEnabled{}; ++ folly::dynamic rotateEnabled{}; ++ folly::dynamic pitchEnabled{}; ++ folly::dynamic deselectAnnotationOnTap{}; ++ folly::dynamic requestDisallowInterceptTouchEvent{}; ++ folly::dynamic projection{}; ++ folly::dynamic localizeLabels{}; ++ folly::dynamic styleURL{}; ++ folly::dynamic gestureSettings{}; ++ folly::dynamic surfaceView{}; ++ folly::dynamic scaleBarViewMargins{}; ++ folly::dynamic attributionViewMargins{}; ++ folly::dynamic attributionViewPosition{}; ++ folly::dynamic compassImage{}; ++ folly::dynamic mapViewImpl{}; ++}; ++ ++class RNMBXMarkerViewContentProps final : public ViewProps { ++ public: ++ RNMBXMarkerViewContentProps() = default; ++ RNMBXMarkerViewContentProps(const PropsParserContext& context, const RNMBXMarkerViewContentProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ ++}; ++ ++class RNMBXMarkerViewProps final : public ViewProps { ++ public: ++ RNMBXMarkerViewProps() = default; ++ RNMBXMarkerViewProps(const PropsParserContext& context, const RNMBXMarkerViewProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic coordinate{}; ++ folly::dynamic anchor{}; ++ folly::dynamic allowOverlap{}; ++ folly::dynamic allowOverlapWithPuck{}; ++ folly::dynamic isSelected{}; ++}; ++ ++class RNMBXModelLayerProps final : public ViewProps { ++ public: ++ RNMBXModelLayerProps() = default; ++ RNMBXModelLayerProps(const PropsParserContext& context, const RNMBXModelLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic sourceLayerID{}; ++ folly::dynamic slot{}; ++ folly::dynamic id{}; ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXModelsProps final : public ViewProps { ++ public: ++ RNMBXModelsProps() = default; ++ RNMBXModelsProps(const PropsParserContext& context, const RNMBXModelsProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic models{}; ++}; ++ ++class RNMBXNativeUserLocationProps final : public ViewProps { ++ public: ++ RNMBXNativeUserLocationProps() = default; ++ RNMBXNativeUserLocationProps(const PropsParserContext& context, const RNMBXNativeUserLocationProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic androidRenderMode{}; ++ folly::dynamic puckBearing{}; ++ folly::dynamic puckBearingEnabled{}; ++ folly::dynamic bearingImage{}; ++ folly::dynamic shadowImage{}; ++ folly::dynamic topImage{}; ++ folly::dynamic scale{}; ++ bool visible{false}; ++ folly::dynamic pulsing{}; ++}; ++ ++class RNMBXPointAnnotationProps final : public ViewProps { ++ public: ++ RNMBXPointAnnotationProps() = default; ++ RNMBXPointAnnotationProps(const PropsParserContext& context, const RNMBXPointAnnotationProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic coordinate{}; ++ folly::dynamic draggable{}; ++ folly::dynamic id{}; ++ folly::dynamic anchor{}; ++}; ++ ++class RNMBXRasterDemSourceProps final : public ViewProps { ++ public: ++ RNMBXRasterDemSourceProps() = default; ++ RNMBXRasterDemSourceProps(const PropsParserContext& context, const RNMBXRasterDemSourceProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic id{}; ++ folly::dynamic existing{}; ++ folly::dynamic url{}; ++ folly::dynamic tileUrlTemplates{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic tileSize{}; ++}; ++ ++class RNMBXRasterLayerProps final : public ViewProps { ++ public: ++ RNMBXRasterLayerProps() = default; ++ RNMBXRasterLayerProps(const PropsParserContext& context, const RNMBXRasterLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic sourceLayerID{}; ++ folly::dynamic slot{}; ++ folly::dynamic id{}; ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXRasterSourceProps final : public ViewProps { ++ public: ++ RNMBXRasterSourceProps() = default; ++ RNMBXRasterSourceProps(const PropsParserContext& context, const RNMBXRasterSourceProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic id{}; ++ folly::dynamic existing{}; ++ folly::dynamic url{}; ++ folly::dynamic tileUrlTemplates{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic tileSize{}; ++ folly::dynamic tms{}; ++ folly::dynamic attribution{}; ++}; ++ ++class RNMBXShapeSourceProps final : public ViewProps { ++ public: ++ RNMBXShapeSourceProps() = default; ++ RNMBXShapeSourceProps(const PropsParserContext& context, const RNMBXShapeSourceProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic id{}; ++ folly::dynamic existing{}; ++ folly::dynamic url{}; ++ folly::dynamic shape{}; ++ folly::dynamic cluster{}; ++ folly::dynamic clusterRadius{}; ++ folly::dynamic clusterMaxZoomLevel{}; ++ folly::dynamic clusterProperties{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic buffer{}; ++ folly::dynamic tolerance{}; ++ folly::dynamic lineMetrics{}; ++ folly::dynamic hasPressListener{}; ++ folly::dynamic hitbox{}; ++}; ++ ++class RNMBXSkyLayerProps final : public ViewProps { ++ public: ++ RNMBXSkyLayerProps() = default; ++ RNMBXSkyLayerProps(const PropsParserContext& context, const RNMBXSkyLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic id{}; ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic reactStyle{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++}; ++ ++class RNMBXStyleImportProps final : public ViewProps { ++ public: ++ RNMBXStyleImportProps() = default; ++ RNMBXStyleImportProps(const PropsParserContext& context, const RNMBXStyleImportProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ std::string id{}; ++ bool existing{false}; ++ folly::dynamic config{}; ++}; ++ ++class RNMBXSymbolLayerProps final : public ViewProps { ++ public: ++ RNMBXSymbolLayerProps() = default; ++ RNMBXSymbolLayerProps(const PropsParserContext& context, const RNMBXSymbolLayerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic sourceID{}; ++ folly::dynamic existing{}; ++ folly::dynamic filter{}; ++ folly::dynamic aboveLayerID{}; ++ folly::dynamic belowLayerID{}; ++ folly::dynamic layerIndex{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic sourceLayerID{}; ++ folly::dynamic slot{}; ++ folly::dynamic id{}; ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXTerrainProps final : public ViewProps { ++ public: ++ RNMBXTerrainProps() = default; ++ RNMBXTerrainProps(const PropsParserContext& context, const RNMBXTerrainProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic sourceID{}; ++ folly::dynamic reactStyle{}; ++}; ++ ++class RNMBXVectorSourceProps final : public ViewProps { ++ public: ++ RNMBXVectorSourceProps() = default; ++ RNMBXVectorSourceProps(const PropsParserContext& context, const RNMBXVectorSourceProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic id{}; ++ folly::dynamic existing{}; ++ folly::dynamic url{}; ++ folly::dynamic tileUrlTemplates{}; ++ folly::dynamic attribution{}; ++ folly::dynamic maxZoomLevel{}; ++ folly::dynamic minZoomLevel{}; ++ folly::dynamic tms{}; ++ folly::dynamic hasPressListener{}; ++ folly::dynamic hitbox{}; ++}; ++ ++class RNMBXViewportProps final : public ViewProps { ++ public: ++ RNMBXViewportProps() = default; ++ RNMBXViewportProps(const PropsParserContext& context, const RNMBXViewportProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ folly::dynamic transitionsToIdleUponUserInteraction{}; ++ bool hasStatusChanged{false}; ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.cpp +new file mode 100644 +index 0000000..a56a73c +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.cpp +@@ -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: GenerateShadowNodeCpp.js ++ */ ++ ++#include ++ ++namespace facebook::react { ++ ++extern const char RNMBXAtmosphereComponentName[] = "RNMBXAtmosphere"; ++extern const char RNMBXBackgroundLayerComponentName[] = "RNMBXBackgroundLayer"; ++extern const char RNMBXCalloutComponentName[] = "RNMBXCallout"; ++extern const char RNMBXCameraComponentName[] = "RNMBXCamera"; ++extern const char RNMBXCircleLayerComponentName[] = "RNMBXCircleLayer"; ++extern const char RNMBXCustomLocationProviderComponentName[] = "RNMBXCustomLocationProvider"; ++extern const char RNMBXFillExtrusionLayerComponentName[] = "RNMBXFillExtrusionLayer"; ++extern const char RNMBXFillLayerComponentName[] = "RNMBXFillLayer"; ++extern const char RNMBXHeatmapLayerComponentName[] = "RNMBXHeatmapLayer"; ++extern const char RNMBXImageComponentName[] = "RNMBXImage"; ++extern const char RNMBXImagesComponentName[] = "RNMBXImages"; ++extern const char RNMBXImageSourceComponentName[] = "RNMBXImageSource"; ++extern const char RNMBXLightComponentName[] = "RNMBXLight"; ++extern const char RNMBXLineLayerComponentName[] = "RNMBXLineLayer"; ++extern const char RNMBXMapViewComponentName[] = "RNMBXMapView"; ++extern const char RNMBXMarkerViewContentComponentName[] = "RNMBXMarkerViewContent"; ++extern const char RNMBXMarkerViewComponentName[] = "RNMBXMarkerView"; ++extern const char RNMBXModelLayerComponentName[] = "RNMBXModelLayer"; ++extern const char RNMBXModelsComponentName[] = "RNMBXModels"; ++extern const char RNMBXNativeUserLocationComponentName[] = "RNMBXNativeUserLocation"; ++extern const char RNMBXPointAnnotationComponentName[] = "RNMBXPointAnnotation"; ++extern const char RNMBXRasterDemSourceComponentName[] = "RNMBXRasterDemSource"; ++extern const char RNMBXRasterLayerComponentName[] = "RNMBXRasterLayer"; ++extern const char RNMBXRasterSourceComponentName[] = "RNMBXRasterSource"; ++extern const char RNMBXShapeSourceComponentName[] = "RNMBXShapeSource"; ++extern const char RNMBXSkyLayerComponentName[] = "RNMBXSkyLayer"; ++extern const char RNMBXStyleImportComponentName[] = "RNMBXStyleImport"; ++extern const char RNMBXSymbolLayerComponentName[] = "RNMBXSymbolLayer"; ++extern const char RNMBXTerrainComponentName[] = "RNMBXTerrain"; ++extern const char RNMBXVectorSourceComponentName[] = "RNMBXVectorSource"; ++extern const char RNMBXViewportComponentName[] = "RNMBXViewport"; ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.h +new file mode 100644 +index 0000000..573806c +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.h +@@ -0,0 +1,362 @@ ++ ++/** ++ * 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 RNMBXAtmosphereComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXAtmosphereShadowNode = ConcreteViewShadowNode< ++ RNMBXAtmosphereComponentName, ++ RNMBXAtmosphereProps, ++ RNMBXAtmosphereEventEmitter, ++ RNMBXAtmosphereState>; ++ ++JSI_EXPORT extern const char RNMBXBackgroundLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXBackgroundLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXBackgroundLayerComponentName, ++ RNMBXBackgroundLayerProps, ++ RNMBXBackgroundLayerEventEmitter, ++ RNMBXBackgroundLayerState>; ++ ++JSI_EXPORT extern const char RNMBXCalloutComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXCalloutShadowNode = ConcreteViewShadowNode< ++ RNMBXCalloutComponentName, ++ RNMBXCalloutProps, ++ RNMBXCalloutEventEmitter, ++ RNMBXCalloutState>; ++ ++JSI_EXPORT extern const char RNMBXCameraComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXCameraShadowNode = ConcreteViewShadowNode< ++ RNMBXCameraComponentName, ++ RNMBXCameraProps, ++ RNMBXCameraEventEmitter, ++ RNMBXCameraState>; ++ ++JSI_EXPORT extern const char RNMBXCircleLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXCircleLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXCircleLayerComponentName, ++ RNMBXCircleLayerProps, ++ RNMBXCircleLayerEventEmitter, ++ RNMBXCircleLayerState>; ++ ++JSI_EXPORT extern const char RNMBXCustomLocationProviderComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXCustomLocationProviderShadowNode = ConcreteViewShadowNode< ++ RNMBXCustomLocationProviderComponentName, ++ RNMBXCustomLocationProviderProps, ++ RNMBXCustomLocationProviderEventEmitter, ++ RNMBXCustomLocationProviderState>; ++ ++JSI_EXPORT extern const char RNMBXFillExtrusionLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXFillExtrusionLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXFillExtrusionLayerComponentName, ++ RNMBXFillExtrusionLayerProps, ++ RNMBXFillExtrusionLayerEventEmitter, ++ RNMBXFillExtrusionLayerState>; ++ ++JSI_EXPORT extern const char RNMBXFillLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXFillLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXFillLayerComponentName, ++ RNMBXFillLayerProps, ++ RNMBXFillLayerEventEmitter, ++ RNMBXFillLayerState>; ++ ++JSI_EXPORT extern const char RNMBXHeatmapLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXHeatmapLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXHeatmapLayerComponentName, ++ RNMBXHeatmapLayerProps, ++ RNMBXHeatmapLayerEventEmitter, ++ RNMBXHeatmapLayerState>; ++ ++JSI_EXPORT extern const char RNMBXImageComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXImageShadowNode = ConcreteViewShadowNode< ++ RNMBXImageComponentName, ++ RNMBXImageProps, ++ RNMBXImageEventEmitter, ++ RNMBXImageState>; ++ ++JSI_EXPORT extern const char RNMBXImagesComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXImagesShadowNode = ConcreteViewShadowNode< ++ RNMBXImagesComponentName, ++ RNMBXImagesProps, ++ RNMBXImagesEventEmitter, ++ RNMBXImagesState>; ++ ++JSI_EXPORT extern const char RNMBXImageSourceComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXImageSourceShadowNode = ConcreteViewShadowNode< ++ RNMBXImageSourceComponentName, ++ RNMBXImageSourceProps, ++ RNMBXImageSourceEventEmitter, ++ RNMBXImageSourceState>; ++ ++JSI_EXPORT extern const char RNMBXLightComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXLightShadowNode = ConcreteViewShadowNode< ++ RNMBXLightComponentName, ++ RNMBXLightProps, ++ RNMBXLightEventEmitter, ++ RNMBXLightState>; ++ ++JSI_EXPORT extern const char RNMBXLineLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXLineLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXLineLayerComponentName, ++ RNMBXLineLayerProps, ++ RNMBXLineLayerEventEmitter, ++ RNMBXLineLayerState>; ++ ++JSI_EXPORT extern const char RNMBXMapViewComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXMapViewShadowNode = ConcreteViewShadowNode< ++ RNMBXMapViewComponentName, ++ RNMBXMapViewProps, ++ RNMBXMapViewEventEmitter, ++ RNMBXMapViewState>; ++ ++JSI_EXPORT extern const char RNMBXMarkerViewContentComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXMarkerViewContentShadowNode = ConcreteViewShadowNode< ++ RNMBXMarkerViewContentComponentName, ++ RNMBXMarkerViewContentProps, ++ RNMBXMarkerViewContentEventEmitter, ++ RNMBXMarkerViewContentState>; ++ ++JSI_EXPORT extern const char RNMBXMarkerViewComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXMarkerViewShadowNode = ConcreteViewShadowNode< ++ RNMBXMarkerViewComponentName, ++ RNMBXMarkerViewProps, ++ RNMBXMarkerViewEventEmitter, ++ RNMBXMarkerViewState>; ++ ++JSI_EXPORT extern const char RNMBXModelLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXModelLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXModelLayerComponentName, ++ RNMBXModelLayerProps, ++ RNMBXModelLayerEventEmitter, ++ RNMBXModelLayerState>; ++ ++JSI_EXPORT extern const char RNMBXModelsComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXModelsShadowNode = ConcreteViewShadowNode< ++ RNMBXModelsComponentName, ++ RNMBXModelsProps, ++ RNMBXModelsEventEmitter, ++ RNMBXModelsState>; ++ ++JSI_EXPORT extern const char RNMBXNativeUserLocationComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXNativeUserLocationShadowNode = ConcreteViewShadowNode< ++ RNMBXNativeUserLocationComponentName, ++ RNMBXNativeUserLocationProps, ++ RNMBXNativeUserLocationEventEmitter, ++ RNMBXNativeUserLocationState>; ++ ++JSI_EXPORT extern const char RNMBXPointAnnotationComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXPointAnnotationShadowNode = ConcreteViewShadowNode< ++ RNMBXPointAnnotationComponentName, ++ RNMBXPointAnnotationProps, ++ RNMBXPointAnnotationEventEmitter, ++ RNMBXPointAnnotationState>; ++ ++JSI_EXPORT extern const char RNMBXRasterDemSourceComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXRasterDemSourceShadowNode = ConcreteViewShadowNode< ++ RNMBXRasterDemSourceComponentName, ++ RNMBXRasterDemSourceProps, ++ RNMBXRasterDemSourceEventEmitter, ++ RNMBXRasterDemSourceState>; ++ ++JSI_EXPORT extern const char RNMBXRasterLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXRasterLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXRasterLayerComponentName, ++ RNMBXRasterLayerProps, ++ RNMBXRasterLayerEventEmitter, ++ RNMBXRasterLayerState>; ++ ++JSI_EXPORT extern const char RNMBXRasterSourceComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXRasterSourceShadowNode = ConcreteViewShadowNode< ++ RNMBXRasterSourceComponentName, ++ RNMBXRasterSourceProps, ++ RNMBXRasterSourceEventEmitter, ++ RNMBXRasterSourceState>; ++ ++JSI_EXPORT extern const char RNMBXShapeSourceComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXShapeSourceShadowNode = ConcreteViewShadowNode< ++ RNMBXShapeSourceComponentName, ++ RNMBXShapeSourceProps, ++ RNMBXShapeSourceEventEmitter, ++ RNMBXShapeSourceState>; ++ ++JSI_EXPORT extern const char RNMBXSkyLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXSkyLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXSkyLayerComponentName, ++ RNMBXSkyLayerProps, ++ RNMBXSkyLayerEventEmitter, ++ RNMBXSkyLayerState>; ++ ++JSI_EXPORT extern const char RNMBXStyleImportComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXStyleImportShadowNode = ConcreteViewShadowNode< ++ RNMBXStyleImportComponentName, ++ RNMBXStyleImportProps, ++ RNMBXStyleImportEventEmitter, ++ RNMBXStyleImportState>; ++ ++JSI_EXPORT extern const char RNMBXSymbolLayerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXSymbolLayerShadowNode = ConcreteViewShadowNode< ++ RNMBXSymbolLayerComponentName, ++ RNMBXSymbolLayerProps, ++ RNMBXSymbolLayerEventEmitter, ++ RNMBXSymbolLayerState>; ++ ++JSI_EXPORT extern const char RNMBXTerrainComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXTerrainShadowNode = ConcreteViewShadowNode< ++ RNMBXTerrainComponentName, ++ RNMBXTerrainProps, ++ RNMBXTerrainEventEmitter, ++ RNMBXTerrainState>; ++ ++JSI_EXPORT extern const char RNMBXVectorSourceComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXVectorSourceShadowNode = ConcreteViewShadowNode< ++ RNMBXVectorSourceComponentName, ++ RNMBXVectorSourceProps, ++ RNMBXVectorSourceEventEmitter, ++ RNMBXVectorSourceState>; ++ ++JSI_EXPORT extern const char RNMBXViewportComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNMBXViewportShadowNode = ConcreteViewShadowNode< ++ RNMBXViewportComponentName, ++ RNMBXViewportProps, ++ RNMBXViewportEventEmitter, ++ RNMBXViewportState>; ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.cpp +new file mode 100644 +index 0000000..914333f +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/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/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.h +new file mode 100644 +index 0000000..a2675dc +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.h +@@ -0,0 +1,389 @@ ++/** ++ * 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 RNMBXAtmosphereState { ++public: ++ RNMBXAtmosphereState() = default; ++ ++#ifdef ANDROID ++ RNMBXAtmosphereState(RNMBXAtmosphereState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXBackgroundLayerState { ++public: ++ RNMBXBackgroundLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXBackgroundLayerState(RNMBXBackgroundLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXCalloutState { ++public: ++ RNMBXCalloutState() = default; ++ ++#ifdef ANDROID ++ RNMBXCalloutState(RNMBXCalloutState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXCameraState { ++public: ++ RNMBXCameraState() = default; ++ ++#ifdef ANDROID ++ RNMBXCameraState(RNMBXCameraState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXCircleLayerState { ++public: ++ RNMBXCircleLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXCircleLayerState(RNMBXCircleLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXCustomLocationProviderState { ++public: ++ RNMBXCustomLocationProviderState() = default; ++ ++#ifdef ANDROID ++ RNMBXCustomLocationProviderState(RNMBXCustomLocationProviderState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXFillExtrusionLayerState { ++public: ++ RNMBXFillExtrusionLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXFillExtrusionLayerState(RNMBXFillExtrusionLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXFillLayerState { ++public: ++ RNMBXFillLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXFillLayerState(RNMBXFillLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXHeatmapLayerState { ++public: ++ RNMBXHeatmapLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXHeatmapLayerState(RNMBXHeatmapLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXImageState { ++public: ++ RNMBXImageState() = default; ++ ++#ifdef ANDROID ++ RNMBXImageState(RNMBXImageState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXImagesState { ++public: ++ RNMBXImagesState() = default; ++ ++#ifdef ANDROID ++ RNMBXImagesState(RNMBXImagesState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXImageSourceState { ++public: ++ RNMBXImageSourceState() = default; ++ ++#ifdef ANDROID ++ RNMBXImageSourceState(RNMBXImageSourceState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXLightState { ++public: ++ RNMBXLightState() = default; ++ ++#ifdef ANDROID ++ RNMBXLightState(RNMBXLightState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXLineLayerState { ++public: ++ RNMBXLineLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXLineLayerState(RNMBXLineLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXMapViewState { ++public: ++ RNMBXMapViewState() = default; ++ ++#ifdef ANDROID ++ RNMBXMapViewState(RNMBXMapViewState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXMarkerViewContentState { ++public: ++ RNMBXMarkerViewContentState() = default; ++ ++#ifdef ANDROID ++ RNMBXMarkerViewContentState(RNMBXMarkerViewContentState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXMarkerViewState { ++public: ++ RNMBXMarkerViewState() = default; ++ ++#ifdef ANDROID ++ RNMBXMarkerViewState(RNMBXMarkerViewState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXModelLayerState { ++public: ++ RNMBXModelLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXModelLayerState(RNMBXModelLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXModelsState { ++public: ++ RNMBXModelsState() = default; ++ ++#ifdef ANDROID ++ RNMBXModelsState(RNMBXModelsState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXNativeUserLocationState { ++public: ++ RNMBXNativeUserLocationState() = default; ++ ++#ifdef ANDROID ++ RNMBXNativeUserLocationState(RNMBXNativeUserLocationState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXPointAnnotationState { ++public: ++ RNMBXPointAnnotationState() = default; ++ ++#ifdef ANDROID ++ RNMBXPointAnnotationState(RNMBXPointAnnotationState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXRasterDemSourceState { ++public: ++ RNMBXRasterDemSourceState() = default; ++ ++#ifdef ANDROID ++ RNMBXRasterDemSourceState(RNMBXRasterDemSourceState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXRasterLayerState { ++public: ++ RNMBXRasterLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXRasterLayerState(RNMBXRasterLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXRasterSourceState { ++public: ++ RNMBXRasterSourceState() = default; ++ ++#ifdef ANDROID ++ RNMBXRasterSourceState(RNMBXRasterSourceState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXShapeSourceState { ++public: ++ RNMBXShapeSourceState() = default; ++ ++#ifdef ANDROID ++ RNMBXShapeSourceState(RNMBXShapeSourceState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXSkyLayerState { ++public: ++ RNMBXSkyLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXSkyLayerState(RNMBXSkyLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXStyleImportState { ++public: ++ RNMBXStyleImportState() = default; ++ ++#ifdef ANDROID ++ RNMBXStyleImportState(RNMBXStyleImportState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXSymbolLayerState { ++public: ++ RNMBXSymbolLayerState() = default; ++ ++#ifdef ANDROID ++ RNMBXSymbolLayerState(RNMBXSymbolLayerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXTerrainState { ++public: ++ RNMBXTerrainState() = default; ++ ++#ifdef ANDROID ++ RNMBXTerrainState(RNMBXTerrainState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXVectorSourceState { ++public: ++ RNMBXVectorSourceState() = default; ++ ++#ifdef ANDROID ++ RNMBXVectorSourceState(RNMBXVectorSourceState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class RNMBXViewportState { ++public: ++ RNMBXViewportState() = default; ++ ++#ifdef ANDROID ++ RNMBXViewportState(RNMBXViewportState 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/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI-generated.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI-generated.cpp +new file mode 100644 +index 0000000..d4f576d +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI-generated.cpp +@@ -0,0 +1,303 @@ ++/** ++ * 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 "rnmapbox_maps_specsJSI.h" ++ ++namespace facebook::react { ++ ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_takeSnap(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->takeSnap( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asBool() ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_queryTerrainElevation(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->queryTerrainElevation( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_setSourceVisibility(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->setSourceVisibility( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asBool(), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asString(rt), ++ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asString(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getCenter(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getCenter( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getCoordinateFromView(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getCoordinateFromView( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getPointInView(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getPointInView( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getZoom(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getZoom( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getVisibleBounds(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getVisibleBounds( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_queryRenderedFeaturesAtPoint(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->queryRenderedFeaturesAtPoint( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt).asArray(rt), ++ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asObject(rt).asArray(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_queryRenderedFeaturesInRect(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->queryRenderedFeaturesInRect( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt).asArray(rt), ++ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asObject(rt).asArray(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_setHandledMapChangedEvents(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->setHandledMapChangedEvents( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_clearData(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->clearData( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) ++ ); ++} ++static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_querySourceFeatures(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->querySourceFeatures( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asString(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt).asArray(rt), ++ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asObject(rt).asArray(rt) ++ ); ++} ++ ++NativeMapViewModuleCxxSpecJSI::NativeMapViewModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXMapViewModule", jsInvoker) { ++ methodMap_["takeSnap"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_takeSnap}; ++ methodMap_["queryTerrainElevation"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_queryTerrainElevation}; ++ methodMap_["setSourceVisibility"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleCxxSpecJSI_setSourceVisibility}; ++ methodMap_["getCenter"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleCxxSpecJSI_getCenter}; ++ methodMap_["getCoordinateFromView"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_getCoordinateFromView}; ++ methodMap_["getPointInView"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_getPointInView}; ++ methodMap_["getZoom"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleCxxSpecJSI_getZoom}; ++ methodMap_["getVisibleBounds"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleCxxSpecJSI_getVisibleBounds}; ++ methodMap_["queryRenderedFeaturesAtPoint"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleCxxSpecJSI_queryRenderedFeaturesAtPoint}; ++ methodMap_["queryRenderedFeaturesInRect"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleCxxSpecJSI_queryRenderedFeaturesInRect}; ++ methodMap_["setHandledMapChangedEvents"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_setHandledMapChangedEvents}; ++ methodMap_["clearData"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleCxxSpecJSI_clearData}; ++ methodMap_["querySourceFeatures"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleCxxSpecJSI_querySourceFeatures}; ++} ++static jsi::Value __hostFunction_NativeRNMBXCameraModuleCxxSpecJSI_updateCameraStop(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->updateCameraStop( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt) ++ ); ++} ++ ++NativeRNMBXCameraModuleCxxSpecJSI::NativeRNMBXCameraModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXCameraModule", jsInvoker) { ++ methodMap_["updateCameraStop"] = MethodMetadata {2, __hostFunction_NativeRNMBXCameraModuleCxxSpecJSI_updateCameraStop}; ++} ++static jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_create(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->create( ++ 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).asArray(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber(), ++ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asNumber() ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setLineString(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->setLineString( ++ 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).asArray(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber(), ++ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asNumber() ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setStartOffset(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->setStartOffset( ++ 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() ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setEndOffset(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->setEndOffset( ++ 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() ++ ); ++} ++ ++NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI::NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXChangeLineOffsetsShapeAnimatorModule", jsInvoker) { ++ methodMap_["create"] = MethodMetadata {4, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_create}; ++ methodMap_["setLineString"] = MethodMetadata {4, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setLineString}; ++ methodMap_["setStartOffset"] = MethodMetadata {3, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setStartOffset}; ++ methodMap_["setEndOffset"] = MethodMetadata {3, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setEndOffset}; ++} ++static jsi::Value __hostFunction_NativeRNMBXImageModuleCxxSpecJSI_refresh(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->refresh( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) ++ ); ++} ++ ++NativeRNMBXImageModuleCxxSpecJSI::NativeRNMBXImageModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXImageModule", jsInvoker) { ++ methodMap_["refresh"] = MethodMetadata {1, __hostFunction_NativeRNMBXImageModuleCxxSpecJSI_refresh}; ++} ++static jsi::Value __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI_create(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->create( ++ 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).asArray(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI_moveTo(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->moveTo( ++ 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).asArray(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber() ++ ); ++} ++ ++NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI::NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXMovePointShapeAnimatorModule", jsInvoker) { ++ methodMap_["create"] = MethodMetadata {2, __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI_create}; ++ methodMap_["moveTo"] = MethodMetadata {3, __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI_moveTo}; ++} ++static jsi::Value __hostFunction_NativeRNMBXPointAnnotationModuleCxxSpecJSI_refresh(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->refresh( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) ++ ); ++} ++ ++NativeRNMBXPointAnnotationModuleCxxSpecJSI::NativeRNMBXPointAnnotationModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXPointAnnotationModule", jsInvoker) { ++ methodMap_["refresh"] = MethodMetadata {1, __hostFunction_NativeRNMBXPointAnnotationModuleCxxSpecJSI_refresh}; ++} ++static jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterExpansionZoom(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getClusterExpansionZoom( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asString(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterLeaves(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getClusterLeaves( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asString(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber(), ++ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asNumber() ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterChildren(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getClusterChildren( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asString(rt) ++ ); ++} ++ ++NativeRNMBXShapeSourceModuleCxxSpecJSI::NativeRNMBXShapeSourceModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXShapeSourceModule", jsInvoker) { ++ methodMap_["getClusterExpansionZoom"] = MethodMetadata {2, __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterExpansionZoom}; ++ methodMap_["getClusterLeaves"] = MethodMetadata {4, __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterLeaves}; ++ methodMap_["getClusterChildren"] = MethodMetadata {2, __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterChildren}; ++} ++static jsi::Value __hostFunction_NativeRNMBXTileStoreModuleCxxSpecJSI_shared(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->shared( ++ rt, ++ count <= 0 || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asString(rt)) ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXTileStoreModuleCxxSpecJSI_setOption(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->setOption( ++ 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].asString(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asString(rt), ++ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asObject(rt) ++ ); ++} ++ ++NativeRNMBXTileStoreModuleCxxSpecJSI::NativeRNMBXTileStoreModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXTileStoreModule", jsInvoker) { ++ methodMap_["shared"] = MethodMetadata {1, __hostFunction_NativeRNMBXTileStoreModuleCxxSpecJSI_shared}; ++ methodMap_["setOption"] = MethodMetadata {4, __hostFunction_NativeRNMBXTileStoreModuleCxxSpecJSI_setOption}; ++} ++static jsi::Value __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_getState(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->getState( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_transitionTo(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->transitionTo( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), ++ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt), ++ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt) ++ ); ++} ++static jsi::Value __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_idle(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->idle( ++ rt, ++ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) ++ ); ++} ++ ++NativeRNMBXViewportModuleCxxSpecJSI::NativeRNMBXViewportModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("RNMBXViewportModule", jsInvoker) { ++ methodMap_["getState"] = MethodMetadata {1, __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_getState}; ++ methodMap_["transitionTo"] = MethodMetadata {3, __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_transitionTo}; ++ methodMap_["idle"] = MethodMetadata {1, __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_idle}; ++} ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI.h +new file mode 100644 +index 0000000..09fcdd8 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI.h +@@ -0,0 +1,692 @@ ++/** ++ * 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 NativeMapViewModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeMapViewModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value takeSnap(jsi::Runtime &rt, std::optional viewRef, bool writeToDisk) = 0; ++ virtual jsi::Value queryTerrainElevation(jsi::Runtime &rt, std::optional viewRef, jsi::Array coordinates) = 0; ++ virtual jsi::Value setSourceVisibility(jsi::Runtime &rt, std::optional viewRef, bool visible, jsi::String sourceId, jsi::String sourceLayerId) = 0; ++ virtual jsi::Value getCenter(jsi::Runtime &rt, std::optional viewRef) = 0; ++ virtual jsi::Value getCoordinateFromView(jsi::Runtime &rt, std::optional viewRef, jsi::Array atPoint) = 0; ++ virtual jsi::Value getPointInView(jsi::Runtime &rt, std::optional viewRef, jsi::Array atCoordinate) = 0; ++ virtual jsi::Value getZoom(jsi::Runtime &rt, std::optional viewRef) = 0; ++ virtual jsi::Value getVisibleBounds(jsi::Runtime &rt, std::optional viewRef) = 0; ++ virtual jsi::Value queryRenderedFeaturesAtPoint(jsi::Runtime &rt, std::optional viewRef, jsi::Array atPoint, jsi::Array withFilter, jsi::Array withLayerIDs) = 0; ++ virtual jsi::Value queryRenderedFeaturesInRect(jsi::Runtime &rt, std::optional viewRef, jsi::Array withBBox, jsi::Array withFilter, jsi::Array withLayerIDs) = 0; ++ virtual jsi::Value setHandledMapChangedEvents(jsi::Runtime &rt, std::optional viewRef, jsi::Array events) = 0; ++ virtual jsi::Value clearData(jsi::Runtime &rt, std::optional viewRef) = 0; ++ virtual jsi::Value querySourceFeatures(jsi::Runtime &rt, std::optional viewRef, jsi::String sourceId, jsi::Array withFilter, jsi::Array withSourceLayerIDs) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeMapViewModuleCxxSpec : 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 = "RNMBXMapViewModule"; ++ ++protected: ++ NativeMapViewModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeMapViewModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeMapViewModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeMapViewModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value takeSnap(jsi::Runtime &rt, std::optional viewRef, bool writeToDisk) override { ++ static_assert( ++ bridging::getParameterCount(&T::takeSnap) == 3, ++ "Expected takeSnap(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::takeSnap, jsInvoker_, instance_, std::move(viewRef), std::move(writeToDisk)); ++ } ++ jsi::Value queryTerrainElevation(jsi::Runtime &rt, std::optional viewRef, jsi::Array coordinates) override { ++ static_assert( ++ bridging::getParameterCount(&T::queryTerrainElevation) == 3, ++ "Expected queryTerrainElevation(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::queryTerrainElevation, jsInvoker_, instance_, std::move(viewRef), std::move(coordinates)); ++ } ++ jsi::Value setSourceVisibility(jsi::Runtime &rt, std::optional viewRef, bool visible, jsi::String sourceId, jsi::String sourceLayerId) override { ++ static_assert( ++ bridging::getParameterCount(&T::setSourceVisibility) == 5, ++ "Expected setSourceVisibility(...) to have 5 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::setSourceVisibility, jsInvoker_, instance_, std::move(viewRef), std::move(visible), std::move(sourceId), std::move(sourceLayerId)); ++ } ++ jsi::Value getCenter(jsi::Runtime &rt, std::optional viewRef) override { ++ static_assert( ++ bridging::getParameterCount(&T::getCenter) == 2, ++ "Expected getCenter(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getCenter, jsInvoker_, instance_, std::move(viewRef)); ++ } ++ jsi::Value getCoordinateFromView(jsi::Runtime &rt, std::optional viewRef, jsi::Array atPoint) override { ++ static_assert( ++ bridging::getParameterCount(&T::getCoordinateFromView) == 3, ++ "Expected getCoordinateFromView(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getCoordinateFromView, jsInvoker_, instance_, std::move(viewRef), std::move(atPoint)); ++ } ++ jsi::Value getPointInView(jsi::Runtime &rt, std::optional viewRef, jsi::Array atCoordinate) override { ++ static_assert( ++ bridging::getParameterCount(&T::getPointInView) == 3, ++ "Expected getPointInView(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getPointInView, jsInvoker_, instance_, std::move(viewRef), std::move(atCoordinate)); ++ } ++ jsi::Value getZoom(jsi::Runtime &rt, std::optional viewRef) override { ++ static_assert( ++ bridging::getParameterCount(&T::getZoom) == 2, ++ "Expected getZoom(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getZoom, jsInvoker_, instance_, std::move(viewRef)); ++ } ++ jsi::Value getVisibleBounds(jsi::Runtime &rt, std::optional viewRef) override { ++ static_assert( ++ bridging::getParameterCount(&T::getVisibleBounds) == 2, ++ "Expected getVisibleBounds(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getVisibleBounds, jsInvoker_, instance_, std::move(viewRef)); ++ } ++ jsi::Value queryRenderedFeaturesAtPoint(jsi::Runtime &rt, std::optional viewRef, jsi::Array atPoint, jsi::Array withFilter, jsi::Array withLayerIDs) override { ++ static_assert( ++ bridging::getParameterCount(&T::queryRenderedFeaturesAtPoint) == 5, ++ "Expected queryRenderedFeaturesAtPoint(...) to have 5 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::queryRenderedFeaturesAtPoint, jsInvoker_, instance_, std::move(viewRef), std::move(atPoint), std::move(withFilter), std::move(withLayerIDs)); ++ } ++ jsi::Value queryRenderedFeaturesInRect(jsi::Runtime &rt, std::optional viewRef, jsi::Array withBBox, jsi::Array withFilter, jsi::Array withLayerIDs) override { ++ static_assert( ++ bridging::getParameterCount(&T::queryRenderedFeaturesInRect) == 5, ++ "Expected queryRenderedFeaturesInRect(...) to have 5 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::queryRenderedFeaturesInRect, jsInvoker_, instance_, std::move(viewRef), std::move(withBBox), std::move(withFilter), std::move(withLayerIDs)); ++ } ++ jsi::Value setHandledMapChangedEvents(jsi::Runtime &rt, std::optional viewRef, jsi::Array events) override { ++ static_assert( ++ bridging::getParameterCount(&T::setHandledMapChangedEvents) == 3, ++ "Expected setHandledMapChangedEvents(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::setHandledMapChangedEvents, jsInvoker_, instance_, std::move(viewRef), std::move(events)); ++ } ++ jsi::Value clearData(jsi::Runtime &rt, std::optional viewRef) override { ++ static_assert( ++ bridging::getParameterCount(&T::clearData) == 2, ++ "Expected clearData(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::clearData, jsInvoker_, instance_, std::move(viewRef)); ++ } ++ jsi::Value querySourceFeatures(jsi::Runtime &rt, std::optional viewRef, jsi::String sourceId, jsi::Array withFilter, jsi::Array withSourceLayerIDs) override { ++ static_assert( ++ bridging::getParameterCount(&T::querySourceFeatures) == 5, ++ "Expected querySourceFeatures(...) to have 5 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::querySourceFeatures, jsInvoker_, instance_, std::move(viewRef), std::move(sourceId), std::move(withFilter), std::move(withSourceLayerIDs)); ++ } ++ ++ private: ++ friend class NativeMapViewModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++ ++ class JSI_EXPORT NativeRNMBXCameraModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNMBXCameraModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value updateCameraStop(jsi::Runtime &rt, std::optional viewRef, jsi::Object stop) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNMBXCameraModuleCxxSpec : 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 = "RNMBXCameraModule"; ++ ++protected: ++ NativeRNMBXCameraModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNMBXCameraModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNMBXCameraModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNMBXCameraModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value updateCameraStop(jsi::Runtime &rt, std::optional viewRef, jsi::Object stop) override { ++ static_assert( ++ bridging::getParameterCount(&T::updateCameraStop) == 3, ++ "Expected updateCameraStop(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::updateCameraStop, jsInvoker_, instance_, std::move(viewRef), std::move(stop)); ++ } ++ ++ private: ++ friend class NativeRNMBXCameraModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++ ++ class JSI_EXPORT NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value create(jsi::Runtime &rt, int tag, jsi::Array coordinates, double startOffset, double endOffset) = 0; ++ virtual jsi::Value setLineString(jsi::Runtime &rt, int tag, jsi::Array coordinates, double startOffset, double endOffset) = 0; ++ virtual jsi::Value setStartOffset(jsi::Runtime &rt, int tag, double offset, double duration) = 0; ++ virtual jsi::Value setEndOffset(jsi::Runtime &rt, int tag, double offset, double duration) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpec : 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 = "RNMBXChangeLineOffsetsShapeAnimatorModule"; ++ ++protected: ++ NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value create(jsi::Runtime &rt, int tag, jsi::Array coordinates, double startOffset, double endOffset) override { ++ static_assert( ++ bridging::getParameterCount(&T::create) == 5, ++ "Expected create(...) to have 5 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::create, jsInvoker_, instance_, std::move(tag), std::move(coordinates), std::move(startOffset), std::move(endOffset)); ++ } ++ jsi::Value setLineString(jsi::Runtime &rt, int tag, jsi::Array coordinates, double startOffset, double endOffset) override { ++ static_assert( ++ bridging::getParameterCount(&T::setLineString) == 5, ++ "Expected setLineString(...) to have 5 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::setLineString, jsInvoker_, instance_, std::move(tag), std::move(coordinates), std::move(startOffset), std::move(endOffset)); ++ } ++ jsi::Value setStartOffset(jsi::Runtime &rt, int tag, double offset, double duration) override { ++ static_assert( ++ bridging::getParameterCount(&T::setStartOffset) == 4, ++ "Expected setStartOffset(...) to have 4 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::setStartOffset, jsInvoker_, instance_, std::move(tag), std::move(offset), std::move(duration)); ++ } ++ jsi::Value setEndOffset(jsi::Runtime &rt, int tag, double offset, double duration) override { ++ static_assert( ++ bridging::getParameterCount(&T::setEndOffset) == 4, ++ "Expected setEndOffset(...) to have 4 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::setEndOffset, jsInvoker_, instance_, std::move(tag), std::move(offset), std::move(duration)); ++ } ++ ++ private: ++ friend class NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++ ++ class JSI_EXPORT NativeRNMBXImageModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNMBXImageModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value refresh(jsi::Runtime &rt, std::optional viewRef) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNMBXImageModuleCxxSpec : 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 = "RNMBXImageModule"; ++ ++protected: ++ NativeRNMBXImageModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNMBXImageModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNMBXImageModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNMBXImageModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value refresh(jsi::Runtime &rt, std::optional viewRef) override { ++ static_assert( ++ bridging::getParameterCount(&T::refresh) == 2, ++ "Expected refresh(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::refresh, jsInvoker_, instance_, std::move(viewRef)); ++ } ++ ++ private: ++ friend class NativeRNMBXImageModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++ ++ class JSI_EXPORT NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value create(jsi::Runtime &rt, int tag, jsi::Array coordinate) = 0; ++ virtual jsi::Value moveTo(jsi::Runtime &rt, int tag, jsi::Array coordinate, double duration) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNMBXMovePointShapeAnimatorModuleCxxSpec : 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 = "RNMBXMovePointShapeAnimatorModule"; ++ ++protected: ++ NativeRNMBXMovePointShapeAnimatorModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNMBXMovePointShapeAnimatorModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value create(jsi::Runtime &rt, int tag, jsi::Array coordinate) override { ++ static_assert( ++ bridging::getParameterCount(&T::create) == 3, ++ "Expected create(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::create, jsInvoker_, instance_, std::move(tag), std::move(coordinate)); ++ } ++ jsi::Value moveTo(jsi::Runtime &rt, int tag, jsi::Array coordinate, double duration) override { ++ static_assert( ++ bridging::getParameterCount(&T::moveTo) == 4, ++ "Expected moveTo(...) to have 4 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::moveTo, jsInvoker_, instance_, std::move(tag), std::move(coordinate), std::move(duration)); ++ } ++ ++ private: ++ friend class NativeRNMBXMovePointShapeAnimatorModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++ ++ class JSI_EXPORT NativeRNMBXPointAnnotationModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNMBXPointAnnotationModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value refresh(jsi::Runtime &rt, std::optional viewRef) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNMBXPointAnnotationModuleCxxSpec : 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 = "RNMBXPointAnnotationModule"; ++ ++protected: ++ NativeRNMBXPointAnnotationModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNMBXPointAnnotationModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNMBXPointAnnotationModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNMBXPointAnnotationModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value refresh(jsi::Runtime &rt, std::optional viewRef) override { ++ static_assert( ++ bridging::getParameterCount(&T::refresh) == 2, ++ "Expected refresh(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::refresh, jsInvoker_, instance_, std::move(viewRef)); ++ } ++ ++ private: ++ friend class NativeRNMBXPointAnnotationModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++ ++ class JSI_EXPORT NativeRNMBXShapeSourceModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNMBXShapeSourceModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value getClusterExpansionZoom(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON) = 0; ++ virtual jsi::Value getClusterLeaves(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON, int number, int offset) = 0; ++ virtual jsi::Value getClusterChildren(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNMBXShapeSourceModuleCxxSpec : 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 = "RNMBXShapeSourceModule"; ++ ++protected: ++ NativeRNMBXShapeSourceModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNMBXShapeSourceModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNMBXShapeSourceModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNMBXShapeSourceModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value getClusterExpansionZoom(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON) override { ++ static_assert( ++ bridging::getParameterCount(&T::getClusterExpansionZoom) == 3, ++ "Expected getClusterExpansionZoom(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getClusterExpansionZoom, jsInvoker_, instance_, std::move(viewRef), std::move(featureJSON)); ++ } ++ jsi::Value getClusterLeaves(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON, int number, int offset) override { ++ static_assert( ++ bridging::getParameterCount(&T::getClusterLeaves) == 5, ++ "Expected getClusterLeaves(...) to have 5 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getClusterLeaves, jsInvoker_, instance_, std::move(viewRef), std::move(featureJSON), std::move(number), std::move(offset)); ++ } ++ jsi::Value getClusterChildren(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON) override { ++ static_assert( ++ bridging::getParameterCount(&T::getClusterChildren) == 3, ++ "Expected getClusterChildren(...) to have 3 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getClusterChildren, jsInvoker_, instance_, std::move(viewRef), std::move(featureJSON)); ++ } ++ ++ private: ++ friend class NativeRNMBXShapeSourceModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++ ++ class JSI_EXPORT NativeRNMBXTileStoreModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNMBXTileStoreModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value shared(jsi::Runtime &rt, std::optional path) = 0; ++ virtual jsi::Value setOption(jsi::Runtime &rt, int tag, jsi::String key, jsi::String domain, jsi::Object value) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNMBXTileStoreModuleCxxSpec : 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 = "RNMBXTileStoreModule"; ++ ++protected: ++ NativeRNMBXTileStoreModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNMBXTileStoreModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNMBXTileStoreModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNMBXTileStoreModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value shared(jsi::Runtime &rt, std::optional path) override { ++ static_assert( ++ bridging::getParameterCount(&T::shared) == 2, ++ "Expected shared(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::shared, jsInvoker_, instance_, std::move(path)); ++ } ++ jsi::Value setOption(jsi::Runtime &rt, int tag, jsi::String key, jsi::String domain, jsi::Object value) override { ++ static_assert( ++ bridging::getParameterCount(&T::setOption) == 5, ++ "Expected setOption(...) to have 5 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::setOption, jsInvoker_, instance_, std::move(tag), std::move(key), std::move(domain), std::move(value)); ++ } ++ ++ private: ++ friend class NativeRNMBXTileStoreModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++ ++ class JSI_EXPORT NativeRNMBXViewportModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeRNMBXViewportModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual jsi::Value getState(jsi::Runtime &rt, std::optional viewRef) = 0; ++ virtual jsi::Value transitionTo(jsi::Runtime &rt, std::optional viewRef, jsi::Object state, jsi::Object transition) = 0; ++ virtual jsi::Value idle(jsi::Runtime &rt, std::optional viewRef) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeRNMBXViewportModuleCxxSpec : 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 = "RNMBXViewportModule"; ++ ++protected: ++ NativeRNMBXViewportModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeRNMBXViewportModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeRNMBXViewportModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeRNMBXViewportModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ jsi::Value getState(jsi::Runtime &rt, std::optional viewRef) override { ++ static_assert( ++ bridging::getParameterCount(&T::getState) == 2, ++ "Expected getState(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::getState, jsInvoker_, instance_, std::move(viewRef)); ++ } ++ jsi::Value transitionTo(jsi::Runtime &rt, std::optional viewRef, jsi::Object state, jsi::Object transition) override { ++ static_assert( ++ bridging::getParameterCount(&T::transitionTo) == 4, ++ "Expected transitionTo(...) to have 4 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::transitionTo, jsInvoker_, instance_, std::move(viewRef), std::move(state), std::move(transition)); ++ } ++ jsi::Value idle(jsi::Runtime &rt, std::optional viewRef) override { ++ static_assert( ++ bridging::getParameterCount(&T::idle) == 2, ++ "Expected idle(...) to have 2 parameters"); ++ ++ return bridging::callFromJs( ++ rt, &T::idle, jsInvoker_, instance_, std::move(viewRef)); ++ } ++ ++ private: ++ friend class NativeRNMBXViewportModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs-generated.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs-generated.cpp +new file mode 100644 +index 0000000..2a99762 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs-generated.cpp +@@ -0,0 +1,254 @@ ++ ++/** ++ * 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 "rnmapbox_maps_specs.h" ++ ++namespace facebook::react { ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_takeSnap(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "takeSnap", "(Ljava/lang/Double;ZLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_queryTerrainElevation(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "queryTerrainElevation", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_setSourceVisibility(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setSourceVisibility", "(Ljava/lang/Double;ZLjava/lang/String;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getCenter(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getCenter", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getCoordinateFromView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getCoordinateFromView", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getPointInView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getPointInView", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getZoom(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getZoom", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getVisibleBounds(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getVisibleBounds", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_queryRenderedFeaturesAtPoint(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "queryRenderedFeaturesAtPoint", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_queryRenderedFeaturesInRect(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "queryRenderedFeaturesInRect", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_setHandledMapChangedEvents(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setHandledMapChangedEvents", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_clearData(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "clearData", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_querySourceFeatures(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "querySourceFeatures", "(Ljava/lang/Double;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeMapViewModuleSpecJSI::NativeMapViewModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["takeSnap"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_takeSnap}; ++ methodMap_["queryTerrainElevation"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_queryTerrainElevation}; ++ methodMap_["setSourceVisibility"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleSpecJSI_setSourceVisibility}; ++ methodMap_["getCenter"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleSpecJSI_getCenter}; ++ methodMap_["getCoordinateFromView"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_getCoordinateFromView}; ++ methodMap_["getPointInView"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_getPointInView}; ++ methodMap_["getZoom"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleSpecJSI_getZoom}; ++ methodMap_["getVisibleBounds"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleSpecJSI_getVisibleBounds}; ++ methodMap_["queryRenderedFeaturesAtPoint"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleSpecJSI_queryRenderedFeaturesAtPoint}; ++ methodMap_["queryRenderedFeaturesInRect"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleSpecJSI_queryRenderedFeaturesInRect}; ++ methodMap_["setHandledMapChangedEvents"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_setHandledMapChangedEvents}; ++ methodMap_["clearData"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleSpecJSI_clearData}; ++ methodMap_["querySourceFeatures"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleSpecJSI_querySourceFeatures}; ++} ++static facebook::jsi::Value __hostFunction_NativeRNMBXCameraModuleSpecJSI_updateCameraStop(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "updateCameraStop", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeRNMBXCameraModuleSpecJSI::NativeRNMBXCameraModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["updateCameraStop"] = MethodMetadata {2, __hostFunction_NativeRNMBXCameraModuleSpecJSI_updateCameraStop}; ++} ++static facebook::jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_create(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "create", "(DLcom/facebook/react/bridge/ReadableArray;DDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setLineString(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setLineString", "(DLcom/facebook/react/bridge/ReadableArray;DDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setStartOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setStartOffset", "(DDDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setEndOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setEndOffset", "(DDDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI::NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["create"] = MethodMetadata {4, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_create}; ++ methodMap_["setLineString"] = MethodMetadata {4, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setLineString}; ++ methodMap_["setStartOffset"] = MethodMetadata {3, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setStartOffset}; ++ methodMap_["setEndOffset"] = MethodMetadata {3, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setEndOffset}; ++} ++static facebook::jsi::Value __hostFunction_NativeRNMBXImageModuleSpecJSI_refresh(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "refresh", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeRNMBXImageModuleSpecJSI::NativeRNMBXImageModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["refresh"] = MethodMetadata {1, __hostFunction_NativeRNMBXImageModuleSpecJSI_refresh}; ++} ++static facebook::jsi::Value __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleSpecJSI_create(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "create", "(DLcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleSpecJSI_moveTo(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "moveTo", "(DLcom/facebook/react/bridge/ReadableArray;DLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeRNMBXMovePointShapeAnimatorModuleSpecJSI::NativeRNMBXMovePointShapeAnimatorModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["create"] = MethodMetadata {2, __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleSpecJSI_create}; ++ methodMap_["moveTo"] = MethodMetadata {3, __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleSpecJSI_moveTo}; ++} ++static facebook::jsi::Value __hostFunction_NativeRNMBXPointAnnotationModuleSpecJSI_refresh(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "refresh", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeRNMBXPointAnnotationModuleSpecJSI::NativeRNMBXPointAnnotationModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["refresh"] = MethodMetadata {1, __hostFunction_NativeRNMBXPointAnnotationModuleSpecJSI_refresh}; ++} ++static facebook::jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterExpansionZoom(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getClusterExpansionZoom", "(Ljava/lang/Double;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterLeaves(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getClusterLeaves", "(Ljava/lang/Double;Ljava/lang/String;DDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterChildren(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getClusterChildren", "(Ljava/lang/Double;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeRNMBXShapeSourceModuleSpecJSI::NativeRNMBXShapeSourceModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["getClusterExpansionZoom"] = MethodMetadata {2, __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterExpansionZoom}; ++ methodMap_["getClusterLeaves"] = MethodMetadata {4, __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterLeaves}; ++ methodMap_["getClusterChildren"] = MethodMetadata {2, __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterChildren}; ++} ++static facebook::jsi::Value __hostFunction_NativeRNMBXTileStoreModuleSpecJSI_shared(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "shared", "(Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXTileStoreModuleSpecJSI_setOption(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setOption", "(DLjava/lang/String;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeRNMBXTileStoreModuleSpecJSI::NativeRNMBXTileStoreModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["shared"] = MethodMetadata {1, __hostFunction_NativeRNMBXTileStoreModuleSpecJSI_shared}; ++ methodMap_["setOption"] = MethodMetadata {4, __hostFunction_NativeRNMBXTileStoreModuleSpecJSI_setOption}; ++} ++static facebook::jsi::Value __hostFunction_NativeRNMBXViewportModuleSpecJSI_getState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getState", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXViewportModuleSpecJSI_transitionTo(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "transitionTo", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++static facebook::jsi::Value __hostFunction_NativeRNMBXViewportModuleSpecJSI_idle(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { ++ static jmethodID cachedMethodId = nullptr; ++ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "idle", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); ++} ++ ++NativeRNMBXViewportModuleSpecJSI::NativeRNMBXViewportModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["getState"] = MethodMetadata {1, __hostFunction_NativeRNMBXViewportModuleSpecJSI_getState}; ++ methodMap_["transitionTo"] = MethodMetadata {3, __hostFunction_NativeRNMBXViewportModuleSpecJSI_transitionTo}; ++ methodMap_["idle"] = MethodMetadata {1, __hostFunction_NativeRNMBXViewportModuleSpecJSI_idle}; ++} ++ ++std::shared_ptr rnmapbox_maps_specs_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { ++ if (moduleName == "RNMBXCameraModule") { ++ return std::make_shared(params); ++ } ++ if (moduleName == "RNMBXChangeLineOffsetsShapeAnimatorModule") { ++ return std::make_shared(params); ++ } ++ if (moduleName == "RNMBXImageModule") { ++ return std::make_shared(params); ++ } ++ if (moduleName == "RNMBXMapViewModule") { ++ return std::make_shared(params); ++ } ++ if (moduleName == "RNMBXMovePointShapeAnimatorModule") { ++ return std::make_shared(params); ++ } ++ if (moduleName == "RNMBXPointAnnotationModule") { ++ return std::make_shared(params); ++ } ++ if (moduleName == "RNMBXShapeSourceModule") { ++ return std::make_shared(params); ++ } ++ if (moduleName == "RNMBXTileStoreModule") { ++ return std::make_shared(params); ++ } ++ if (moduleName == "RNMBXViewportModule") { ++ return std::make_shared(params); ++ } ++ return nullptr; ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs.h +new file mode 100644 +index 0000000..6bf8a17 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs.h +@@ -0,0 +1,95 @@ ++ ++/** ++ * 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 'NativeMapViewModule' ++ */ ++class JSI_EXPORT NativeMapViewModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeMapViewModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++/** ++ * JNI C++ class for module 'NativeRNMBXCameraModule' ++ */ ++class JSI_EXPORT NativeRNMBXCameraModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNMBXCameraModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++/** ++ * JNI C++ class for module 'NativeRNMBXChangeLineOffsetsShapeAnimatorModule' ++ */ ++class JSI_EXPORT NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++/** ++ * JNI C++ class for module 'NativeRNMBXImageModule' ++ */ ++class JSI_EXPORT NativeRNMBXImageModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNMBXImageModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++/** ++ * JNI C++ class for module 'NativeRNMBXMovePointShapeAnimatorModule' ++ */ ++class JSI_EXPORT NativeRNMBXMovePointShapeAnimatorModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNMBXMovePointShapeAnimatorModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++/** ++ * JNI C++ class for module 'NativeRNMBXPointAnnotationModule' ++ */ ++class JSI_EXPORT NativeRNMBXPointAnnotationModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNMBXPointAnnotationModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++/** ++ * JNI C++ class for module 'NativeRNMBXShapeSourceModule' ++ */ ++class JSI_EXPORT NativeRNMBXShapeSourceModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNMBXShapeSourceModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++/** ++ * JNI C++ class for module 'NativeRNMBXTileStoreModule' ++ */ ++class JSI_EXPORT NativeRNMBXTileStoreModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNMBXTileStoreModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++/** ++ * JNI C++ class for module 'NativeRNMBXViewportModule' ++ */ ++class JSI_EXPORT NativeRNMBXViewportModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeRNMBXViewportModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++ ++JSI_EXPORT ++std::shared_ptr rnmapbox_maps_specs_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); ++ ++} // namespace facebook::react +diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/schema.json b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/schema.json +new file mode 100644 +index 0000000..e503c6b +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/schema.json +@@ -0,0 +1 @@ ++{"modules":{"NativeMapViewModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"takeSnap","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"writeToDisk","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation"}}]}},{"name":"queryTerrainElevation","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"coordinates","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}}]}},{"name":"setSourceVisibility","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"visible","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation"}},{"name":"sourceId","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"sourceLayerId","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}},{"name":"getCenter","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"getCoordinateFromView","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"atPoint","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}}]}},{"name":"getPointInView","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"atCoordinate","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}}]}},{"name":"getZoom","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"getVisibleBounds","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"queryRenderedFeaturesAtPoint","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"atPoint","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}},{"name":"withFilter","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}}},{"name":"withLayerIDs","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"StringTypeAnnotation"}}}]}},{"name":"queryRenderedFeaturesInRect","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"withBBox","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}},{"name":"withFilter","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}}},{"name":"withLayerIDs","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"StringTypeAnnotation"}}}]}},{"name":"setHandledMapChangedEvents","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"events","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"StringTypeAnnotation"}}}]}},{"name":"clearData","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"querySourceFeatures","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"sourceId","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"withFilter","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}}},{"name":"withSourceLayerIDs","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"StringTypeAnnotation"}}}]}}]},"moduleName":"RNMBXMapViewModule"},"NativeRNMBXCameraModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"updateCameraStop","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"stop","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}}]},"moduleName":"RNMBXCameraModule"},"NativeRNMBXChangeLineOffsetsShapeAnimatorModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"create","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"coordinates","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"AnyTypeAnnotation"}}},{"name":"startOffset","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"endOffset","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}},{"name":"setLineString","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"coordinates","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"AnyTypeAnnotation"}}},{"name":"startOffset","optional":false,"typeAnnotation":{"type":"NumberTypeAnnotation"}},{"name":"endOffset","optional":false,"typeAnnotation":{"type":"NumberTypeAnnotation"}}]}},{"name":"setStartOffset","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"offset","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"duration","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}},{"name":"setEndOffset","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"offset","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"duration","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}}]},"moduleName":"RNMBXChangeLineOffsetsShapeAnimatorModule"},"NativeRNMBXImageModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"refresh","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}}]},"moduleName":"RNMBXImageModule"},"NativeRNMBXMovePointShapeAnimatorModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"create","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"coordinate","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"DoubleTypeAnnotation"}}}]}},{"name":"moveTo","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"coordinate","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"DoubleTypeAnnotation"}}},{"name":"duration","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}}]},"moduleName":"RNMBXMovePointShapeAnimatorModule"},"NativeRNMBXPointAnnotationModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"refresh","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}}]},"moduleName":"RNMBXPointAnnotationModule"},"NativeRNMBXShapeSourceModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"getClusterExpansionZoom","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"featureJSON","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}},{"name":"getClusterLeaves","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"featureJSON","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"number","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"offset","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}}]}},{"name":"getClusterChildren","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"featureJSON","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}]},"moduleName":"RNMBXShapeSourceModule"},"NativeRNMBXTileStoreModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"shared","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"Int32TypeAnnotation"}},"params":[{"name":"path","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}},{"name":"setOption","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"key","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"domain","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"value","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}}]},"moduleName":"RNMBXTileStoreModule"},"NativeRNMBXViewportModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"getState","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"UnionTypeAnnotation","memberType":"ObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"transitionTo","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"state","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}},{"name":"transition","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}},{"name":"idle","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}}]},"moduleName":"RNMBXViewportModule"},"RNMBXAtmosphere":{"type":"Component","components":{"RNMBXAtmosphere":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXBackgroundLayer":{"type":"Component","components":{"RNMBXBackgroundLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceID","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXCallout":{"type":"Component","components":{"RNMBXCallout":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[],"commands":[]}}},"RNMBXCamera":{"type":"Component","components":{"RNMBXCamera":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onUserTrackingModeChange","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payloadRenamed","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"followUserLocation","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation"}},{"name":"followUserMode","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}]}}}],"props":[{"name":"maxBounds","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"animationDuration","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"animationMode","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"defaultStop","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"userTrackingMode","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followUserLocation","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followUserMode","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followPitch","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followHeading","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followPadding","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"zoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"stop","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXCircleLayer":{"type":"Component","components":{"RNMBXCircleLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXCustomLocationProvider":{"type":"Component","components":{"RNMBXCustomLocationProvider":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"coordinate","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"heading","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXFillExtrusionLayer":{"type":"Component","components":{"RNMBXFillExtrusionLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXFillLayer":{"type":"Component","components":{"RNMBXFillLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXHeatmapLayer":{"type":"Component","components":{"RNMBXHeatmapLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXImage":{"type":"Component","components":{"RNMBXImage":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"stretchX","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"stretchY","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"content","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sdf","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"name","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scale","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXImages":{"type":"Component","components":{"RNMBXImages":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onImageMissing","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"imageKey","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}]}}}],"props":[{"name":"images","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"nativeImages","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hasOnImageMissing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXImageSource":{"type":"Component","components":{"RNMBXImageSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"coordinates","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXLight":{"type":"Component","components":{"RNMBXLight":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXLineLayer":{"type":"Component","components":{"RNMBXLineLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXMapView":{"type":"Component","components":{"RNMBXMapView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onPress","optional":true,"bubblingType":"bubble","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onLongPress","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapChange","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onCameraChanged","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"attributionEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attributionPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"logoEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"logoPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassFadeWhenNorth","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassViewPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassViewMargins","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scaleBarEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scaleBarPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"zoomEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scrollEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"rotateEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"pitchEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"deselectAnnotationOnTap","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"requestDisallowInterceptTouchEvent","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"projection","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"localizeLabels","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"styleURL","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"gestureSettings","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"surfaceView","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scaleBarViewMargins","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attributionViewMargins","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attributionViewPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassImage","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"mapViewImpl","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXMarkerViewContent":{"type":"Component","components":{"RNMBXMarkerViewContent":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[],"commands":[]}}},"RNMBXMarkerView":{"type":"Component","components":{"RNMBXMarkerView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"coordinate","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"anchor","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"allowOverlap","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"allowOverlapWithPuck","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"isSelected","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXModelLayer":{"type":"Component","components":{"RNMBXModelLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXModels":{"type":"Component","components":{"RNMBXModels":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"models","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXNativeUserLocation":{"type":"Component","components":{"RNMBXNativeUserLocation":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"androidRenderMode","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"puckBearing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"puckBearingEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"bearingImage","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"shadowImage","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"topImage","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scale","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"visible","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"pulsing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXPointAnnotation":{"type":"Component","components":{"RNMBXPointAnnotation":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onMapboxPointAnnotationDeselected","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapboxPointAnnotationDrag","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapboxPointAnnotationDragEnd","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapboxPointAnnotationDragStart","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapboxPointAnnotationSelected","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"coordinate","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"draggable","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"anchor","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXRasterDemSource":{"type":"Component","components":{"RNMBXRasterDemSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileUrlTemplates","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileSize","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXRasterLayer":{"type":"Component","components":{"RNMBXRasterLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXRasterSource":{"type":"Component","components":{"RNMBXRasterSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileUrlTemplates","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileSize","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tms","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attribution","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXShapeSource":{"type":"Component","components":{"RNMBXShapeSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onMapboxShapeSourcePress","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"shape","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"cluster","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"clusterRadius","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"clusterMaxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"clusterProperties","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"buffer","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tolerance","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"lineMetrics","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hasPressListener","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hitbox","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXSkyLayer":{"type":"Component","components":{"RNMBXSkyLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXStyleImport":{"type":"Component","components":{"RNMBXStyleImport":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"existing","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"config","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXSymbolLayer":{"type":"Component","components":{"RNMBXSymbolLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXTerrain":{"type":"Component","components":{"RNMBXTerrain":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXVectorSource":{"type":"Component","components":{"RNMBXVectorSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onMapboxVectorSourcePress","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileUrlTemplates","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attribution","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tms","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hasPressListener","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hitbox","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXViewport":{"type":"Component","components":{"RNMBXViewport":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onStatusChanged","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"transitionsToIdleUponUserInteraction","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hasStatusChanged","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}}],"commands":[]}}}}} +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..c8865b5 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,11 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..545af46 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/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.rnmapbox.rnmbx", ++ "variantName": "debug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/@rnmapbox/maps/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..508a3be +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..29c7110 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..21abd7d +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +@@ -0,0 +1,2415 @@ ++int anim abc_fade_in 0x0 ++int anim abc_fade_out 0x0 ++int anim abc_grow_fade_in_from_bottom 0x0 ++int anim abc_popup_enter 0x0 ++int anim abc_popup_exit 0x0 ++int anim abc_shrink_fade_out_from_bottom 0x0 ++int anim abc_slide_in_bottom 0x0 ++int anim abc_slide_in_top 0x0 ++int anim abc_slide_out_bottom 0x0 ++int anim abc_slide_out_top 0x0 ++int anim abc_tooltip_enter 0x0 ++int anim abc_tooltip_exit 0x0 ++int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 ++int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 ++int anim btn_checkbox_to_checked_icon_null_animation 0x0 ++int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 ++int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 ++int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 ++int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 ++int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 ++int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 ++int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 ++int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 ++int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 ++int anim catalyst_fade_in 0x0 ++int anim catalyst_fade_out 0x0 ++int anim catalyst_push_up_in 0x0 ++int anim catalyst_push_up_out 0x0 ++int anim catalyst_slide_down 0x0 ++int anim catalyst_slide_up 0x0 ++int anim fragment_fast_out_extra_slow_in 0x0 ++int animator fragment_close_enter 0x0 ++int animator fragment_close_exit 0x0 ++int animator fragment_fade_enter 0x0 ++int animator fragment_fade_exit 0x0 ++int animator fragment_open_enter 0x0 ++int animator fragment_open_exit 0x0 ++int attr actionBarDivider 0x0 ++int attr actionBarItemBackground 0x0 ++int attr actionBarPopupTheme 0x0 ++int attr actionBarSize 0x0 ++int attr actionBarSplitStyle 0x0 ++int attr actionBarStyle 0x0 ++int attr actionBarTabBarStyle 0x0 ++int attr actionBarTabStyle 0x0 ++int attr actionBarTabTextStyle 0x0 ++int attr actionBarTheme 0x0 ++int attr actionBarWidgetTheme 0x0 ++int attr actionButtonStyle 0x0 ++int attr actionDropDownStyle 0x0 ++int attr actionLayout 0x0 ++int attr actionMenuTextAppearance 0x0 ++int attr actionMenuTextColor 0x0 ++int attr actionModeBackground 0x0 ++int attr actionModeCloseButtonStyle 0x0 ++int attr actionModeCloseContentDescription 0x0 ++int attr actionModeCloseDrawable 0x0 ++int attr actionModeCopyDrawable 0x0 ++int attr actionModeCutDrawable 0x0 ++int attr actionModeFindDrawable 0x0 ++int attr actionModePasteDrawable 0x0 ++int attr actionModePopupWindowStyle 0x0 ++int attr actionModeSelectAllDrawable 0x0 ++int attr actionModeShareDrawable 0x0 ++int attr actionModeSplitBackground 0x0 ++int attr actionModeStyle 0x0 ++int attr actionModeTheme 0x0 ++int attr actionModeWebSearchDrawable 0x0 ++int attr actionOverflowButtonStyle 0x0 ++int attr actionOverflowMenuStyle 0x0 ++int attr actionProviderClass 0x0 ++int attr actionViewClass 0x0 ++int attr activityChooserViewStyle 0x0 ++int attr actualImageResource 0x0 ++int attr actualImageScaleType 0x0 ++int attr actualImageUri 0x0 ++int attr alertDialogButtonGroupStyle 0x0 ++int attr alertDialogCenterButtons 0x0 ++int attr alertDialogStyle 0x0 ++int attr alertDialogTheme 0x0 ++int attr allowStacking 0x0 ++int attr alpha 0x0 ++int attr alphabeticModifiers 0x0 ++int attr arrowHeadLength 0x0 ++int attr arrowShaftLength 0x0 ++int attr autoCompleteTextViewStyle 0x0 ++int attr autoSizeMaxTextSize 0x0 ++int attr autoSizeMinTextSize 0x0 ++int attr autoSizePresetSizes 0x0 ++int attr autoSizeStepGranularity 0x0 ++int attr autoSizeTextType 0x0 ++int attr autofillInlineSuggestionChip 0x0 ++int attr autofillInlineSuggestionEndIconStyle 0x0 ++int attr autofillInlineSuggestionStartIconStyle 0x0 ++int attr autofillInlineSuggestionSubtitle 0x0 ++int attr autofillInlineSuggestionTitle 0x0 ++int attr background 0x0 ++int attr backgroundImage 0x0 ++int attr backgroundSplit 0x0 ++int attr backgroundStacked 0x0 ++int attr backgroundTint 0x0 ++int attr backgroundTintMode 0x0 ++int attr barLength 0x0 ++int attr borderlessButtonStyle 0x0 ++int attr buttonBarButtonStyle 0x0 ++int attr buttonBarNegativeButtonStyle 0x0 ++int attr buttonBarNeutralButtonStyle 0x0 ++int attr buttonBarPositiveButtonStyle 0x0 ++int attr buttonBarStyle 0x0 ++int attr buttonCompat 0x0 ++int attr buttonGravity 0x0 ++int attr buttonIconDimen 0x0 ++int attr buttonPanelSideLayout 0x0 ++int attr buttonSize 0x0 ++int attr buttonStyle 0x0 ++int attr buttonStyleSmall 0x0 ++int attr buttonTint 0x0 ++int attr buttonTintMode 0x0 ++int attr checkMarkCompat 0x0 ++int attr checkMarkTint 0x0 ++int attr checkMarkTintMode 0x0 ++int attr checkboxStyle 0x0 ++int attr checkedTextViewStyle 0x0 ++int attr circleCrop 0x0 ++int attr closeIcon 0x0 ++int attr closeItemLayout 0x0 ++int attr collapseContentDescription 0x0 ++int attr collapseIcon 0x0 ++int attr color 0x0 ++int attr colorAccent 0x0 ++int attr colorBackgroundFloating 0x0 ++int attr colorButtonNormal 0x0 ++int attr colorControlActivated 0x0 ++int attr colorControlHighlight 0x0 ++int attr colorControlNormal 0x0 ++int attr colorError 0x0 ++int attr colorPrimary 0x0 ++int attr colorPrimaryDark 0x0 ++int attr colorScheme 0x0 ++int attr colorSwitchThumbNormal 0x0 ++int attr commitIcon 0x0 ++int attr contentDescription 0x0 ++int attr contentInsetEnd 0x0 ++int attr contentInsetEndWithActions 0x0 ++int attr contentInsetLeft 0x0 ++int attr contentInsetRight 0x0 ++int attr contentInsetStart 0x0 ++int attr contentInsetStartWithNavigation 0x0 ++int attr controlBackground 0x0 ++int attr coordinatorLayoutStyle 0x0 ++int attr customNavigationLayout 0x0 ++int attr defaultQueryHint 0x0 ++int attr dialogCornerRadius 0x0 ++int attr dialogPreferredPadding 0x0 ++int attr dialogTheme 0x0 ++int attr displayOptions 0x0 ++int attr divider 0x0 ++int attr dividerHorizontal 0x0 ++int attr dividerPadding 0x0 ++int attr dividerVertical 0x0 ++int attr drawableBottomCompat 0x0 ++int attr drawableEndCompat 0x0 ++int attr drawableLeftCompat 0x0 ++int attr drawableRightCompat 0x0 ++int attr drawableSize 0x0 ++int attr drawableStartCompat 0x0 ++int attr drawableTint 0x0 ++int attr drawableTintMode 0x0 ++int attr drawableTopCompat 0x0 ++int attr drawerArrowStyle 0x0 ++int attr dropDownListViewStyle 0x0 ++int attr dropdownListPreferredItemHeight 0x0 ++int attr editTextBackground 0x0 ++int attr editTextColor 0x0 ++int attr editTextStyle 0x0 ++int attr elevation 0x0 ++int attr emojiCompatEnabled 0x0 ++int attr expandActivityOverflowButtonDrawable 0x0 ++int attr fadeDuration 0x0 ++int attr failureImage 0x0 ++int attr failureImageScaleType 0x0 ++int attr firstBaselineToTopHeight 0x0 ++int attr font 0x0 ++int attr fontFamily 0x0 ++int attr fontProviderAuthority 0x0 ++int attr fontProviderCerts 0x0 ++int attr fontProviderFetchStrategy 0x0 ++int attr fontProviderFetchTimeout 0x0 ++int attr fontProviderPackage 0x0 ++int attr fontProviderQuery 0x0 ++int attr fontProviderSystemFontFamily 0x0 ++int attr fontStyle 0x0 ++int attr fontVariationSettings 0x0 ++int attr fontWeight 0x0 ++int attr gapBetweenBars 0x0 ++int attr goIcon 0x0 ++int attr height 0x0 ++int attr hideOnContentScroll 0x0 ++int attr homeAsUpIndicator 0x0 ++int attr homeLayout 0x0 ++int attr icon 0x0 ++int attr iconTint 0x0 ++int attr iconTintMode 0x0 ++int attr iconifiedByDefault 0x0 ++int attr imageAspectRatio 0x0 ++int attr imageAspectRatioAdjust 0x0 ++int attr imageButtonStyle 0x0 ++int attr indeterminateProgressStyle 0x0 ++int attr initialActivityCount 0x0 ++int attr isAutofillInlineSuggestionTheme 0x0 ++int attr isLightTheme 0x0 ++int attr itemPadding 0x0 ++int attr keylines 0x0 ++int attr lStar 0x0 ++int attr lastBaselineToBottomHeight 0x0 ++int attr layout 0x0 ++int attr layout_anchor 0x0 ++int attr layout_anchorGravity 0x0 ++int attr layout_behavior 0x0 ++int attr layout_dodgeInsetEdges 0x0 ++int attr layout_insetEdge 0x0 ++int attr layout_keyline 0x0 ++int attr lineHeight 0x0 ++int attr listChoiceBackgroundIndicator 0x0 ++int attr listChoiceIndicatorMultipleAnimated 0x0 ++int attr listChoiceIndicatorSingleAnimated 0x0 ++int attr listDividerAlertDialog 0x0 ++int attr listItemLayout 0x0 ++int attr listLayout 0x0 ++int attr listMenuViewStyle 0x0 ++int attr listPopupWindowStyle 0x0 ++int attr listPreferredItemHeight 0x0 ++int attr listPreferredItemHeightLarge 0x0 ++int attr listPreferredItemHeightSmall 0x0 ++int attr listPreferredItemPaddingEnd 0x0 ++int attr listPreferredItemPaddingLeft 0x0 ++int attr listPreferredItemPaddingRight 0x0 ++int attr listPreferredItemPaddingStart 0x0 ++int attr logo 0x0 ++int attr logoDescription 0x0 ++int attr mapbox_attributionClickable 0x0 ++int attr mapbox_attributionEnabled 0x0 ++int attr mapbox_attributionGravity 0x0 ++int attr mapbox_attributionIconColor 0x0 ++int attr mapbox_attributionMarginBottom 0x0 ++int attr mapbox_attributionMarginLeft 0x0 ++int attr mapbox_attributionMarginRight 0x0 ++int attr mapbox_attributionMarginTop 0x0 ++int attr mapbox_cameraAnchorX 0x0 ++int attr mapbox_cameraAnchorY 0x0 ++int attr mapbox_cameraBearing 0x0 ++int attr mapbox_cameraPaddingBottom 0x0 ++int attr mapbox_cameraPaddingLeft 0x0 ++int attr mapbox_cameraPaddingRight 0x0 ++int attr mapbox_cameraPaddingTop 0x0 ++int attr mapbox_cameraPitch 0x0 ++int attr mapbox_cameraTargetLat 0x0 ++int attr mapbox_cameraTargetLng 0x0 ++int attr mapbox_cameraZoom 0x0 ++int attr mapbox_compassClickable 0x0 ++int attr mapbox_compassEnabled 0x0 ++int attr mapbox_compassFadeWhenFacingNorth 0x0 ++int attr mapbox_compassGravity 0x0 ++int attr mapbox_compassImage 0x0 ++int attr mapbox_compassMarginBottom 0x0 ++int attr mapbox_compassMarginLeft 0x0 ++int attr mapbox_compassMarginRight 0x0 ++int attr mapbox_compassMarginTop 0x0 ++int attr mapbox_compassOpacity 0x0 ++int attr mapbox_compassRotation 0x0 ++int attr mapbox_compassVisibility 0x0 ++int attr mapbox_gesturesDoubleTapToZoomInEnabled 0x0 ++int attr mapbox_gesturesDoubleTouchToZoomOutEnabled 0x0 ++int attr mapbox_gesturesFocalPointX 0x0 ++int attr mapbox_gesturesFocalPointY 0x0 ++int attr mapbox_gesturesIncreasePinchToZoomThresholdWhenRotating 0x0 ++int attr mapbox_gesturesIncreaseRotateThresholdWhenPinchingToZoom 0x0 ++int attr mapbox_gesturesPinchScrollEnabled 0x0 ++int attr mapbox_gesturesPinchToZoomDecelerationEnabled 0x0 ++int attr mapbox_gesturesPinchToZoomEnabled 0x0 ++int attr mapbox_gesturesPitchEnabled 0x0 ++int attr mapbox_gesturesQuickZoomEnabled 0x0 ++int attr mapbox_gesturesRotateDecelerationEnabled 0x0 ++int attr mapbox_gesturesRotateEnabled 0x0 ++int attr mapbox_gesturesScrollDecelerationEnabled 0x0 ++int attr mapbox_gesturesScrollEnabled 0x0 ++int attr mapbox_gesturesScrollMode 0x0 ++int attr mapbox_gesturesSimultaneousRotateAndPinchToZoomEnabled 0x0 ++int attr mapbox_gesturesZoomAnimationAmount 0x0 ++int attr mapbox_locationComponentAccuracyRingBorderColor 0x0 ++int attr mapbox_locationComponentAccuracyRingColor 0x0 ++int attr mapbox_locationComponentEnabled 0x0 ++int attr mapbox_locationComponentLayerAbove 0x0 ++int attr mapbox_locationComponentLayerBelow 0x0 ++int attr mapbox_locationComponentLocationPuck 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck2DBearingImage 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck2DOpacity 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck2DScaleExpression 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck2DShadowImage 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck2DTopImage 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelOpacity 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_x 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_y 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_z 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelScaleExpression 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_x 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_y 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_z 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lat 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lon 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_z 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DModelUri 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DPosition_lat 0x0 ++int attr mapbox_locationComponentLocationPuckLocationPuck3DPosition_lon 0x0 ++int attr mapbox_locationComponentPuckBearingEnabled 0x0 ++int attr mapbox_locationComponentPuckBearingSource 0x0 ++int attr mapbox_locationComponentPulsingColor 0x0 ++int attr mapbox_locationComponentPulsingEnabled 0x0 ++int attr mapbox_locationComponentPulsingMaxRadius 0x0 ++int attr mapbox_locationComponentShowAccuracyRing 0x0 ++int attr mapbox_logoEnabled 0x0 ++int attr mapbox_logoGravity 0x0 ++int attr mapbox_logoMarginBottom 0x0 ++int attr mapbox_logoMarginLeft 0x0 ++int attr mapbox_logoMarginRight 0x0 ++int attr mapbox_logoMarginTop 0x0 ++int attr mapbox_mapAntialiasingSampleCount 0x0 ++int attr mapbox_mapConstrainMode 0x0 ++int attr mapbox_mapContextMode 0x0 ++int attr mapbox_mapCrossSourceCollisionsEnabled 0x0 ++int attr mapbox_mapFontFamily 0x0 ++int attr mapbox_mapGlyphRasterizationMode 0x0 ++int attr mapbox_mapOrientation 0x0 ++int attr mapbox_mapPixelRatio 0x0 ++int attr mapbox_mapSurface 0x0 ++int attr mapbox_mapViewportMode 0x0 ++int attr mapbox_optimizeForTerrainEnabled 0x0 ++int attr mapbox_resourcesAccessToken 0x0 ++int attr mapbox_resourcesBaseUrl 0x0 ++int attr mapbox_scaleBarBorderWidth 0x0 ++int attr mapbox_scaleBarEnabled 0x0 ++int attr mapbox_scaleBarGravity 0x0 ++int attr mapbox_scaleBarHeight 0x0 ++int attr mapbox_scaleBarIsMetricUnits 0x0 ++int attr mapbox_scaleBarMarginBottom 0x0 ++int attr mapbox_scaleBarMarginLeft 0x0 ++int attr mapbox_scaleBarMarginRight 0x0 ++int attr mapbox_scaleBarMarginTop 0x0 ++int attr mapbox_scaleBarPrimaryColor 0x0 ++int attr mapbox_scaleBarRatio 0x0 ++int attr mapbox_scaleBarRefreshInterval 0x0 ++int attr mapbox_scaleBarSecondaryColor 0x0 ++int attr mapbox_scaleBarShowTextBorder 0x0 ++int attr mapbox_scaleBarTextBarMargin 0x0 ++int attr mapbox_scaleBarTextBorderWidth 0x0 ++int attr mapbox_scaleBarTextColor 0x0 ++int attr mapbox_scaleBarTextSize 0x0 ++int attr mapbox_scaleBarUseContinuousRendering 0x0 ++int attr mapbox_styleUri 0x0 ++int attr maxButtonHeight 0x0 ++int attr measureWithLargestChild 0x0 ++int attr menu 0x0 ++int attr multiChoiceItemLayout 0x0 ++int attr navigationContentDescription 0x0 ++int attr navigationIcon 0x0 ++int attr navigationMode 0x0 ++int attr nestedScrollViewStyle 0x0 ++int attr numericModifiers 0x0 ++int attr overlapAnchor 0x0 ++int attr overlayImage 0x0 ++int attr paddingBottomNoButtons 0x0 ++int attr paddingEnd 0x0 ++int attr paddingStart 0x0 ++int attr paddingTopNoTitle 0x0 ++int attr panelBackground 0x0 ++int attr panelMenuListTheme 0x0 ++int attr panelMenuListWidth 0x0 ++int attr placeholderImage 0x0 ++int attr placeholderImageScaleType 0x0 ++int attr popupMenuStyle 0x0 ++int attr popupTheme 0x0 ++int attr popupWindowStyle 0x0 ++int attr preserveIconSpacing 0x0 ++int attr pressedStateOverlayImage 0x0 ++int attr progressBarAutoRotateInterval 0x0 ++int attr progressBarImage 0x0 ++int attr progressBarImageScaleType 0x0 ++int attr progressBarPadding 0x0 ++int attr progressBarStyle 0x0 ++int attr queryBackground 0x0 ++int attr queryHint 0x0 ++int attr queryPatterns 0x0 ++int attr radioButtonStyle 0x0 ++int attr ratingBarStyle 0x0 ++int attr ratingBarStyleIndicator 0x0 ++int attr ratingBarStyleSmall 0x0 ++int attr retryImage 0x0 ++int attr retryImageScaleType 0x0 ++int attr roundAsCircle 0x0 ++int attr roundBottomEnd 0x0 ++int attr roundBottomLeft 0x0 ++int attr roundBottomRight 0x0 ++int attr roundBottomStart 0x0 ++int attr roundTopEnd 0x0 ++int attr roundTopLeft 0x0 ++int attr roundTopRight 0x0 ++int attr roundTopStart 0x0 ++int attr roundWithOverlayColor 0x0 ++int attr roundedCornerRadius 0x0 ++int attr roundingBorderColor 0x0 ++int attr roundingBorderPadding 0x0 ++int attr roundingBorderWidth 0x0 ++int attr scopeUris 0x0 ++int attr searchHintIcon 0x0 ++int attr searchIcon 0x0 ++int attr searchViewStyle 0x0 ++int attr seekBarStyle 0x0 ++int attr selectableItemBackground 0x0 ++int attr selectableItemBackgroundBorderless 0x0 ++int attr shortcutMatchRequired 0x0 ++int attr showAsAction 0x0 ++int attr showDividers 0x0 ++int attr showText 0x0 ++int attr showTitle 0x0 ++int attr singleChoiceItemLayout 0x0 ++int attr spinBars 0x0 ++int attr spinnerDropDownItemStyle 0x0 ++int attr spinnerStyle 0x0 ++int attr splitTrack 0x0 ++int attr srcCompat 0x0 ++int attr state_above_anchor 0x0 ++int attr statusBarBackground 0x0 ++int attr subMenuArrow 0x0 ++int attr submitBackground 0x0 ++int attr subtitle 0x0 ++int attr subtitleTextAppearance 0x0 ++int attr subtitleTextColor 0x0 ++int attr subtitleTextStyle 0x0 ++int attr suggestionRowLayout 0x0 ++int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 ++int attr switchMinWidth 0x0 ++int attr switchPadding 0x0 ++int attr switchStyle 0x0 ++int attr switchTextAppearance 0x0 ++int attr textAllCaps 0x0 ++int attr textAppearanceLargePopupMenu 0x0 ++int attr textAppearanceListItem 0x0 ++int attr textAppearanceListItemSecondary 0x0 ++int attr textAppearanceListItemSmall 0x0 ++int attr textAppearancePopupMenuHeader 0x0 ++int attr textAppearanceSearchResultSubtitle 0x0 ++int attr textAppearanceSearchResultTitle 0x0 ++int attr textAppearanceSmallPopupMenu 0x0 ++int attr textColorAlertDialogListItem 0x0 ++int attr textColorSearchUrl 0x0 ++int attr textLocale 0x0 ++int attr theme 0x0 ++int attr thickness 0x0 ++int attr thumbTextPadding 0x0 ++int attr thumbTint 0x0 ++int attr thumbTintMode 0x0 ++int attr tickMark 0x0 ++int attr tickMarkTint 0x0 ++int attr tickMarkTintMode 0x0 ++int attr tint 0x0 ++int attr tintMode 0x0 ++int attr title 0x0 ++int attr titleMargin 0x0 ++int attr titleMarginBottom 0x0 ++int attr titleMarginEnd 0x0 ++int attr titleMarginStart 0x0 ++int attr titleMarginTop 0x0 ++int attr titleMargins 0x0 ++int attr titleTextAppearance 0x0 ++int attr titleTextColor 0x0 ++int attr titleTextStyle 0x0 ++int attr toolbarNavigationButtonStyle 0x0 ++int attr toolbarStyle 0x0 ++int attr tooltipForegroundColor 0x0 ++int attr tooltipFrameBackground 0x0 ++int attr tooltipText 0x0 ++int attr track 0x0 ++int attr trackTint 0x0 ++int attr trackTintMode 0x0 ++int attr ttcIndex 0x0 ++int attr viewAspectRatio 0x0 ++int attr viewInflaterClass 0x0 ++int attr voiceIcon 0x0 ++int attr windowActionBar 0x0 ++int attr windowActionBarOverlay 0x0 ++int attr windowActionModeOverlay 0x0 ++int attr windowFixedHeightMajor 0x0 ++int attr windowFixedHeightMinor 0x0 ++int attr windowFixedWidthMajor 0x0 ++int attr windowFixedWidthMinor 0x0 ++int attr windowMinWidthMajor 0x0 ++int attr windowMinWidthMinor 0x0 ++int attr windowNoTitle 0x0 ++int bool abc_action_bar_embed_tabs 0x0 ++int bool abc_config_actionMenuItemAllCaps 0x0 ++int color abc_background_cache_hint_selector_material_dark 0x0 ++int color abc_background_cache_hint_selector_material_light 0x0 ++int color abc_btn_colored_borderless_text_material 0x0 ++int color abc_btn_colored_text_material 0x0 ++int color abc_color_highlight_material 0x0 ++int color abc_decor_view_status_guard 0x0 ++int color abc_decor_view_status_guard_light 0x0 ++int color abc_hint_foreground_material_dark 0x0 ++int color abc_hint_foreground_material_light 0x0 ++int color abc_primary_text_disable_only_material_dark 0x0 ++int color abc_primary_text_disable_only_material_light 0x0 ++int color abc_primary_text_material_dark 0x0 ++int color abc_primary_text_material_light 0x0 ++int color abc_search_url_text 0x0 ++int color abc_search_url_text_normal 0x0 ++int color abc_search_url_text_pressed 0x0 ++int color abc_search_url_text_selected 0x0 ++int color abc_secondary_text_material_dark 0x0 ++int color abc_secondary_text_material_light 0x0 ++int color abc_tint_btn_checkable 0x0 ++int color abc_tint_default 0x0 ++int color abc_tint_edittext 0x0 ++int color abc_tint_seek_thumb 0x0 ++int color abc_tint_spinner 0x0 ++int color abc_tint_switch_track 0x0 ++int color accent_material_dark 0x0 ++int color accent_material_light 0x0 ++int color androidx_core_ripple_material_light 0x0 ++int color androidx_core_secondary_text_default_material_light 0x0 ++int color background_floating_material_dark 0x0 ++int color background_floating_material_light 0x0 ++int color background_material_dark 0x0 ++int color background_material_light 0x0 ++int color bright_foreground_disabled_material_dark 0x0 ++int color bright_foreground_disabled_material_light 0x0 ++int color bright_foreground_inverse_material_dark 0x0 ++int color bright_foreground_inverse_material_light 0x0 ++int color bright_foreground_material_dark 0x0 ++int color bright_foreground_material_light 0x0 ++int color button_material_dark 0x0 ++int color button_material_light 0x0 ++int color call_notification_answer_color 0x0 ++int color call_notification_decline_color 0x0 ++int color catalyst_logbox_background 0x0 ++int color catalyst_redbox_background 0x0 ++int color common_google_signin_btn_text_dark 0x0 ++int color common_google_signin_btn_text_dark_default 0x0 ++int color common_google_signin_btn_text_dark_disabled 0x0 ++int color common_google_signin_btn_text_dark_focused 0x0 ++int color common_google_signin_btn_text_dark_pressed 0x0 ++int color common_google_signin_btn_text_light 0x0 ++int color common_google_signin_btn_text_light_default 0x0 ++int color common_google_signin_btn_text_light_disabled 0x0 ++int color common_google_signin_btn_text_light_focused 0x0 ++int color common_google_signin_btn_text_light_pressed 0x0 ++int color common_google_signin_btn_tint 0x0 ++int color dim_foreground_disabled_material_dark 0x0 ++int color dim_foreground_disabled_material_light 0x0 ++int color dim_foreground_material_dark 0x0 ++int color dim_foreground_material_light 0x0 ++int color error_color_material_dark 0x0 ++int color error_color_material_light 0x0 ++int color foreground_material_dark 0x0 ++int color foreground_material_light 0x0 ++int color highlighted_text_material_dark 0x0 ++int color highlighted_text_material_light 0x0 ++int color mapbox_blue 0x0 ++int color mapbox_gray 0x0 ++int color mapbox_gray_dark 0x0 ++int color mapbox_location_layer_blue 0x0 ++int color mapbox_location_layer_gray 0x0 ++int color material_blue_grey_800 0x0 ++int color material_blue_grey_900 0x0 ++int color material_blue_grey_950 0x0 ++int color material_deep_teal_200 0x0 ++int color material_deep_teal_500 0x0 ++int color material_grey_100 0x0 ++int color material_grey_300 0x0 ++int color material_grey_50 0x0 ++int color material_grey_600 0x0 ++int color material_grey_800 0x0 ++int color material_grey_850 0x0 ++int color material_grey_900 0x0 ++int color notification_action_color_filter 0x0 ++int color notification_icon_bg_color 0x0 ++int color primary_dark_material_dark 0x0 ++int color primary_dark_material_light 0x0 ++int color primary_material_dark 0x0 ++int color primary_material_light 0x0 ++int color primary_text_default_material_dark 0x0 ++int color primary_text_default_material_light 0x0 ++int color primary_text_disabled_material_dark 0x0 ++int color primary_text_disabled_material_light 0x0 ++int color ripple_material_dark 0x0 ++int color ripple_material_light 0x0 ++int color secondary_text_default_material_dark 0x0 ++int color secondary_text_default_material_light 0x0 ++int color secondary_text_disabled_material_dark 0x0 ++int color secondary_text_disabled_material_light 0x0 ++int color switch_thumb_disabled_material_dark 0x0 ++int color switch_thumb_disabled_material_light 0x0 ++int color switch_thumb_material_dark 0x0 ++int color switch_thumb_material_light 0x0 ++int color switch_thumb_normal_material_dark 0x0 ++int color switch_thumb_normal_material_light 0x0 ++int color tooltip_background_dark 0x0 ++int color tooltip_background_light 0x0 ++int dimen abc_action_bar_content_inset_material 0x0 ++int dimen abc_action_bar_content_inset_with_nav 0x0 ++int dimen abc_action_bar_default_height_material 0x0 ++int dimen abc_action_bar_default_padding_end_material 0x0 ++int dimen abc_action_bar_default_padding_start_material 0x0 ++int dimen abc_action_bar_elevation_material 0x0 ++int dimen abc_action_bar_icon_vertical_padding_material 0x0 ++int dimen abc_action_bar_overflow_padding_end_material 0x0 ++int dimen abc_action_bar_overflow_padding_start_material 0x0 ++int dimen abc_action_bar_stacked_max_height 0x0 ++int dimen abc_action_bar_stacked_tab_max_width 0x0 ++int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 ++int dimen abc_action_bar_subtitle_top_margin_material 0x0 ++int dimen abc_action_button_min_height_material 0x0 ++int dimen abc_action_button_min_width_material 0x0 ++int dimen abc_action_button_min_width_overflow_material 0x0 ++int dimen abc_alert_dialog_button_bar_height 0x0 ++int dimen abc_alert_dialog_button_dimen 0x0 ++int dimen abc_button_inset_horizontal_material 0x0 ++int dimen abc_button_inset_vertical_material 0x0 ++int dimen abc_button_padding_horizontal_material 0x0 ++int dimen abc_button_padding_vertical_material 0x0 ++int dimen abc_cascading_menus_min_smallest_width 0x0 ++int dimen abc_config_prefDialogWidth 0x0 ++int dimen abc_control_corner_material 0x0 ++int dimen abc_control_inset_material 0x0 ++int dimen abc_control_padding_material 0x0 ++int dimen abc_dialog_corner_radius_material 0x0 ++int dimen abc_dialog_fixed_height_major 0x0 ++int dimen abc_dialog_fixed_height_minor 0x0 ++int dimen abc_dialog_fixed_width_major 0x0 ++int dimen abc_dialog_fixed_width_minor 0x0 ++int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 ++int dimen abc_dialog_list_padding_top_no_title 0x0 ++int dimen abc_dialog_min_width_major 0x0 ++int dimen abc_dialog_min_width_minor 0x0 ++int dimen abc_dialog_padding_material 0x0 ++int dimen abc_dialog_padding_top_material 0x0 ++int dimen abc_dialog_title_divider_material 0x0 ++int dimen abc_disabled_alpha_material_dark 0x0 ++int dimen abc_disabled_alpha_material_light 0x0 ++int dimen abc_dropdownitem_icon_width 0x0 ++int dimen abc_dropdownitem_text_padding_left 0x0 ++int dimen abc_dropdownitem_text_padding_right 0x0 ++int dimen abc_edit_text_inset_bottom_material 0x0 ++int dimen abc_edit_text_inset_horizontal_material 0x0 ++int dimen abc_edit_text_inset_top_material 0x0 ++int dimen abc_floating_window_z 0x0 ++int dimen abc_list_item_height_large_material 0x0 ++int dimen abc_list_item_height_material 0x0 ++int dimen abc_list_item_height_small_material 0x0 ++int dimen abc_list_item_padding_horizontal_material 0x0 ++int dimen abc_panel_menu_list_width 0x0 ++int dimen abc_progress_bar_height_material 0x0 ++int dimen abc_search_view_preferred_height 0x0 ++int dimen abc_search_view_preferred_width 0x0 ++int dimen abc_seekbar_track_background_height_material 0x0 ++int dimen abc_seekbar_track_progress_height_material 0x0 ++int dimen abc_select_dialog_padding_start_material 0x0 ++int dimen abc_star_big 0x0 ++int dimen abc_star_medium 0x0 ++int dimen abc_star_small 0x0 ++int dimen abc_switch_padding 0x0 ++int dimen abc_text_size_body_1_material 0x0 ++int dimen abc_text_size_body_2_material 0x0 ++int dimen abc_text_size_button_material 0x0 ++int dimen abc_text_size_caption_material 0x0 ++int dimen abc_text_size_display_1_material 0x0 ++int dimen abc_text_size_display_2_material 0x0 ++int dimen abc_text_size_display_3_material 0x0 ++int dimen abc_text_size_display_4_material 0x0 ++int dimen abc_text_size_headline_material 0x0 ++int dimen abc_text_size_large_material 0x0 ++int dimen abc_text_size_medium_material 0x0 ++int dimen abc_text_size_menu_header_material 0x0 ++int dimen abc_text_size_menu_material 0x0 ++int dimen abc_text_size_small_material 0x0 ++int dimen abc_text_size_subhead_material 0x0 ++int dimen abc_text_size_subtitle_material_toolbar 0x0 ++int dimen abc_text_size_title_material 0x0 ++int dimen abc_text_size_title_material_toolbar 0x0 ++int dimen autofill_inline_suggestion_icon_size 0x0 ++int dimen compass_view_size 0x0 ++int dimen compat_button_inset_horizontal_material 0x0 ++int dimen compat_button_inset_vertical_material 0x0 ++int dimen compat_button_padding_horizontal_material 0x0 ++int dimen compat_button_padding_vertical_material 0x0 ++int dimen compat_control_corner_material 0x0 ++int dimen compat_notification_large_icon_max_height 0x0 ++int dimen compat_notification_large_icon_max_width 0x0 ++int dimen disabled_alpha_material_dark 0x0 ++int dimen disabled_alpha_material_light 0x0 ++int dimen highlight_alpha_material_colored 0x0 ++int dimen highlight_alpha_material_dark 0x0 ++int dimen highlight_alpha_material_light 0x0 ++int dimen hint_alpha_material_dark 0x0 ++int dimen hint_alpha_material_light 0x0 ++int dimen hint_pressed_alpha_material_dark 0x0 ++int dimen hint_pressed_alpha_material_light 0x0 ++int dimen mapbox_angular_velocity_multiplier 0x0 ++int dimen mapbox_defaultMultiTapMovementThreshold 0x0 ++int dimen mapbox_defaultScaleSpanSinceStartThreshold 0x0 ++int dimen mapbox_defaultShovePixelThreshold 0x0 ++int dimen mapbox_density_constant 0x0 ++int dimen mapbox_internalMinSpan23 0x0 ++int dimen mapbox_internalMinSpan24 0x0 ++int dimen mapbox_locationComponentTrackingInitialMoveThreshold 0x0 ++int dimen mapbox_locationComponentTrackingMultiFingerMoveThreshold 0x0 ++int dimen mapbox_minimum_angled_scale_speed 0x0 ++int dimen mapbox_minimum_angular_velocity 0x0 ++int dimen mapbox_minimum_scale_span_when_rotating 0x0 ++int dimen mapbox_minimum_scale_speed 0x0 ++int dimen mapbox_minimum_scale_velocity 0x0 ++int dimen mapbox_my_locationview_outer_circle 0x0 ++int dimen notification_action_icon_size 0x0 ++int dimen notification_action_text_size 0x0 ++int dimen notification_big_circle_margin 0x0 ++int dimen notification_content_margin_start 0x0 ++int dimen notification_large_icon_height 0x0 ++int dimen notification_large_icon_width 0x0 ++int dimen notification_main_column_padding_top 0x0 ++int dimen notification_media_narrow_margin 0x0 ++int dimen notification_right_icon_size 0x0 ++int dimen notification_right_side_padding_top 0x0 ++int dimen notification_small_icon_background_padding 0x0 ++int dimen notification_small_icon_size_as_large 0x0 ++int dimen notification_subtext_size 0x0 ++int dimen notification_top_pad 0x0 ++int dimen notification_top_pad_large_text 0x0 ++int dimen tooltip_corner_radius 0x0 ++int dimen tooltip_horizontal_padding 0x0 ++int dimen tooltip_margin 0x0 ++int dimen tooltip_precise_anchor_extra_offset 0x0 ++int dimen tooltip_precise_anchor_threshold 0x0 ++int dimen tooltip_vertical_padding 0x0 ++int dimen tooltip_y_offset_non_touch 0x0 ++int dimen tooltip_y_offset_touch 0x0 ++int drawable abc_ab_share_pack_mtrl_alpha 0x0 ++int drawable abc_action_bar_item_background_material 0x0 ++int drawable abc_btn_borderless_material 0x0 ++int drawable abc_btn_check_material 0x0 ++int drawable abc_btn_check_material_anim 0x0 ++int drawable abc_btn_check_to_on_mtrl_000 0x0 ++int drawable abc_btn_check_to_on_mtrl_015 0x0 ++int drawable abc_btn_colored_material 0x0 ++int drawable abc_btn_default_mtrl_shape 0x0 ++int drawable abc_btn_radio_material 0x0 ++int drawable abc_btn_radio_material_anim 0x0 ++int drawable abc_btn_radio_to_on_mtrl_000 0x0 ++int drawable abc_btn_radio_to_on_mtrl_015 0x0 ++int drawable abc_btn_switch_to_on_mtrl_00001 0x0 ++int drawable abc_btn_switch_to_on_mtrl_00012 0x0 ++int drawable abc_cab_background_internal_bg 0x0 ++int drawable abc_cab_background_top_material 0x0 ++int drawable abc_cab_background_top_mtrl_alpha 0x0 ++int drawable abc_control_background_material 0x0 ++int drawable abc_dialog_material_background 0x0 ++int drawable abc_edit_text_material 0x0 ++int drawable abc_ic_ab_back_material 0x0 ++int drawable abc_ic_arrow_drop_right_black_24dp 0x0 ++int drawable abc_ic_clear_material 0x0 ++int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 ++int drawable abc_ic_go_search_api_material 0x0 ++int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 ++int drawable abc_ic_menu_cut_mtrl_alpha 0x0 ++int drawable abc_ic_menu_overflow_material 0x0 ++int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 ++int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 ++int drawable abc_ic_menu_share_mtrl_alpha 0x0 ++int drawable abc_ic_search_api_material 0x0 ++int drawable abc_ic_voice_search_api_material 0x0 ++int drawable abc_item_background_holo_dark 0x0 ++int drawable abc_item_background_holo_light 0x0 ++int drawable abc_list_divider_material 0x0 ++int drawable abc_list_divider_mtrl_alpha 0x0 ++int drawable abc_list_focused_holo 0x0 ++int drawable abc_list_longpressed_holo 0x0 ++int drawable abc_list_pressed_holo_dark 0x0 ++int drawable abc_list_pressed_holo_light 0x0 ++int drawable abc_list_selector_background_transition_holo_dark 0x0 ++int drawable abc_list_selector_background_transition_holo_light 0x0 ++int drawable abc_list_selector_disabled_holo_dark 0x0 ++int drawable abc_list_selector_disabled_holo_light 0x0 ++int drawable abc_list_selector_holo_dark 0x0 ++int drawable abc_list_selector_holo_light 0x0 ++int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 ++int drawable abc_popup_background_mtrl_mult 0x0 ++int drawable abc_ratingbar_indicator_material 0x0 ++int drawable abc_ratingbar_material 0x0 ++int drawable abc_ratingbar_small_material 0x0 ++int drawable abc_scrubber_control_off_mtrl_alpha 0x0 ++int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 ++int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 ++int drawable abc_scrubber_primary_mtrl_alpha 0x0 ++int drawable abc_scrubber_track_mtrl_alpha 0x0 ++int drawable abc_seekbar_thumb_material 0x0 ++int drawable abc_seekbar_tick_mark_material 0x0 ++int drawable abc_seekbar_track_material 0x0 ++int drawable abc_spinner_mtrl_am_alpha 0x0 ++int drawable abc_spinner_textfield_background_material 0x0 ++int drawable abc_star_black_48dp 0x0 ++int drawable abc_star_half_black_48dp 0x0 ++int drawable abc_switch_thumb_material 0x0 ++int drawable abc_switch_track_mtrl_alpha 0x0 ++int drawable abc_tab_indicator_material 0x0 ++int drawable abc_tab_indicator_mtrl_alpha 0x0 ++int drawable abc_text_cursor_material 0x0 ++int drawable abc_text_select_handle_left_mtrl 0x0 ++int drawable abc_text_select_handle_middle_mtrl 0x0 ++int drawable abc_text_select_handle_right_mtrl 0x0 ++int drawable abc_textfield_activated_mtrl_alpha 0x0 ++int drawable abc_textfield_default_mtrl_alpha 0x0 ++int drawable abc_textfield_search_activated_mtrl_alpha 0x0 ++int drawable abc_textfield_search_default_mtrl_alpha 0x0 ++int drawable abc_textfield_search_material 0x0 ++int drawable abc_vector_test 0x0 ++int drawable autofill_inline_suggestion_chip_background 0x0 ++int drawable btn_checkbox_checked_mtrl 0x0 ++int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 ++int drawable btn_checkbox_unchecked_mtrl 0x0 ++int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 ++int drawable btn_radio_off_mtrl 0x0 ++int drawable btn_radio_off_to_on_mtrl_animation 0x0 ++int drawable btn_radio_on_mtrl 0x0 ++int drawable btn_radio_on_to_off_mtrl_animation 0x0 ++int drawable common_full_open_on_phone 0x0 ++int drawable common_google_signin_btn_icon_dark 0x0 ++int drawable common_google_signin_btn_icon_dark_focused 0x0 ++int drawable common_google_signin_btn_icon_dark_normal 0x0 ++int drawable common_google_signin_btn_icon_dark_normal_background 0x0 ++int drawable common_google_signin_btn_icon_disabled 0x0 ++int drawable common_google_signin_btn_icon_light 0x0 ++int drawable common_google_signin_btn_icon_light_focused 0x0 ++int drawable common_google_signin_btn_icon_light_normal 0x0 ++int drawable common_google_signin_btn_icon_light_normal_background 0x0 ++int drawable common_google_signin_btn_text_dark 0x0 ++int drawable common_google_signin_btn_text_dark_focused 0x0 ++int drawable common_google_signin_btn_text_dark_normal 0x0 ++int drawable common_google_signin_btn_text_dark_normal_background 0x0 ++int drawable common_google_signin_btn_text_disabled 0x0 ++int drawable common_google_signin_btn_text_light 0x0 ++int drawable common_google_signin_btn_text_light_focused 0x0 ++int drawable common_google_signin_btn_text_light_normal 0x0 ++int drawable common_google_signin_btn_text_light_normal_background 0x0 ++int drawable empty 0x0 ++int drawable empty_drawable 0x0 ++int drawable googleg_disabled_color_18 0x0 ++int drawable googleg_standard_color_18 0x0 ++int drawable ic_call_answer 0x0 ++int drawable ic_call_answer_low 0x0 ++int drawable ic_call_answer_video 0x0 ++int drawable ic_call_answer_video_low 0x0 ++int drawable ic_call_decline 0x0 ++int drawable ic_call_decline_low 0x0 ++int drawable ic_resume 0x0 ++int drawable mapbox_attribution_default 0x0 ++int drawable mapbox_attribution_selected 0x0 ++int drawable mapbox_attribution_selector 0x0 ++int drawable mapbox_compass_icon 0x0 ++int drawable mapbox_info_bg_selector 0x0 ++int drawable mapbox_info_icon_default 0x0 ++int drawable mapbox_info_icon_selected 0x0 ++int drawable mapbox_logo_helmet 0x0 ++int drawable mapbox_logo_icon 0x0 ++int drawable mapbox_mylocation_bg_shape 0x0 ++int drawable mapbox_mylocation_icon_bearing 0x0 ++int drawable mapbox_mylocation_icon_default 0x0 ++int drawable mapbox_popup_window_transparent 0x0 ++int drawable mapbox_rounded_corner 0x0 ++int drawable mapbox_user_bearing_icon 0x0 ++int drawable mapbox_user_icon 0x0 ++int drawable mapbox_user_icon_shadow 0x0 ++int drawable mapbox_user_icon_stale 0x0 ++int drawable mapbox_user_puck_icon 0x0 ++int drawable mapbox_user_stroke_icon 0x0 ++int drawable notification_action_background 0x0 ++int drawable notification_bg 0x0 ++int drawable notification_bg_low 0x0 ++int drawable notification_bg_low_normal 0x0 ++int drawable notification_bg_low_pressed 0x0 ++int drawable notification_bg_normal 0x0 ++int drawable notification_bg_normal_pressed 0x0 ++int drawable notification_icon_background 0x0 ++int drawable notification_oversize_large_icon_bg 0x0 ++int drawable notification_template_icon_bg 0x0 ++int drawable notification_template_icon_low_bg 0x0 ++int drawable notification_tile_bg 0x0 ++int drawable notify_panel_notification_icon_bg 0x0 ++int drawable paused_in_debugger_background 0x0 ++int drawable paused_in_debugger_dialog_background 0x0 ++int drawable red_marker 0x0 ++int drawable redbox_top_border_background 0x0 ++int drawable ripple_effect 0x0 ++int drawable test_level_drawable 0x0 ++int drawable tooltip_frame_dark 0x0 ++int drawable tooltip_frame_light 0x0 ++int id accessibility_action_clickable_span 0x0 ++int id accessibility_actions 0x0 ++int id accessibility_collection 0x0 ++int id accessibility_collection_item 0x0 ++int id accessibility_custom_action_0 0x0 ++int id accessibility_custom_action_1 0x0 ++int id accessibility_custom_action_10 0x0 ++int id accessibility_custom_action_11 0x0 ++int id accessibility_custom_action_12 0x0 ++int id accessibility_custom_action_13 0x0 ++int id accessibility_custom_action_14 0x0 ++int id accessibility_custom_action_15 0x0 ++int id accessibility_custom_action_16 0x0 ++int id accessibility_custom_action_17 0x0 ++int id accessibility_custom_action_18 0x0 ++int id accessibility_custom_action_19 0x0 ++int id accessibility_custom_action_2 0x0 ++int id accessibility_custom_action_20 0x0 ++int id accessibility_custom_action_21 0x0 ++int id accessibility_custom_action_22 0x0 ++int id accessibility_custom_action_23 0x0 ++int id accessibility_custom_action_24 0x0 ++int id accessibility_custom_action_25 0x0 ++int id accessibility_custom_action_26 0x0 ++int id accessibility_custom_action_27 0x0 ++int id accessibility_custom_action_28 0x0 ++int id accessibility_custom_action_29 0x0 ++int id accessibility_custom_action_3 0x0 ++int id accessibility_custom_action_30 0x0 ++int id accessibility_custom_action_31 0x0 ++int id accessibility_custom_action_4 0x0 ++int id accessibility_custom_action_5 0x0 ++int id accessibility_custom_action_6 0x0 ++int id accessibility_custom_action_7 0x0 ++int id accessibility_custom_action_8 0x0 ++int id accessibility_custom_action_9 0x0 ++int id accessibility_hint 0x0 ++int id accessibility_label 0x0 ++int id accessibility_links 0x0 ++int id accessibility_role 0x0 ++int id accessibility_state 0x0 ++int id accessibility_state_expanded 0x0 ++int id accessibility_value 0x0 ++int id action_bar 0x0 ++int id action_bar_activity_content 0x0 ++int id action_bar_container 0x0 ++int id action_bar_root 0x0 ++int id action_bar_spinner 0x0 ++int id action_bar_subtitle 0x0 ++int id action_bar_title 0x0 ++int id action_container 0x0 ++int id action_context_bar 0x0 ++int id action_divider 0x0 ++int id action_image 0x0 ++int id action_menu_divider 0x0 ++int id action_menu_presenter 0x0 ++int id action_mode_bar 0x0 ++int id action_mode_bar_stub 0x0 ++int id action_mode_close_button 0x0 ++int id action_text 0x0 ++int id actions 0x0 ++int id activity_chooser_view_content 0x0 ++int id add 0x0 ++int id adjust_height 0x0 ++int id adjust_width 0x0 ++int id alertTitle 0x0 ++int id alert_title 0x0 ++int id all_glyphs_rasterized_locally 0x0 ++int id annotation_img 0x0 ++int id annotation_layout 0x0 ++int id annotation_view_container 0x0 ++int id async 0x0 ++int id auto 0x0 ++int id autofill_inline_suggestion_end_icon 0x0 ++int id autofill_inline_suggestion_start_icon 0x0 ++int id autofill_inline_suggestion_subtitle 0x0 ++int id autofill_inline_suggestion_title 0x0 ++int id blocking 0x0 ++int id bottom 0x0 ++int id button 0x0 ++int id buttonPanel 0x0 ++int id button_text 0x0 ++int id catalyst_redbox_title 0x0 ++int id center 0x0 ++int id centerCrop 0x0 ++int id centerInside 0x0 ++int id checkbox 0x0 ++int id checked 0x0 ++int id chronometer 0x0 ++int id content 0x0 ++int id contentPanel 0x0 ++int id course 0x0 ++int id custom 0x0 ++int id customPanel 0x0 ++int id dark 0x0 ++int id decor_content_parent 0x0 ++int id default_activity_button 0x0 ++int id default_viewport 0x0 ++int id dialog_button 0x0 ++int id downwards 0x0 ++int id edit_query 0x0 ++int id edit_text_id 0x0 ++int id end 0x0 ++int id expand_activities_button 0x0 ++int id expanded_menu 0x0 ++int id filter 0x0 ++int id fitBottomStart 0x0 ++int id fitCenter 0x0 ++int id fitEnd 0x0 ++int id fitStart 0x0 ++int id fitXY 0x0 ++int id flipped_y 0x0 ++int id focusCrop 0x0 ++int id forever 0x0 ++int id fps_text 0x0 ++int id fragment_container_view_tag 0x0 ++int id group_divider 0x0 ++int id heading 0x0 ++int id height_only 0x0 ++int id hide_ime_id 0x0 ++int id home 0x0 ++int id horizontal 0x0 ++int id horizontal_and_vertical 0x0 ++int id icon 0x0 ++int id icon_group 0x0 ++int id icon_only 0x0 ++int id ideographs_rasterized_locally 0x0 ++int id image 0x0 ++int id info 0x0 ++int id invalidate_transform 0x0 ++int id italic 0x0 ++int id labelled_by 0x0 ++int id left 0x0 ++int id lefttwards 0x0 ++int id light 0x0 ++int id line1 0x0 ++int id line3 0x0 ++int id listMode 0x0 ++int id list_item 0x0 ++int id location_puck_2_d 0x0 ++int id location_puck_3_d 0x0 ++int id mapView 0x0 ++int id message 0x0 ++int id mix_blend_mode 0x0 ++int id multiply 0x0 ++int id no_glyphs_rasterized_locally 0x0 ++int id none 0x0 ++int id normal 0x0 ++int id notification_background 0x0 ++int id notification_main_column 0x0 ++int id notification_main_column_container 0x0 ++int id off 0x0 ++int id on 0x0 ++int id parentPanel 0x0 ++int id pointer_events 0x0 ++int id progress_circular 0x0 ++int id progress_horizontal 0x0 ++int id radio 0x0 ++int id react_test_id 0x0 ++int id report_drawn 0x0 ++int id right 0x0 ++int id right_icon 0x0 ++int id right_side 0x0 ++int id rightwards 0x0 ++int id rn_frame_file 0x0 ++int id rn_frame_method 0x0 ++int id rn_redbox_dismiss_button 0x0 ++int id rn_redbox_line_separator 0x0 ++int id rn_redbox_loading_indicator 0x0 ++int id rn_redbox_reload_button 0x0 ++int id rn_redbox_report_button 0x0 ++int id rn_redbox_report_label 0x0 ++int id rn_redbox_stack 0x0 ++int id role 0x0 ++int id screen 0x0 ++int id scrollIndicatorDown 0x0 ++int id scrollIndicatorUp 0x0 ++int id scrollView 0x0 ++int id search_badge 0x0 ++int id search_bar 0x0 ++int id search_button 0x0 ++int id search_close_btn 0x0 ++int id search_edit_frame 0x0 ++int id search_go_btn 0x0 ++int id search_mag_icon 0x0 ++int id search_plate 0x0 ++int id search_src_text 0x0 ++int id search_voice_btn 0x0 ++int id select_dialog_listview 0x0 ++int id shared 0x0 ++int id shortcut 0x0 ++int id spacer 0x0 ++int id special_effects_controller_view_tag 0x0 ++int id split_action_bar 0x0 ++int id src_atop 0x0 ++int id src_in 0x0 ++int id src_over 0x0 ++int id standard 0x0 ++int id start 0x0 ++int id submenuarrow 0x0 ++int id submit_area 0x0 ++int id surface_view 0x0 ++int id tabMode 0x0 ++int id tag_accessibility_actions 0x0 ++int id tag_accessibility_clickable_spans 0x0 ++int id tag_accessibility_heading 0x0 ++int id tag_accessibility_pane_title 0x0 ++int id tag_on_apply_window_listener 0x0 ++int id tag_on_receive_content_listener 0x0 ++int id tag_on_receive_content_mime_types 0x0 ++int id tag_screen_reader_focusable 0x0 ++int id tag_state_description 0x0 ++int id tag_transition_group 0x0 ++int id tag_unhandled_key_event_manager 0x0 ++int id tag_unhandled_key_listeners 0x0 ++int id tag_window_insets_animation_callback 0x0 ++int id text 0x0 ++int id text2 0x0 ++int id textSpacerNoButtons 0x0 ++int id textSpacerNoTitle 0x0 ++int id texture_view 0x0 ++int id time 0x0 ++int id title 0x0 ++int id titleDividerNoCustom 0x0 ++int id title_template 0x0 ++int id top 0x0 ++int id topPanel 0x0 ++int id transform 0x0 ++int id transform_origin 0x0 ++int id unchecked 0x0 ++int id uniform 0x0 ++int id unique 0x0 ++int id up 0x0 ++int id upwards 0x0 ++int id use_hardware_layer 0x0 ++int id vertical 0x0 ++int id view_clipped 0x0 ++int id view_tag_instance_handle 0x0 ++int id view_tag_native_id 0x0 ++int id view_tree_lifecycle_owner 0x0 ++int id view_tree_on_back_pressed_dispatcher_owner 0x0 ++int id view_tree_saved_state_registry_owner 0x0 ++int id view_tree_view_model_store_owner 0x0 ++int id visible_removing_fragment_view_tag 0x0 ++int id wide 0x0 ++int id width_and_height 0x0 ++int id wrap_content 0x0 ++int integer abc_config_activityDefaultDur 0x0 ++int integer abc_config_activityShortDur 0x0 ++int integer cancel_button_image_alpha 0x0 ++int integer config_tooltipAnimTime 0x0 ++int integer google_play_services_version 0x0 ++int integer react_native_dev_server_port 0x0 ++int integer status_bar_notification_info_maxnum 0x0 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 ++int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 ++int interpolator fast_out_slow_in 0x0 ++int layout abc_action_bar_title_item 0x0 ++int layout abc_action_bar_up_container 0x0 ++int layout abc_action_menu_item_layout 0x0 ++int layout abc_action_menu_layout 0x0 ++int layout abc_action_mode_bar 0x0 ++int layout abc_action_mode_close_item_material 0x0 ++int layout abc_activity_chooser_view 0x0 ++int layout abc_activity_chooser_view_list_item 0x0 ++int layout abc_alert_dialog_button_bar_material 0x0 ++int layout abc_alert_dialog_material 0x0 ++int layout abc_alert_dialog_title_material 0x0 ++int layout abc_cascading_menu_item_layout 0x0 ++int layout abc_dialog_title_material 0x0 ++int layout abc_expanded_menu_layout 0x0 ++int layout abc_list_menu_item_checkbox 0x0 ++int layout abc_list_menu_item_icon 0x0 ++int layout abc_list_menu_item_layout 0x0 ++int layout abc_list_menu_item_radio 0x0 ++int layout abc_popup_menu_header_item_layout 0x0 ++int layout abc_popup_menu_item_layout 0x0 ++int layout abc_screen_content_include 0x0 ++int layout abc_screen_simple 0x0 ++int layout abc_screen_simple_overlay_action_mode 0x0 ++int layout abc_screen_toolbar 0x0 ++int layout abc_search_dropdown_item_icons_2line 0x0 ++int layout abc_search_view 0x0 ++int layout abc_select_dialog_material 0x0 ++int layout abc_tooltip 0x0 ++int layout activity_dummy 0x0 ++int layout alert_title_layout 0x0 ++int layout annotation 0x0 ++int layout autofill_inline_suggestion 0x0 ++int layout custom_dialog 0x0 ++int layout dev_loading_view 0x0 ++int layout fps_view 0x0 ++int layout ime_base_split_test_activity 0x0 ++int layout ime_secondary_split_test_activity 0x0 ++int layout mapbox_attribution_list_item 0x0 ++int layout notification_action 0x0 ++int layout notification_action_tombstone 0x0 ++int layout notification_template_custom_big 0x0 ++int layout notification_template_icon_group 0x0 ++int layout notification_template_part_chronometer 0x0 ++int layout notification_template_part_time 0x0 ++int layout paused_in_debugger_view 0x0 ++int layout redbox_item_frame 0x0 ++int layout redbox_item_title 0x0 ++int layout redbox_view 0x0 ++int layout select_dialog_item_material 0x0 ++int layout select_dialog_multichoice_material 0x0 ++int layout select_dialog_singlechoice_material 0x0 ++int layout support_simple_spinner_dropdown_item 0x0 ++int string abc_action_bar_home_description 0x0 ++int string abc_action_bar_up_description 0x0 ++int string abc_action_menu_overflow_description 0x0 ++int string abc_action_mode_done 0x0 ++int string abc_activity_chooser_view_see_all 0x0 ++int string abc_activitychooserview_choose_application 0x0 ++int string abc_capital_off 0x0 ++int string abc_capital_on 0x0 ++int string abc_menu_alt_shortcut_label 0x0 ++int string abc_menu_ctrl_shortcut_label 0x0 ++int string abc_menu_delete_shortcut_label 0x0 ++int string abc_menu_enter_shortcut_label 0x0 ++int string abc_menu_function_shortcut_label 0x0 ++int string abc_menu_meta_shortcut_label 0x0 ++int string abc_menu_shift_shortcut_label 0x0 ++int string abc_menu_space_shortcut_label 0x0 ++int string abc_menu_sym_shortcut_label 0x0 ++int string abc_prepend_shortcut_label 0x0 ++int string abc_search_hint 0x0 ++int string abc_searchview_description_clear 0x0 ++int string abc_searchview_description_query 0x0 ++int string abc_searchview_description_search 0x0 ++int string abc_searchview_description_submit 0x0 ++int string abc_searchview_description_voice 0x0 ++int string abc_shareactionprovider_share_with 0x0 ++int string abc_shareactionprovider_share_with_application 0x0 ++int string abc_toolbar_collapse_description 0x0 ++int string alert_description 0x0 ++int string androidx_startup 0x0 ++int string app_name 0x0 ++int string call_notification_answer_action 0x0 ++int string call_notification_answer_video_action 0x0 ++int string call_notification_decline_action 0x0 ++int string call_notification_hang_up_action 0x0 ++int string call_notification_incoming_text 0x0 ++int string call_notification_ongoing_text 0x0 ++int string call_notification_screening_text 0x0 ++int string catalyst_change_bundle_location 0x0 ++int string catalyst_copy_button 0x0 ++int string catalyst_debug_connecting 0x0 ++int string catalyst_debug_error 0x0 ++int string catalyst_debug_open 0x0 ++int string catalyst_debug_open_disabled 0x0 ++int string catalyst_dev_menu_header 0x0 ++int string catalyst_dev_menu_sub_header 0x0 ++int string catalyst_dismiss_button 0x0 ++int string catalyst_heap_capture 0x0 ++int string catalyst_hot_reloading 0x0 ++int string catalyst_hot_reloading_auto_disable 0x0 ++int string catalyst_hot_reloading_auto_enable 0x0 ++int string catalyst_hot_reloading_stop 0x0 ++int string catalyst_inspector_toggle 0x0 ++int string catalyst_loading_from_url 0x0 ++int string catalyst_open_debugger_error 0x0 ++int string catalyst_perf_monitor 0x0 ++int string catalyst_perf_monitor_stop 0x0 ++int string catalyst_reload 0x0 ++int string catalyst_reload_button 0x0 ++int string catalyst_reload_error 0x0 ++int string catalyst_report_button 0x0 ++int string catalyst_sample_profiler_toggle 0x0 ++int string catalyst_settings 0x0 ++int string catalyst_settings_title 0x0 ++int string combobox_description 0x0 ++int string common_google_play_services_enable_button 0x0 ++int string common_google_play_services_enable_text 0x0 ++int string common_google_play_services_enable_title 0x0 ++int string common_google_play_services_install_button 0x0 ++int string common_google_play_services_install_text 0x0 ++int string common_google_play_services_install_title 0x0 ++int string common_google_play_services_notification_channel_name 0x0 ++int string common_google_play_services_notification_ticker 0x0 ++int string common_google_play_services_unknown_issue 0x0 ++int string common_google_play_services_unsupported_text 0x0 ++int string common_google_play_services_update_button 0x0 ++int string common_google_play_services_update_text 0x0 ++int string common_google_play_services_update_title 0x0 ++int string common_google_play_services_updating_text 0x0 ++int string common_google_play_services_wear_update_text 0x0 ++int string common_open_on_phone 0x0 ++int string common_signin_button_text 0x0 ++int string common_signin_button_text_long 0x0 ++int string header_description 0x0 ++int string image_description 0x0 ++int string imagebutton_description 0x0 ++int string link_description 0x0 ++int string mapbox_attributionErrorNoBrowser 0x0 ++int string mapbox_attributionTelemetryMessage 0x0 ++int string mapbox_attributionTelemetryNegative 0x0 ++int string mapbox_attributionTelemetryNeutral 0x0 ++int string mapbox_attributionTelemetryPositive 0x0 ++int string mapbox_attributionTelemetryTitle 0x0 ++int string mapbox_attributionsDialogTitle 0x0 ++int string mapbox_compassContentDescription 0x0 ++int string mapbox_myLocationViewContentDescription 0x0 ++int string mapbox_privacy_policy 0x0 ++int string mapbox_telemetryImproveMap 0x0 ++int string mapbox_telemetryLink 0x0 ++int string mapbox_telemetrySettings 0x0 ++int string mapbox_warning_attribution_disabled 0x0 ++int string mapbox_warning_logo_disabled 0x0 ++int string menu_description 0x0 ++int string menubar_description 0x0 ++int string menuitem_description 0x0 ++int string progressbar_description 0x0 ++int string radiogroup_description 0x0 ++int string rn_tab_description 0x0 ++int string scrollbar_description 0x0 ++int string search_menu_title 0x0 ++int string spinbutton_description 0x0 ++int string state_busy_description 0x0 ++int string state_collapsed_description 0x0 ++int string state_expanded_description 0x0 ++int string state_mixed_description 0x0 ++int string state_off_description 0x0 ++int string state_on_description 0x0 ++int string state_unselected_description 0x0 ++int string status_bar_notification_info_overflow 0x0 ++int string summary_description 0x0 ++int string tablist_description 0x0 ++int string timer_description 0x0 ++int string toolbar_description 0x0 ++int style AlertDialog_AppCompat 0x0 ++int style AlertDialog_AppCompat_Light 0x0 ++int style Animation_AppCompat_Dialog 0x0 ++int style Animation_AppCompat_DropDownUp 0x0 ++int style Animation_AppCompat_Tooltip 0x0 ++int style Animation_Catalyst_LogBox 0x0 ++int style Animation_Catalyst_RedBox 0x0 ++int style Base_AlertDialog_AppCompat 0x0 ++int style Base_AlertDialog_AppCompat_Light 0x0 ++int style Base_Animation_AppCompat_Dialog 0x0 ++int style Base_Animation_AppCompat_DropDownUp 0x0 ++int style Base_Animation_AppCompat_Tooltip 0x0 ++int style Base_DialogWindowTitleBackground_AppCompat 0x0 ++int style Base_DialogWindowTitle_AppCompat 0x0 ++int style Base_TextAppearance_AppCompat 0x0 ++int style Base_TextAppearance_AppCompat_Body1 0x0 ++int style Base_TextAppearance_AppCompat_Body2 0x0 ++int style Base_TextAppearance_AppCompat_Button 0x0 ++int style Base_TextAppearance_AppCompat_Caption 0x0 ++int style Base_TextAppearance_AppCompat_Display1 0x0 ++int style Base_TextAppearance_AppCompat_Display2 0x0 ++int style Base_TextAppearance_AppCompat_Display3 0x0 ++int style Base_TextAppearance_AppCompat_Display4 0x0 ++int style Base_TextAppearance_AppCompat_Headline 0x0 ++int style Base_TextAppearance_AppCompat_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Large 0x0 ++int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 ++int style Base_TextAppearance_AppCompat_Medium 0x0 ++int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Menu 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 ++int style Base_TextAppearance_AppCompat_Small 0x0 ++int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Subhead 0x0 ++int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Title 0x0 ++int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Tooltip 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 ++int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 ++int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 ++int style Base_ThemeOverlay_AppCompat 0x0 ++int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 ++int style Base_ThemeOverlay_AppCompat_Dark 0x0 ++int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 ++int style Base_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 ++int style Base_ThemeOverlay_AppCompat_Light 0x0 ++int style Base_Theme_AppCompat 0x0 ++int style Base_Theme_AppCompat_CompactMenu 0x0 ++int style Base_Theme_AppCompat_Dialog 0x0 ++int style Base_Theme_AppCompat_DialogWhenLarge 0x0 ++int style Base_Theme_AppCompat_Dialog_Alert 0x0 ++int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 ++int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 ++int style Base_Theme_AppCompat_Light 0x0 ++int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 ++int style Base_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 ++int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_V21_Theme_AppCompat 0x0 ++int style Base_V21_Theme_AppCompat_Dialog 0x0 ++int style Base_V21_Theme_AppCompat_Light 0x0 ++int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_V22_Theme_AppCompat 0x0 ++int style Base_V22_Theme_AppCompat_Light 0x0 ++int style Base_V23_Theme_AppCompat 0x0 ++int style Base_V23_Theme_AppCompat_Light 0x0 ++int style Base_V26_Theme_AppCompat 0x0 ++int style Base_V26_Theme_AppCompat_Light 0x0 ++int style Base_V26_Widget_AppCompat_Toolbar 0x0 ++int style Base_V28_Theme_AppCompat 0x0 ++int style Base_V28_Theme_AppCompat_Light 0x0 ++int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_V7_Theme_AppCompat 0x0 ++int style Base_V7_Theme_AppCompat_Dialog 0x0 ++int style Base_V7_Theme_AppCompat_Light 0x0 ++int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Base_V7_Widget_AppCompat_EditText 0x0 ++int style Base_V7_Widget_AppCompat_Toolbar 0x0 ++int style Base_Widget_AppCompat_ActionBar 0x0 ++int style Base_Widget_AppCompat_ActionBar_Solid 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabText 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabView 0x0 ++int style Base_Widget_AppCompat_ActionButton 0x0 ++int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 ++int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 ++int style Base_Widget_AppCompat_ActionMode 0x0 ++int style Base_Widget_AppCompat_ActivityChooserView 0x0 ++int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Base_Widget_AppCompat_Button 0x0 ++int style Base_Widget_AppCompat_ButtonBar 0x0 ++int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 ++int style Base_Widget_AppCompat_Button_Borderless 0x0 ++int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 ++int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 ++int style Base_Widget_AppCompat_Button_Colored 0x0 ++int style Base_Widget_AppCompat_Button_Small 0x0 ++int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 ++int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 ++int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 ++int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 ++int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 ++int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 ++int style Base_Widget_AppCompat_EditText 0x0 ++int style Base_Widget_AppCompat_ImageButton 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 ++int style Base_Widget_AppCompat_Light_PopupMenu 0x0 ++int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 ++int style Base_Widget_AppCompat_ListMenuView 0x0 ++int style Base_Widget_AppCompat_ListPopupWindow 0x0 ++int style Base_Widget_AppCompat_ListView 0x0 ++int style Base_Widget_AppCompat_ListView_DropDown 0x0 ++int style Base_Widget_AppCompat_ListView_Menu 0x0 ++int style Base_Widget_AppCompat_PopupMenu 0x0 ++int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 ++int style Base_Widget_AppCompat_PopupWindow 0x0 ++int style Base_Widget_AppCompat_ProgressBar 0x0 ++int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 ++int style Base_Widget_AppCompat_RatingBar 0x0 ++int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 ++int style Base_Widget_AppCompat_RatingBar_Small 0x0 ++int style Base_Widget_AppCompat_SearchView 0x0 ++int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 ++int style Base_Widget_AppCompat_SeekBar 0x0 ++int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 ++int style Base_Widget_AppCompat_Spinner 0x0 ++int style Base_Widget_AppCompat_Spinner_Underlined 0x0 ++int style Base_Widget_AppCompat_TextView 0x0 ++int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 ++int style Base_Widget_AppCompat_Toolbar 0x0 ++int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 ++int style CalendarDatePickerDialog 0x0 ++int style CalendarDatePickerStyle 0x0 ++int style DialogAnimationFade 0x0 ++int style DialogAnimationSlide 0x0 ++int style NoAnimationDialog 0x0 ++int style Platform_AppCompat 0x0 ++int style Platform_AppCompat_Light 0x0 ++int style Platform_ThemeOverlay_AppCompat 0x0 ++int style Platform_ThemeOverlay_AppCompat_Dark 0x0 ++int style Platform_ThemeOverlay_AppCompat_Light 0x0 ++int style Platform_V21_AppCompat 0x0 ++int style Platform_V21_AppCompat_Light 0x0 ++int style Platform_V25_AppCompat 0x0 ++int style Platform_V25_AppCompat_Light 0x0 ++int style Platform_Widget_AppCompat_Spinner 0x0 ++int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 ++int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 ++int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 ++int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 ++int style SpinnerDatePickerDialog 0x0 ++int style SpinnerDatePickerStyle 0x0 ++int style TextAppearance_AppCompat 0x0 ++int style TextAppearance_AppCompat_Body1 0x0 ++int style TextAppearance_AppCompat_Body2 0x0 ++int style TextAppearance_AppCompat_Button 0x0 ++int style TextAppearance_AppCompat_Caption 0x0 ++int style TextAppearance_AppCompat_Display1 0x0 ++int style TextAppearance_AppCompat_Display2 0x0 ++int style TextAppearance_AppCompat_Display3 0x0 ++int style TextAppearance_AppCompat_Display4 0x0 ++int style TextAppearance_AppCompat_Headline 0x0 ++int style TextAppearance_AppCompat_Inverse 0x0 ++int style TextAppearance_AppCompat_Large 0x0 ++int style TextAppearance_AppCompat_Large_Inverse 0x0 ++int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 ++int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 ++int style TextAppearance_AppCompat_Medium 0x0 ++int style TextAppearance_AppCompat_Medium_Inverse 0x0 ++int style TextAppearance_AppCompat_Menu 0x0 ++int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 ++int style TextAppearance_AppCompat_SearchResult_Title 0x0 ++int style TextAppearance_AppCompat_Small 0x0 ++int style TextAppearance_AppCompat_Small_Inverse 0x0 ++int style TextAppearance_AppCompat_Subhead 0x0 ++int style TextAppearance_AppCompat_Subhead_Inverse 0x0 ++int style TextAppearance_AppCompat_Title 0x0 ++int style TextAppearance_AppCompat_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Tooltip 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_Button 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 ++int style TextAppearance_AppCompat_Widget_Switch 0x0 ++int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 ++int style TextAppearance_Compat_Notification 0x0 ++int style TextAppearance_Compat_Notification_Info 0x0 ++int style TextAppearance_Compat_Notification_Line2 0x0 ++int style TextAppearance_Compat_Notification_Time 0x0 ++int style TextAppearance_Compat_Notification_Title 0x0 ++int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 ++int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 ++int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 ++int style Theme 0x0 ++int style ThemeOverlay_AppCompat 0x0 ++int style ThemeOverlay_AppCompat_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_Dark 0x0 ++int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_DayNight 0x0 ++int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_Dialog 0x0 ++int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 ++int style ThemeOverlay_AppCompat_Light 0x0 ++int style Theme_AppCompat 0x0 ++int style Theme_AppCompat_CompactMenu 0x0 ++int style Theme_AppCompat_DayNight 0x0 ++int style Theme_AppCompat_DayNight_DarkActionBar 0x0 ++int style Theme_AppCompat_DayNight_Dialog 0x0 ++int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 ++int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 ++int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_DayNight_NoActionBar 0x0 ++int style Theme_AppCompat_Dialog 0x0 ++int style Theme_AppCompat_DialogWhenLarge 0x0 ++int style Theme_AppCompat_Dialog_Alert 0x0 ++int style Theme_AppCompat_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_Empty 0x0 ++int style Theme_AppCompat_Light 0x0 ++int style Theme_AppCompat_Light_DarkActionBar 0x0 ++int style Theme_AppCompat_Light_Dialog 0x0 ++int style Theme_AppCompat_Light_DialogWhenLarge 0x0 ++int style Theme_AppCompat_Light_Dialog_Alert 0x0 ++int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_Light_NoActionBar 0x0 ++int style Theme_AppCompat_NoActionBar 0x0 ++int style Theme_AutofillInlineSuggestion 0x0 ++int style Theme_Catalyst 0x0 ++int style Theme_Catalyst_LogBox 0x0 ++int style Theme_Catalyst_RedBox 0x0 ++int style Theme_FullScreenDialog 0x0 ++int style Theme_FullScreenDialogAnimatedFade 0x0 ++int style Theme_FullScreenDialogAnimatedSlide 0x0 ++int style Theme_ReactNative_AppCompat_Light 0x0 ++int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0 ++int style Theme_ReactNative_TextInput_DefaultBackground 0x0 ++int style Widget_AppCompat_ActionBar 0x0 ++int style Widget_AppCompat_ActionBar_Solid 0x0 ++int style Widget_AppCompat_ActionBar_TabBar 0x0 ++int style Widget_AppCompat_ActionBar_TabText 0x0 ++int style Widget_AppCompat_ActionBar_TabView 0x0 ++int style Widget_AppCompat_ActionButton 0x0 ++int style Widget_AppCompat_ActionButton_CloseMode 0x0 ++int style Widget_AppCompat_ActionButton_Overflow 0x0 ++int style Widget_AppCompat_ActionMode 0x0 ++int style Widget_AppCompat_ActivityChooserView 0x0 ++int style Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Widget_AppCompat_Button 0x0 ++int style Widget_AppCompat_ButtonBar 0x0 ++int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 ++int style Widget_AppCompat_Button_Borderless 0x0 ++int style Widget_AppCompat_Button_Borderless_Colored 0x0 ++int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 ++int style Widget_AppCompat_Button_Colored 0x0 ++int style Widget_AppCompat_Button_Small 0x0 ++int style Widget_AppCompat_CompoundButton_CheckBox 0x0 ++int style Widget_AppCompat_CompoundButton_RadioButton 0x0 ++int style Widget_AppCompat_CompoundButton_Switch 0x0 ++int style Widget_AppCompat_DrawerArrowToggle 0x0 ++int style Widget_AppCompat_DropDownItem_Spinner 0x0 ++int style Widget_AppCompat_EditText 0x0 ++int style Widget_AppCompat_ImageButton 0x0 ++int style Widget_AppCompat_Light_ActionBar 0x0 ++int style Widget_AppCompat_Light_ActionBar_Solid 0x0 ++int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabText 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabView 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionButton 0x0 ++int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 ++int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 ++int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 ++int style Widget_AppCompat_Light_ActivityChooserView 0x0 ++int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 ++int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 ++int style Widget_AppCompat_Light_ListPopupWindow 0x0 ++int style Widget_AppCompat_Light_ListView_DropDown 0x0 ++int style Widget_AppCompat_Light_PopupMenu 0x0 ++int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 ++int style Widget_AppCompat_Light_SearchView 0x0 ++int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 ++int style Widget_AppCompat_ListMenuView 0x0 ++int style Widget_AppCompat_ListPopupWindow 0x0 ++int style Widget_AppCompat_ListView 0x0 ++int style Widget_AppCompat_ListView_DropDown 0x0 ++int style Widget_AppCompat_ListView_Menu 0x0 ++int style Widget_AppCompat_PopupMenu 0x0 ++int style Widget_AppCompat_PopupMenu_Overflow 0x0 ++int style Widget_AppCompat_PopupWindow 0x0 ++int style Widget_AppCompat_ProgressBar 0x0 ++int style Widget_AppCompat_ProgressBar_Horizontal 0x0 ++int style Widget_AppCompat_RatingBar 0x0 ++int style Widget_AppCompat_RatingBar_Indicator 0x0 ++int style Widget_AppCompat_RatingBar_Small 0x0 ++int style Widget_AppCompat_SearchView 0x0 ++int style Widget_AppCompat_SearchView_ActionBar 0x0 ++int style Widget_AppCompat_SeekBar 0x0 ++int style Widget_AppCompat_SeekBar_Discrete 0x0 ++int style Widget_AppCompat_Spinner 0x0 ++int style Widget_AppCompat_Spinner_DropDown 0x0 ++int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 ++int style Widget_AppCompat_Spinner_Underlined 0x0 ++int style Widget_AppCompat_TextView 0x0 ++int style Widget_AppCompat_TextView_SpinnerItem 0x0 ++int style Widget_AppCompat_Toolbar 0x0 ++int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 ++int style Widget_Autofill 0x0 ++int style Widget_Autofill_InlineSuggestionChip 0x0 ++int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0 ++int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0 ++int style Widget_Autofill_InlineSuggestionSubtitle 0x0 ++int style Widget_Autofill_InlineSuggestionTitle 0x0 ++int style Widget_Compat_NotificationActionContainer 0x0 ++int style Widget_Compat_NotificationActionText 0x0 ++int style Widget_Support_CoordinatorLayout 0x0 ++int style redboxButton 0x0 ++int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable ActionBar_background 0 ++int styleable ActionBar_backgroundSplit 1 ++int styleable ActionBar_backgroundStacked 2 ++int styleable ActionBar_contentInsetEnd 3 ++int styleable ActionBar_contentInsetEndWithActions 4 ++int styleable ActionBar_contentInsetLeft 5 ++int styleable ActionBar_contentInsetRight 6 ++int styleable ActionBar_contentInsetStart 7 ++int styleable ActionBar_contentInsetStartWithNavigation 8 ++int styleable ActionBar_customNavigationLayout 9 ++int styleable ActionBar_displayOptions 10 ++int styleable ActionBar_divider 11 ++int styleable ActionBar_elevation 12 ++int styleable ActionBar_height 13 ++int styleable ActionBar_hideOnContentScroll 14 ++int styleable ActionBar_homeAsUpIndicator 15 ++int styleable ActionBar_homeLayout 16 ++int styleable ActionBar_icon 17 ++int styleable ActionBar_indeterminateProgressStyle 18 ++int styleable ActionBar_itemPadding 19 ++int styleable ActionBar_logo 20 ++int styleable ActionBar_navigationMode 21 ++int styleable ActionBar_popupTheme 22 ++int styleable ActionBar_progressBarPadding 23 ++int styleable ActionBar_progressBarStyle 24 ++int styleable ActionBar_subtitle 25 ++int styleable ActionBar_subtitleTextStyle 26 ++int styleable ActionBar_title 27 ++int styleable ActionBar_titleTextStyle 28 ++int[] styleable ActionBarLayout { 0x10100b3 } ++int styleable ActionBarLayout_android_layout_gravity 0 ++int[] styleable ActionMenuItemView { 0x101013f } ++int styleable ActionMenuItemView_android_minWidth 0 ++int[] styleable ActionMenuView { } ++int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable ActionMode_background 0 ++int styleable ActionMode_backgroundSplit 1 ++int styleable ActionMode_closeItemLayout 2 ++int styleable ActionMode_height 3 ++int styleable ActionMode_subtitleTextStyle 4 ++int styleable ActionMode_titleTextStyle 5 ++int[] styleable ActivityChooserView { 0x0, 0x0 } ++int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 ++int styleable ActivityChooserView_initialActivityCount 1 ++int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AlertDialog_android_layout 0 ++int styleable AlertDialog_buttonIconDimen 1 ++int styleable AlertDialog_buttonPanelSideLayout 2 ++int styleable AlertDialog_listItemLayout 3 ++int styleable AlertDialog_listLayout 4 ++int styleable AlertDialog_multiChoiceItemLayout 5 ++int styleable AlertDialog_showTitle 6 ++int styleable AlertDialog_singleChoiceItemLayout 7 ++int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } ++int styleable AnimatedStateListDrawableCompat_android_constantSize 0 ++int styleable AnimatedStateListDrawableCompat_android_dither 1 ++int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 ++int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 ++int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 ++int styleable AnimatedStateListDrawableCompat_android_visible 5 ++int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } ++int styleable AnimatedStateListDrawableItem_android_drawable 0 ++int styleable AnimatedStateListDrawableItem_android_id 1 ++int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } ++int styleable AnimatedStateListDrawableTransition_android_drawable 0 ++int styleable AnimatedStateListDrawableTransition_android_fromId 1 ++int styleable AnimatedStateListDrawableTransition_android_reversible 2 ++int styleable AnimatedStateListDrawableTransition_android_toId 3 ++int[] styleable AppCompatEmojiHelper { } ++int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } ++int styleable AppCompatImageView_android_src 0 ++int styleable AppCompatImageView_srcCompat 1 ++int styleable AppCompatImageView_tint 2 ++int styleable AppCompatImageView_tintMode 3 ++int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } ++int styleable AppCompatSeekBar_android_thumb 0 ++int styleable AppCompatSeekBar_tickMark 1 ++int styleable AppCompatSeekBar_tickMarkTint 2 ++int styleable AppCompatSeekBar_tickMarkTintMode 3 ++int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } ++int styleable AppCompatTextHelper_android_drawableBottom 0 ++int styleable AppCompatTextHelper_android_drawableEnd 1 ++int styleable AppCompatTextHelper_android_drawableLeft 2 ++int styleable AppCompatTextHelper_android_drawableRight 3 ++int styleable AppCompatTextHelper_android_drawableStart 4 ++int styleable AppCompatTextHelper_android_drawableTop 5 ++int styleable AppCompatTextHelper_android_textAppearance 6 ++int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AppCompatTextView_android_textAppearance 0 ++int styleable AppCompatTextView_autoSizeMaxTextSize 1 ++int styleable AppCompatTextView_autoSizeMinTextSize 2 ++int styleable AppCompatTextView_autoSizePresetSizes 3 ++int styleable AppCompatTextView_autoSizeStepGranularity 4 ++int styleable AppCompatTextView_autoSizeTextType 5 ++int styleable AppCompatTextView_drawableBottomCompat 6 ++int styleable AppCompatTextView_drawableEndCompat 7 ++int styleable AppCompatTextView_drawableLeftCompat 8 ++int styleable AppCompatTextView_drawableRightCompat 9 ++int styleable AppCompatTextView_drawableStartCompat 10 ++int styleable AppCompatTextView_drawableTint 11 ++int styleable AppCompatTextView_drawableTintMode 12 ++int styleable AppCompatTextView_drawableTopCompat 13 ++int styleable AppCompatTextView_emojiCompatEnabled 14 ++int styleable AppCompatTextView_firstBaselineToTopHeight 15 ++int styleable AppCompatTextView_fontFamily 16 ++int styleable AppCompatTextView_fontVariationSettings 17 ++int styleable AppCompatTextView_lastBaselineToBottomHeight 18 ++int styleable AppCompatTextView_lineHeight 19 ++int styleable AppCompatTextView_textAllCaps 20 ++int styleable AppCompatTextView_textLocale 21 ++int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AppCompatTheme_actionBarDivider 0 ++int styleable AppCompatTheme_actionBarItemBackground 1 ++int styleable AppCompatTheme_actionBarPopupTheme 2 ++int styleable AppCompatTheme_actionBarSize 3 ++int styleable AppCompatTheme_actionBarSplitStyle 4 ++int styleable AppCompatTheme_actionBarStyle 5 ++int styleable AppCompatTheme_actionBarTabBarStyle 6 ++int styleable AppCompatTheme_actionBarTabStyle 7 ++int styleable AppCompatTheme_actionBarTabTextStyle 8 ++int styleable AppCompatTheme_actionBarTheme 9 ++int styleable AppCompatTheme_actionBarWidgetTheme 10 ++int styleable AppCompatTheme_actionButtonStyle 11 ++int styleable AppCompatTheme_actionDropDownStyle 12 ++int styleable AppCompatTheme_actionMenuTextAppearance 13 ++int styleable AppCompatTheme_actionMenuTextColor 14 ++int styleable AppCompatTheme_actionModeBackground 15 ++int styleable AppCompatTheme_actionModeCloseButtonStyle 16 ++int styleable AppCompatTheme_actionModeCloseContentDescription 17 ++int styleable AppCompatTheme_actionModeCloseDrawable 18 ++int styleable AppCompatTheme_actionModeCopyDrawable 19 ++int styleable AppCompatTheme_actionModeCutDrawable 20 ++int styleable AppCompatTheme_actionModeFindDrawable 21 ++int styleable AppCompatTheme_actionModePasteDrawable 22 ++int styleable AppCompatTheme_actionModePopupWindowStyle 23 ++int styleable AppCompatTheme_actionModeSelectAllDrawable 24 ++int styleable AppCompatTheme_actionModeShareDrawable 25 ++int styleable AppCompatTheme_actionModeSplitBackground 26 ++int styleable AppCompatTheme_actionModeStyle 27 ++int styleable AppCompatTheme_actionModeTheme 28 ++int styleable AppCompatTheme_actionModeWebSearchDrawable 29 ++int styleable AppCompatTheme_actionOverflowButtonStyle 30 ++int styleable AppCompatTheme_actionOverflowMenuStyle 31 ++int styleable AppCompatTheme_activityChooserViewStyle 32 ++int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 ++int styleable AppCompatTheme_alertDialogCenterButtons 34 ++int styleable AppCompatTheme_alertDialogStyle 35 ++int styleable AppCompatTheme_alertDialogTheme 36 ++int styleable AppCompatTheme_android_windowAnimationStyle 37 ++int styleable AppCompatTheme_android_windowIsFloating 38 ++int styleable AppCompatTheme_autoCompleteTextViewStyle 39 ++int styleable AppCompatTheme_borderlessButtonStyle 40 ++int styleable AppCompatTheme_buttonBarButtonStyle 41 ++int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 ++int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 ++int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 ++int styleable AppCompatTheme_buttonBarStyle 45 ++int styleable AppCompatTheme_buttonStyle 46 ++int styleable AppCompatTheme_buttonStyleSmall 47 ++int styleable AppCompatTheme_checkboxStyle 48 ++int styleable AppCompatTheme_checkedTextViewStyle 49 ++int styleable AppCompatTheme_colorAccent 50 ++int styleable AppCompatTheme_colorBackgroundFloating 51 ++int styleable AppCompatTheme_colorButtonNormal 52 ++int styleable AppCompatTheme_colorControlActivated 53 ++int styleable AppCompatTheme_colorControlHighlight 54 ++int styleable AppCompatTheme_colorControlNormal 55 ++int styleable AppCompatTheme_colorError 56 ++int styleable AppCompatTheme_colorPrimary 57 ++int styleable AppCompatTheme_colorPrimaryDark 58 ++int styleable AppCompatTheme_colorSwitchThumbNormal 59 ++int styleable AppCompatTheme_controlBackground 60 ++int styleable AppCompatTheme_dialogCornerRadius 61 ++int styleable AppCompatTheme_dialogPreferredPadding 62 ++int styleable AppCompatTheme_dialogTheme 63 ++int styleable AppCompatTheme_dividerHorizontal 64 ++int styleable AppCompatTheme_dividerVertical 65 ++int styleable AppCompatTheme_dropDownListViewStyle 66 ++int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 ++int styleable AppCompatTheme_editTextBackground 68 ++int styleable AppCompatTheme_editTextColor 69 ++int styleable AppCompatTheme_editTextStyle 70 ++int styleable AppCompatTheme_homeAsUpIndicator 71 ++int styleable AppCompatTheme_imageButtonStyle 72 ++int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 ++int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 ++int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 ++int styleable AppCompatTheme_listDividerAlertDialog 76 ++int styleable AppCompatTheme_listMenuViewStyle 77 ++int styleable AppCompatTheme_listPopupWindowStyle 78 ++int styleable AppCompatTheme_listPreferredItemHeight 79 ++int styleable AppCompatTheme_listPreferredItemHeightLarge 80 ++int styleable AppCompatTheme_listPreferredItemHeightSmall 81 ++int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 ++int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 ++int styleable AppCompatTheme_listPreferredItemPaddingRight 84 ++int styleable AppCompatTheme_listPreferredItemPaddingStart 85 ++int styleable AppCompatTheme_panelBackground 86 ++int styleable AppCompatTheme_panelMenuListTheme 87 ++int styleable AppCompatTheme_panelMenuListWidth 88 ++int styleable AppCompatTheme_popupMenuStyle 89 ++int styleable AppCompatTheme_popupWindowStyle 90 ++int styleable AppCompatTheme_radioButtonStyle 91 ++int styleable AppCompatTheme_ratingBarStyle 92 ++int styleable AppCompatTheme_ratingBarStyleIndicator 93 ++int styleable AppCompatTheme_ratingBarStyleSmall 94 ++int styleable AppCompatTheme_searchViewStyle 95 ++int styleable AppCompatTheme_seekBarStyle 96 ++int styleable AppCompatTheme_selectableItemBackground 97 ++int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 ++int styleable AppCompatTheme_spinnerDropDownItemStyle 99 ++int styleable AppCompatTheme_spinnerStyle 100 ++int styleable AppCompatTheme_switchStyle 101 ++int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 ++int styleable AppCompatTheme_textAppearanceListItem 103 ++int styleable AppCompatTheme_textAppearanceListItemSecondary 104 ++int styleable AppCompatTheme_textAppearanceListItemSmall 105 ++int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 ++int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 ++int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 ++int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 ++int styleable AppCompatTheme_textColorAlertDialogListItem 110 ++int styleable AppCompatTheme_textColorSearchUrl 111 ++int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 ++int styleable AppCompatTheme_toolbarStyle 113 ++int styleable AppCompatTheme_tooltipForegroundColor 114 ++int styleable AppCompatTheme_tooltipFrameBackground 115 ++int styleable AppCompatTheme_viewInflaterClass 116 ++int styleable AppCompatTheme_windowActionBar 117 ++int styleable AppCompatTheme_windowActionBarOverlay 118 ++int styleable AppCompatTheme_windowActionModeOverlay 119 ++int styleable AppCompatTheme_windowFixedHeightMajor 120 ++int styleable AppCompatTheme_windowFixedHeightMinor 121 ++int styleable AppCompatTheme_windowFixedWidthMajor 122 ++int styleable AppCompatTheme_windowFixedWidthMinor 123 ++int styleable AppCompatTheme_windowMinWidthMajor 124 ++int styleable AppCompatTheme_windowMinWidthMinor 125 ++int styleable AppCompatTheme_windowNoTitle 126 ++int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 ++int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 ++int[] styleable ButtonBarLayout { 0x0 } ++int styleable ButtonBarLayout_allowStacking 0 ++int[] styleable Capability { 0x0, 0x0 } ++int styleable Capability_queryPatterns 0 ++int styleable Capability_shortcutMatchRequired 1 ++int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } ++int styleable CheckedTextView_android_checkMark 0 ++int styleable CheckedTextView_checkMarkCompat 1 ++int styleable CheckedTextView_checkMarkTint 2 ++int styleable CheckedTextView_checkMarkTintMode 3 ++int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } ++int styleable ColorStateListItem_alpha 0 ++int styleable ColorStateListItem_android_alpha 1 ++int styleable ColorStateListItem_android_color 2 ++int styleable ColorStateListItem_android_lStar 3 ++int styleable ColorStateListItem_lStar 4 ++int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } ++int styleable CompoundButton_android_button 0 ++int styleable CompoundButton_buttonCompat 1 ++int styleable CompoundButton_buttonTint 2 ++int styleable CompoundButton_buttonTintMode 3 ++int[] styleable CoordinatorLayout { 0x0, 0x0 } ++int styleable CoordinatorLayout_keylines 0 ++int styleable CoordinatorLayout_statusBarBackground 1 ++int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable CoordinatorLayout_Layout_android_layout_gravity 0 ++int styleable CoordinatorLayout_Layout_layout_anchor 1 ++int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 ++int styleable CoordinatorLayout_Layout_layout_behavior 3 ++int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 ++int styleable CoordinatorLayout_Layout_layout_insetEdge 5 ++int styleable CoordinatorLayout_Layout_layout_keyline 6 ++int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable DrawerArrowToggle_arrowHeadLength 0 ++int styleable DrawerArrowToggle_arrowShaftLength 1 ++int styleable DrawerArrowToggle_barLength 2 ++int styleable DrawerArrowToggle_color 3 ++int styleable DrawerArrowToggle_drawableSize 4 ++int styleable DrawerArrowToggle_gapBetweenBars 5 ++int styleable DrawerArrowToggle_spinBars 6 ++int styleable DrawerArrowToggle_thickness 7 ++int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable FontFamily_fontProviderAuthority 0 ++int styleable FontFamily_fontProviderCerts 1 ++int styleable FontFamily_fontProviderFetchStrategy 2 ++int styleable FontFamily_fontProviderFetchTimeout 3 ++int styleable FontFamily_fontProviderPackage 4 ++int styleable FontFamily_fontProviderQuery 5 ++int styleable FontFamily_fontProviderSystemFontFamily 6 ++int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable FontFamilyFont_android_font 0 ++int styleable FontFamilyFont_android_fontStyle 1 ++int styleable FontFamilyFont_android_fontVariationSettings 2 ++int styleable FontFamilyFont_android_fontWeight 3 ++int styleable FontFamilyFont_android_ttcIndex 4 ++int styleable FontFamilyFont_font 5 ++int styleable FontFamilyFont_fontStyle 6 ++int styleable FontFamilyFont_fontVariationSettings 7 ++int styleable FontFamilyFont_fontWeight 8 ++int styleable FontFamilyFont_ttcIndex 9 ++int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } ++int styleable Fragment_android_id 0 ++int styleable Fragment_android_name 1 ++int styleable Fragment_android_tag 2 ++int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } ++int styleable FragmentContainerView_android_name 0 ++int styleable FragmentContainerView_android_tag 1 ++int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable GenericDraweeHierarchy_actualImageScaleType 0 ++int styleable GenericDraweeHierarchy_backgroundImage 1 ++int styleable GenericDraweeHierarchy_fadeDuration 2 ++int styleable GenericDraweeHierarchy_failureImage 3 ++int styleable GenericDraweeHierarchy_failureImageScaleType 4 ++int styleable GenericDraweeHierarchy_overlayImage 5 ++int styleable GenericDraweeHierarchy_placeholderImage 6 ++int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 ++int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 ++int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 ++int styleable GenericDraweeHierarchy_progressBarImage 10 ++int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 ++int styleable GenericDraweeHierarchy_retryImage 12 ++int styleable GenericDraweeHierarchy_retryImageScaleType 13 ++int styleable GenericDraweeHierarchy_roundAsCircle 14 ++int styleable GenericDraweeHierarchy_roundBottomEnd 15 ++int styleable GenericDraweeHierarchy_roundBottomLeft 16 ++int styleable GenericDraweeHierarchy_roundBottomRight 17 ++int styleable GenericDraweeHierarchy_roundBottomStart 18 ++int styleable GenericDraweeHierarchy_roundTopEnd 19 ++int styleable GenericDraweeHierarchy_roundTopLeft 20 ++int styleable GenericDraweeHierarchy_roundTopRight 21 ++int styleable GenericDraweeHierarchy_roundTopStart 22 ++int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 ++int styleable GenericDraweeHierarchy_roundedCornerRadius 24 ++int styleable GenericDraweeHierarchy_roundingBorderColor 25 ++int styleable GenericDraweeHierarchy_roundingBorderPadding 26 ++int styleable GenericDraweeHierarchy_roundingBorderWidth 27 ++int styleable GenericDraweeHierarchy_viewAspectRatio 28 ++int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } ++int styleable GradientColor_android_centerColor 0 ++int styleable GradientColor_android_centerX 1 ++int styleable GradientColor_android_centerY 2 ++int styleable GradientColor_android_endColor 3 ++int styleable GradientColor_android_endX 4 ++int styleable GradientColor_android_endY 5 ++int styleable GradientColor_android_gradientRadius 6 ++int styleable GradientColor_android_startColor 7 ++int styleable GradientColor_android_startX 8 ++int styleable GradientColor_android_startY 9 ++int styleable GradientColor_android_tileMode 10 ++int styleable GradientColor_android_type 11 ++int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } ++int styleable GradientColorItem_android_color 0 ++int styleable GradientColorItem_android_offset 1 ++int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } ++int styleable LinearLayoutCompat_android_baselineAligned 0 ++int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 ++int styleable LinearLayoutCompat_android_gravity 2 ++int styleable LinearLayoutCompat_android_orientation 3 ++int styleable LinearLayoutCompat_android_weightSum 4 ++int styleable LinearLayoutCompat_divider 5 ++int styleable LinearLayoutCompat_dividerPadding 6 ++int styleable LinearLayoutCompat_measureWithLargestChild 7 ++int styleable LinearLayoutCompat_showDividers 8 ++int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } ++int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 ++int styleable LinearLayoutCompat_Layout_android_layout_height 1 ++int styleable LinearLayoutCompat_Layout_android_layout_weight 2 ++int styleable LinearLayoutCompat_Layout_android_layout_width 3 ++int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } ++int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 ++int styleable ListPopupWindow_android_dropDownVerticalOffset 1 ++int[] styleable LoadingImageView { 0x0, 0x0, 0x0 } ++int styleable LoadingImageView_circleCrop 0 ++int styleable LoadingImageView_imageAspectRatio 1 ++int styleable LoadingImageView_imageAspectRatioAdjust 2 ++int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } ++int styleable MenuGroup_android_checkableBehavior 0 ++int styleable MenuGroup_android_enabled 1 ++int styleable MenuGroup_android_id 2 ++int styleable MenuGroup_android_menuCategory 3 ++int styleable MenuGroup_android_orderInCategory 4 ++int styleable MenuGroup_android_visible 5 ++int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable MenuItem_actionLayout 0 ++int styleable MenuItem_actionProviderClass 1 ++int styleable MenuItem_actionViewClass 2 ++int styleable MenuItem_alphabeticModifiers 3 ++int styleable MenuItem_android_alphabeticShortcut 4 ++int styleable MenuItem_android_checkable 5 ++int styleable MenuItem_android_checked 6 ++int styleable MenuItem_android_enabled 7 ++int styleable MenuItem_android_icon 8 ++int styleable MenuItem_android_id 9 ++int styleable MenuItem_android_menuCategory 10 ++int styleable MenuItem_android_numericShortcut 11 ++int styleable MenuItem_android_onClick 12 ++int styleable MenuItem_android_orderInCategory 13 ++int styleable MenuItem_android_title 14 ++int styleable MenuItem_android_titleCondensed 15 ++int styleable MenuItem_android_visible 16 ++int styleable MenuItem_contentDescription 17 ++int styleable MenuItem_iconTint 18 ++int styleable MenuItem_iconTintMode 19 ++int styleable MenuItem_numericModifiers 20 ++int styleable MenuItem_showAsAction 21 ++int styleable MenuItem_tooltipText 22 ++int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } ++int styleable MenuView_android_headerBackground 0 ++int styleable MenuView_android_horizontalDivider 1 ++int styleable MenuView_android_itemBackground 2 ++int styleable MenuView_android_itemIconDisabledAlpha 3 ++int styleable MenuView_android_itemTextAppearance 4 ++int styleable MenuView_android_verticalDivider 5 ++int styleable MenuView_android_windowAnimationStyle 6 ++int styleable MenuView_preserveIconSpacing 7 ++int styleable MenuView_subMenuArrow 8 ++int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } ++int styleable PopupWindow_android_popupAnimationStyle 0 ++int styleable PopupWindow_android_popupBackground 1 ++int styleable PopupWindow_overlapAnchor 2 ++int[] styleable PopupWindowBackgroundState { 0x0 } ++int styleable PopupWindowBackgroundState_state_above_anchor 0 ++int[] styleable RecycleListView { 0x0, 0x0 } ++int styleable RecycleListView_paddingBottomNoButtons 0 ++int styleable RecycleListView_paddingTopNoTitle 1 ++int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SearchView_android_focusable 0 ++int styleable SearchView_android_imeOptions 1 ++int styleable SearchView_android_inputType 2 ++int styleable SearchView_android_maxWidth 3 ++int styleable SearchView_closeIcon 4 ++int styleable SearchView_commitIcon 5 ++int styleable SearchView_defaultQueryHint 6 ++int styleable SearchView_goIcon 7 ++int styleable SearchView_iconifiedByDefault 8 ++int styleable SearchView_layout 9 ++int styleable SearchView_queryBackground 10 ++int styleable SearchView_queryHint 11 ++int styleable SearchView_searchHintIcon 12 ++int styleable SearchView_searchIcon 13 ++int styleable SearchView_submitBackground 14 ++int styleable SearchView_suggestionRowLayout 15 ++int styleable SearchView_voiceIcon 16 ++int[] styleable SignInButton { 0x0, 0x0, 0x0 } ++int styleable SignInButton_buttonSize 0 ++int styleable SignInButton_colorScheme 1 ++int styleable SignInButton_scopeUris 2 ++int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SimpleDraweeView_actualImageResource 0 ++int styleable SimpleDraweeView_actualImageUri 1 ++int styleable SimpleDraweeView_backgroundImage 2 ++int styleable SimpleDraweeView_fadeDuration 3 ++int styleable SimpleDraweeView_failureImage 4 ++int styleable SimpleDraweeView_failureImageScaleType 5 ++int styleable SimpleDraweeView_overlayImage 6 ++int styleable SimpleDraweeView_placeholderImage 7 ++int styleable SimpleDraweeView_placeholderImageScaleType 8 ++int styleable SimpleDraweeView_pressedStateOverlayImage 9 ++int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 ++int styleable SimpleDraweeView_progressBarImage 11 ++int styleable SimpleDraweeView_progressBarImageScaleType 12 ++int styleable SimpleDraweeView_retryImage 13 ++int styleable SimpleDraweeView_retryImageScaleType 14 ++int styleable SimpleDraweeView_roundAsCircle 15 ++int styleable SimpleDraweeView_roundBottomEnd 16 ++int styleable SimpleDraweeView_roundBottomLeft 17 ++int styleable SimpleDraweeView_roundBottomRight 18 ++int styleable SimpleDraweeView_roundBottomStart 19 ++int styleable SimpleDraweeView_roundTopEnd 20 ++int styleable SimpleDraweeView_roundTopLeft 21 ++int styleable SimpleDraweeView_roundTopRight 22 ++int styleable SimpleDraweeView_roundTopStart 23 ++int styleable SimpleDraweeView_roundWithOverlayColor 24 ++int styleable SimpleDraweeView_roundedCornerRadius 25 ++int styleable SimpleDraweeView_roundingBorderColor 26 ++int styleable SimpleDraweeView_roundingBorderPadding 27 ++int styleable SimpleDraweeView_roundingBorderWidth 28 ++int styleable SimpleDraweeView_viewAspectRatio 29 ++int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } ++int styleable Spinner_android_dropDownWidth 0 ++int styleable Spinner_android_entries 1 ++int styleable Spinner_android_popupBackground 2 ++int styleable Spinner_android_prompt 3 ++int styleable Spinner_popupTheme 4 ++int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } ++int styleable StateListDrawable_android_constantSize 0 ++int styleable StateListDrawable_android_dither 1 ++int styleable StateListDrawable_android_enterFadeDuration 2 ++int styleable StateListDrawable_android_exitFadeDuration 3 ++int styleable StateListDrawable_android_variablePadding 4 ++int styleable StateListDrawable_android_visible 5 ++int[] styleable StateListDrawableItem { 0x1010199 } ++int styleable StateListDrawableItem_android_drawable 0 ++int[] styleable SwipeRefreshLayout { 0x0 } ++int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 ++int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SwitchCompat_android_textOff 0 ++int styleable SwitchCompat_android_textOn 1 ++int styleable SwitchCompat_android_thumb 2 ++int styleable SwitchCompat_showText 3 ++int styleable SwitchCompat_splitTrack 4 ++int styleable SwitchCompat_switchMinWidth 5 ++int styleable SwitchCompat_switchPadding 6 ++int styleable SwitchCompat_switchTextAppearance 7 ++int styleable SwitchCompat_thumbTextPadding 8 ++int styleable SwitchCompat_thumbTint 9 ++int styleable SwitchCompat_thumbTintMode 10 ++int styleable SwitchCompat_track 11 ++int styleable SwitchCompat_trackTint 12 ++int styleable SwitchCompat_trackTintMode 13 ++int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } ++int styleable TextAppearance_android_fontFamily 0 ++int styleable TextAppearance_android_shadowColor 1 ++int styleable TextAppearance_android_shadowDx 2 ++int styleable TextAppearance_android_shadowDy 3 ++int styleable TextAppearance_android_shadowRadius 4 ++int styleable TextAppearance_android_textColor 5 ++int styleable TextAppearance_android_textColorHint 6 ++int styleable TextAppearance_android_textColorLink 7 ++int styleable TextAppearance_android_textFontWeight 8 ++int styleable TextAppearance_android_textSize 9 ++int styleable TextAppearance_android_textStyle 10 ++int styleable TextAppearance_android_typeface 11 ++int styleable TextAppearance_fontFamily 12 ++int styleable TextAppearance_fontVariationSettings 13 ++int styleable TextAppearance_textAllCaps 14 ++int styleable TextAppearance_textLocale 15 ++int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable Toolbar_android_gravity 0 ++int styleable Toolbar_android_minHeight 1 ++int styleable Toolbar_buttonGravity 2 ++int styleable Toolbar_collapseContentDescription 3 ++int styleable Toolbar_collapseIcon 4 ++int styleable Toolbar_contentInsetEnd 5 ++int styleable Toolbar_contentInsetEndWithActions 6 ++int styleable Toolbar_contentInsetLeft 7 ++int styleable Toolbar_contentInsetRight 8 ++int styleable Toolbar_contentInsetStart 9 ++int styleable Toolbar_contentInsetStartWithNavigation 10 ++int styleable Toolbar_logo 11 ++int styleable Toolbar_logoDescription 12 ++int styleable Toolbar_maxButtonHeight 13 ++int styleable Toolbar_menu 14 ++int styleable Toolbar_navigationContentDescription 15 ++int styleable Toolbar_navigationIcon 16 ++int styleable Toolbar_popupTheme 17 ++int styleable Toolbar_subtitle 18 ++int styleable Toolbar_subtitleTextAppearance 19 ++int styleable Toolbar_subtitleTextColor 20 ++int styleable Toolbar_title 21 ++int styleable Toolbar_titleMargin 22 ++int styleable Toolbar_titleMarginBottom 23 ++int styleable Toolbar_titleMarginEnd 24 ++int styleable Toolbar_titleMarginStart 25 ++int styleable Toolbar_titleMarginTop 26 ++int styleable Toolbar_titleMargins 27 ++int styleable Toolbar_titleTextAppearance 28 ++int styleable Toolbar_titleTextColor 29 ++int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } ++int styleable View_android_focusable 0 ++int styleable View_android_theme 1 ++int styleable View_paddingEnd 2 ++int styleable View_paddingStart 3 ++int styleable View_theme 4 ++int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } ++int styleable ViewBackgroundHelper_android_background 0 ++int styleable ViewBackgroundHelper_backgroundTint 1 ++int styleable ViewBackgroundHelper_backgroundTintMode 2 ++int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } ++int styleable ViewStubCompat_android_id 0 ++int styleable ViewStubCompat_android_inflatedId 1 ++int styleable ViewStubCompat_android_layout 2 ++int[] styleable mapbox_MapView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable mapbox_MapView_mapbox_attributionClickable 0 ++int styleable mapbox_MapView_mapbox_attributionEnabled 1 ++int styleable mapbox_MapView_mapbox_attributionGravity 2 ++int styleable mapbox_MapView_mapbox_attributionIconColor 3 ++int styleable mapbox_MapView_mapbox_attributionMarginBottom 4 ++int styleable mapbox_MapView_mapbox_attributionMarginLeft 5 ++int styleable mapbox_MapView_mapbox_attributionMarginRight 6 ++int styleable mapbox_MapView_mapbox_attributionMarginTop 7 ++int styleable mapbox_MapView_mapbox_cameraAnchorX 8 ++int styleable mapbox_MapView_mapbox_cameraAnchorY 9 ++int styleable mapbox_MapView_mapbox_cameraBearing 10 ++int styleable mapbox_MapView_mapbox_cameraPaddingBottom 11 ++int styleable mapbox_MapView_mapbox_cameraPaddingLeft 12 ++int styleable mapbox_MapView_mapbox_cameraPaddingRight 13 ++int styleable mapbox_MapView_mapbox_cameraPaddingTop 14 ++int styleable mapbox_MapView_mapbox_cameraPitch 15 ++int styleable mapbox_MapView_mapbox_cameraTargetLat 16 ++int styleable mapbox_MapView_mapbox_cameraTargetLng 17 ++int styleable mapbox_MapView_mapbox_cameraZoom 18 ++int styleable mapbox_MapView_mapbox_compassClickable 19 ++int styleable mapbox_MapView_mapbox_compassEnabled 20 ++int styleable mapbox_MapView_mapbox_compassFadeWhenFacingNorth 21 ++int styleable mapbox_MapView_mapbox_compassGravity 22 ++int styleable mapbox_MapView_mapbox_compassImage 23 ++int styleable mapbox_MapView_mapbox_compassMarginBottom 24 ++int styleable mapbox_MapView_mapbox_compassMarginLeft 25 ++int styleable mapbox_MapView_mapbox_compassMarginRight 26 ++int styleable mapbox_MapView_mapbox_compassMarginTop 27 ++int styleable mapbox_MapView_mapbox_compassOpacity 28 ++int styleable mapbox_MapView_mapbox_compassRotation 29 ++int styleable mapbox_MapView_mapbox_compassVisibility 30 ++int styleable mapbox_MapView_mapbox_gesturesDoubleTapToZoomInEnabled 31 ++int styleable mapbox_MapView_mapbox_gesturesDoubleTouchToZoomOutEnabled 32 ++int styleable mapbox_MapView_mapbox_gesturesFocalPointX 33 ++int styleable mapbox_MapView_mapbox_gesturesFocalPointY 34 ++int styleable mapbox_MapView_mapbox_gesturesIncreasePinchToZoomThresholdWhenRotating 35 ++int styleable mapbox_MapView_mapbox_gesturesIncreaseRotateThresholdWhenPinchingToZoom 36 ++int styleable mapbox_MapView_mapbox_gesturesPinchScrollEnabled 37 ++int styleable mapbox_MapView_mapbox_gesturesPinchToZoomDecelerationEnabled 38 ++int styleable mapbox_MapView_mapbox_gesturesPinchToZoomEnabled 39 ++int styleable mapbox_MapView_mapbox_gesturesPitchEnabled 40 ++int styleable mapbox_MapView_mapbox_gesturesQuickZoomEnabled 41 ++int styleable mapbox_MapView_mapbox_gesturesRotateDecelerationEnabled 42 ++int styleable mapbox_MapView_mapbox_gesturesRotateEnabled 43 ++int styleable mapbox_MapView_mapbox_gesturesScrollDecelerationEnabled 44 ++int styleable mapbox_MapView_mapbox_gesturesScrollEnabled 45 ++int styleable mapbox_MapView_mapbox_gesturesScrollMode 46 ++int styleable mapbox_MapView_mapbox_gesturesSimultaneousRotateAndPinchToZoomEnabled 47 ++int styleable mapbox_MapView_mapbox_gesturesZoomAnimationAmount 48 ++int styleable mapbox_MapView_mapbox_locationComponentAccuracyRingBorderColor 49 ++int styleable mapbox_MapView_mapbox_locationComponentAccuracyRingColor 50 ++int styleable mapbox_MapView_mapbox_locationComponentEnabled 51 ++int styleable mapbox_MapView_mapbox_locationComponentLayerAbove 52 ++int styleable mapbox_MapView_mapbox_locationComponentLayerBelow 53 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuck 54 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DBearingImage 55 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DOpacity 56 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DScaleExpression 57 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DShadowImage 58 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DTopImage 59 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelOpacity 60 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_x 61 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_y 62 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_z 63 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelScaleExpression 64 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelScale_x 65 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelScale_y 66 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelScale_z 67 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lat 68 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lon 69 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_z 70 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelUri 71 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DPosition_lat 72 ++int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DPosition_lon 73 ++int styleable mapbox_MapView_mapbox_locationComponentPuckBearingEnabled 74 ++int styleable mapbox_MapView_mapbox_locationComponentPuckBearingSource 75 ++int styleable mapbox_MapView_mapbox_locationComponentPulsingColor 76 ++int styleable mapbox_MapView_mapbox_locationComponentPulsingEnabled 77 ++int styleable mapbox_MapView_mapbox_locationComponentPulsingMaxRadius 78 ++int styleable mapbox_MapView_mapbox_locationComponentShowAccuracyRing 79 ++int styleable mapbox_MapView_mapbox_logoEnabled 80 ++int styleable mapbox_MapView_mapbox_logoGravity 81 ++int styleable mapbox_MapView_mapbox_logoMarginBottom 82 ++int styleable mapbox_MapView_mapbox_logoMarginLeft 83 ++int styleable mapbox_MapView_mapbox_logoMarginRight 84 ++int styleable mapbox_MapView_mapbox_logoMarginTop 85 ++int styleable mapbox_MapView_mapbox_mapAntialiasingSampleCount 86 ++int styleable mapbox_MapView_mapbox_mapConstrainMode 87 ++int styleable mapbox_MapView_mapbox_mapContextMode 88 ++int styleable mapbox_MapView_mapbox_mapCrossSourceCollisionsEnabled 89 ++int styleable mapbox_MapView_mapbox_mapFontFamily 90 ++int styleable mapbox_MapView_mapbox_mapGlyphRasterizationMode 91 ++int styleable mapbox_MapView_mapbox_mapOrientation 92 ++int styleable mapbox_MapView_mapbox_mapPixelRatio 93 ++int styleable mapbox_MapView_mapbox_mapSurface 94 ++int styleable mapbox_MapView_mapbox_mapViewportMode 95 ++int styleable mapbox_MapView_mapbox_optimizeForTerrainEnabled 96 ++int styleable mapbox_MapView_mapbox_resourcesAccessToken 97 ++int styleable mapbox_MapView_mapbox_resourcesBaseUrl 98 ++int styleable mapbox_MapView_mapbox_scaleBarBorderWidth 99 ++int styleable mapbox_MapView_mapbox_scaleBarEnabled 100 ++int styleable mapbox_MapView_mapbox_scaleBarGravity 101 ++int styleable mapbox_MapView_mapbox_scaleBarHeight 102 ++int styleable mapbox_MapView_mapbox_scaleBarIsMetricUnits 103 ++int styleable mapbox_MapView_mapbox_scaleBarMarginBottom 104 ++int styleable mapbox_MapView_mapbox_scaleBarMarginLeft 105 ++int styleable mapbox_MapView_mapbox_scaleBarMarginRight 106 ++int styleable mapbox_MapView_mapbox_scaleBarMarginTop 107 ++int styleable mapbox_MapView_mapbox_scaleBarPrimaryColor 108 ++int styleable mapbox_MapView_mapbox_scaleBarRatio 109 ++int styleable mapbox_MapView_mapbox_scaleBarRefreshInterval 110 ++int styleable mapbox_MapView_mapbox_scaleBarSecondaryColor 111 ++int styleable mapbox_MapView_mapbox_scaleBarShowTextBorder 112 ++int styleable mapbox_MapView_mapbox_scaleBarTextBarMargin 113 ++int styleable mapbox_MapView_mapbox_scaleBarTextBorderWidth 114 ++int styleable mapbox_MapView_mapbox_scaleBarTextColor 115 ++int styleable mapbox_MapView_mapbox_scaleBarTextSize 116 ++int styleable mapbox_MapView_mapbox_scaleBarUseContinuousRendering 117 ++int styleable mapbox_MapView_mapbox_styleUri 118 ++int xml rn_dev_preferences 0x0 +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat +new file mode 100644 +index 0000000..a8edffd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat +new file mode 100644 +index 0000000..b5c2fcd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat +new file mode 100644 +index 0000000..c1bfd3d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat +new file mode 100644 +index 0000000..f91112d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..d21dfde +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1,5 @@ ++#Tue Jun 24 13:45:25 CEST 2025 ++com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable-xxhdpi/red_marker.png=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png ++com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable/empty.xml=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml ++com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable/empty_drawable.png=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png ++com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/layout/annotation.xml=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..9c03766 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +@@ -0,0 +1,4 @@ ++ ++ ++ RNMBX ++ +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..5bfacd7 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++RNMBX +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..bd78841 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..8415eee +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..821657b +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module b/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module +new file mode 100644 +index 0000000..0964712 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class +new file mode 100644 +index 0000000..5e32231 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class +new file mode 100644 +index 0000000..a8c2f66 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class +new file mode 100644 +index 0000000..d2a0452 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class +new file mode 100644 +index 0000000..f6b7cba +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class +new file mode 100644 +index 0000000..0b8dd9d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class +new file mode 100644 +index 0000000..9a528e6 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class +new file mode 100644 +index 0000000..6fb1efd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class +new file mode 100644 +index 0000000..70bc3dd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class +new file mode 100644 +index 0000000..ed381a2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class +new file mode 100644 +index 0000000..985d271 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class +new file mode 100644 +index 0000000..7047354 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class +new file mode 100644 +index 0000000..0f18f08 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class +new file mode 100644 +index 0000000..12d9909 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class +new file mode 100644 +index 0000000..c7878ef +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class +new file mode 100644 +index 0000000..23b9978 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class +new file mode 100644 +index 0000000..5d06f34 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class +new file mode 100644 +index 0000000..a4302dc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class +new file mode 100644 +index 0000000..3d9fa57 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class +new file mode 100644 +index 0000000..3c6ac47 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class +new file mode 100644 +index 0000000..2dfcb57 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class +new file mode 100644 +index 0000000..ade55c5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class +new file mode 100644 +index 0000000..247d012 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class +new file mode 100644 +index 0000000..8b4cf02 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class +new file mode 100644 +index 0000000..9c274f7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class +new file mode 100644 +index 0000000..c1456da +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class +new file mode 100644 +index 0000000..911dd7d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class +new file mode 100644 +index 0000000..bd1dbe2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class +new file mode 100644 +index 0000000..ee870f6 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class +new file mode 100644 +index 0000000..1c38958 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class +new file mode 100644 +index 0000000..c37a8c4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class +new file mode 100644 +index 0000000..d038c0e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class +new file mode 100644 +index 0000000..d258fd6 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class +new file mode 100644 +index 0000000..e44baa1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class +new file mode 100644 +index 0000000..8358125 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class +new file mode 100644 +index 0000000..15aeb39 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class +new file mode 100644 +index 0000000..1294ede +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class +new file mode 100644 +index 0000000..71f74a4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class +new file mode 100644 +index 0000000..7549a5c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class +new file mode 100644 +index 0000000..6f402de +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class +new file mode 100644 +index 0000000..e9c8e13 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class +new file mode 100644 +index 0000000..3fc9f97 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class +new file mode 100644 +index 0000000..6af0e55 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class +new file mode 100644 +index 0000000..44ecde3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class +new file mode 100644 +index 0000000..f3f0172 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class +new file mode 100644 +index 0000000..acd3826 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class +new file mode 100644 +index 0000000..d8c2ac8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class +new file mode 100644 +index 0000000..49ffdcd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class +new file mode 100644 +index 0000000..00f2061 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class +new file mode 100644 +index 0000000..d350fbc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class +new file mode 100644 +index 0000000..e65fc48 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class +new file mode 100644 +index 0000000..a3cf645 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class +new file mode 100644 +index 0000000..d7a579d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class +new file mode 100644 +index 0000000..76b162d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class +new file mode 100644 +index 0000000..8fef7b8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class +new file mode 100644 +index 0000000..462964a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class +new file mode 100644 +index 0000000..16252f1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class +new file mode 100644 +index 0000000..1dddaf8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class +new file mode 100644 +index 0000000..aa0f868 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class +new file mode 100644 +index 0000000..5fb7864 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class +new file mode 100644 +index 0000000..b60a5e7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class +new file mode 100644 +index 0000000..df96c2a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class +new file mode 100644 +index 0000000..4bf8e87 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class +new file mode 100644 +index 0000000..f8a1fe9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class +new file mode 100644 +index 0000000..90ddbc2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class +new file mode 100644 +index 0000000..9dcc41e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class +new file mode 100644 +index 0000000..1b29543 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class +new file mode 100644 +index 0000000..6037aae +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class +new file mode 100644 +index 0000000..8f80165 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class +new file mode 100644 +index 0000000..b10cfcc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class +new file mode 100644 +index 0000000..2abedc1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class +new file mode 100644 +index 0000000..4bff0da +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class +new file mode 100644 +index 0000000..e663974 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class +new file mode 100644 +index 0000000..dc6840e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class +new file mode 100644 +index 0000000..c6a87ed +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class +new file mode 100644 +index 0000000..fcf07a7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class +new file mode 100644 +index 0000000..aa51ee0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class +new file mode 100644 +index 0000000..2c464db +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class +new file mode 100644 +index 0000000..ef61e65 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class +new file mode 100644 +index 0000000..7cc9e13 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class +new file mode 100644 +index 0000000..69afe95 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class +new file mode 100644 +index 0000000..3285aa5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class +new file mode 100644 +index 0000000..59dfafa +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class +new file mode 100644 +index 0000000..b3a5edb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class +new file mode 100644 +index 0000000..9f3d2b2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class +new file mode 100644 +index 0000000..ab9dd46 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class +new file mode 100644 +index 0000000..29ec60a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class +new file mode 100644 +index 0000000..65ed6f1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class +new file mode 100644 +index 0000000..fb9b891 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class +new file mode 100644 +index 0000000..4df9915 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class +new file mode 100644 +index 0000000..8d62fee +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class +new file mode 100644 +index 0000000..a0141ee +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class +new file mode 100644 +index 0000000..5933243 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class +new file mode 100644 +index 0000000..e2c1949 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class +new file mode 100644 +index 0000000..63e3cc9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class +new file mode 100644 +index 0000000..4e39312 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..826dbbd +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +@@ -0,0 +1,10 @@ ++R_DEF: Internal format may change without notice ++local ++drawable empty ++drawable empty_drawable ++drawable red_marker ++id annotation_img ++id annotation_layout ++id annotation_view_container ++layout annotation ++string app_name +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..61a7b76 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,17 @@ ++1 ++2 ++4 ++5 ++6 ++7 ++7-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:5-67 ++7-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:22-64 ++8 ++8-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:5-80 ++8-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:22-78 ++9 ++9-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:5-78 ++9-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:22-76 ++10 ++11 +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..c8865b5 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,11 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png +new file mode 100644 +index 0000000..be782e1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml +new file mode 100644 +index 0000000..1f83bff +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml +@@ -0,0 +1,5 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png +new file mode 100644 +index 0000000..9da19ea +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml +new file mode 100644 +index 0000000..4994bd0 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml +@@ -0,0 +1,17 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml +new file mode 100644 +index 0000000..9c03766 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml +@@ -0,0 +1,4 @@ ++ ++ ++ RNMBX ++ +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..a84121b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..101e6a8 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1,1774 @@ ++com.rnmapbox.rnmbx ++anim abc_fade_in ++anim abc_fade_out ++anim abc_grow_fade_in_from_bottom ++anim abc_popup_enter ++anim abc_popup_exit ++anim abc_shrink_fade_out_from_bottom ++anim abc_slide_in_bottom ++anim abc_slide_in_top ++anim abc_slide_out_bottom ++anim abc_slide_out_top ++anim abc_tooltip_enter ++anim abc_tooltip_exit ++anim btn_checkbox_to_checked_box_inner_merged_animation ++anim btn_checkbox_to_checked_box_outer_merged_animation ++anim btn_checkbox_to_checked_icon_null_animation ++anim btn_checkbox_to_unchecked_box_inner_merged_animation ++anim btn_checkbox_to_unchecked_check_path_merged_animation ++anim btn_checkbox_to_unchecked_icon_null_animation ++anim btn_radio_to_off_mtrl_dot_group_animation ++anim btn_radio_to_off_mtrl_ring_outer_animation ++anim btn_radio_to_off_mtrl_ring_outer_path_animation ++anim btn_radio_to_on_mtrl_dot_group_animation ++anim btn_radio_to_on_mtrl_ring_outer_animation ++anim btn_radio_to_on_mtrl_ring_outer_path_animation ++anim catalyst_fade_in ++anim catalyst_fade_out ++anim catalyst_push_up_in ++anim catalyst_push_up_out ++anim catalyst_slide_down ++anim catalyst_slide_up ++anim fragment_fast_out_extra_slow_in ++animator fragment_close_enter ++animator fragment_close_exit ++animator fragment_fade_enter ++animator fragment_fade_exit ++animator fragment_open_enter ++animator fragment_open_exit ++attr actionBarDivider ++attr actionBarItemBackground ++attr actionBarPopupTheme ++attr actionBarSize ++attr actionBarSplitStyle ++attr actionBarStyle ++attr actionBarTabBarStyle ++attr actionBarTabStyle ++attr actionBarTabTextStyle ++attr actionBarTheme ++attr actionBarWidgetTheme ++attr actionButtonStyle ++attr actionDropDownStyle ++attr actionLayout ++attr actionMenuTextAppearance ++attr actionMenuTextColor ++attr actionModeBackground ++attr actionModeCloseButtonStyle ++attr actionModeCloseContentDescription ++attr actionModeCloseDrawable ++attr actionModeCopyDrawable ++attr actionModeCutDrawable ++attr actionModeFindDrawable ++attr actionModePasteDrawable ++attr actionModePopupWindowStyle ++attr actionModeSelectAllDrawable ++attr actionModeShareDrawable ++attr actionModeSplitBackground ++attr actionModeStyle ++attr actionModeTheme ++attr actionModeWebSearchDrawable ++attr actionOverflowButtonStyle ++attr actionOverflowMenuStyle ++attr actionProviderClass ++attr actionViewClass ++attr activityChooserViewStyle ++attr actualImageResource ++attr actualImageScaleType ++attr actualImageUri ++attr alertDialogButtonGroupStyle ++attr alertDialogCenterButtons ++attr alertDialogStyle ++attr alertDialogTheme ++attr allowStacking ++attr alpha ++attr alphabeticModifiers ++attr arrowHeadLength ++attr arrowShaftLength ++attr autoCompleteTextViewStyle ++attr autoSizeMaxTextSize ++attr autoSizeMinTextSize ++attr autoSizePresetSizes ++attr autoSizeStepGranularity ++attr autoSizeTextType ++attr autofillInlineSuggestionChip ++attr autofillInlineSuggestionEndIconStyle ++attr autofillInlineSuggestionStartIconStyle ++attr autofillInlineSuggestionSubtitle ++attr autofillInlineSuggestionTitle ++attr background ++attr backgroundImage ++attr backgroundSplit ++attr backgroundStacked ++attr backgroundTint ++attr backgroundTintMode ++attr barLength ++attr borderlessButtonStyle ++attr buttonBarButtonStyle ++attr buttonBarNegativeButtonStyle ++attr buttonBarNeutralButtonStyle ++attr buttonBarPositiveButtonStyle ++attr buttonBarStyle ++attr buttonCompat ++attr buttonGravity ++attr buttonIconDimen ++attr buttonPanelSideLayout ++attr buttonSize ++attr buttonStyle ++attr buttonStyleSmall ++attr buttonTint ++attr buttonTintMode ++attr checkMarkCompat ++attr checkMarkTint ++attr checkMarkTintMode ++attr checkboxStyle ++attr checkedTextViewStyle ++attr circleCrop ++attr closeIcon ++attr closeItemLayout ++attr collapseContentDescription ++attr collapseIcon ++attr color ++attr colorAccent ++attr colorBackgroundFloating ++attr colorButtonNormal ++attr colorControlActivated ++attr colorControlHighlight ++attr colorControlNormal ++attr colorError ++attr colorPrimary ++attr colorPrimaryDark ++attr colorScheme ++attr colorSwitchThumbNormal ++attr commitIcon ++attr contentDescription ++attr contentInsetEnd ++attr contentInsetEndWithActions ++attr contentInsetLeft ++attr contentInsetRight ++attr contentInsetStart ++attr contentInsetStartWithNavigation ++attr controlBackground ++attr coordinatorLayoutStyle ++attr customNavigationLayout ++attr defaultQueryHint ++attr dialogCornerRadius ++attr dialogPreferredPadding ++attr dialogTheme ++attr displayOptions ++attr divider ++attr dividerHorizontal ++attr dividerPadding ++attr dividerVertical ++attr drawableBottomCompat ++attr drawableEndCompat ++attr drawableLeftCompat ++attr drawableRightCompat ++attr drawableSize ++attr drawableStartCompat ++attr drawableTint ++attr drawableTintMode ++attr drawableTopCompat ++attr drawerArrowStyle ++attr dropDownListViewStyle ++attr dropdownListPreferredItemHeight ++attr editTextBackground ++attr editTextColor ++attr editTextStyle ++attr elevation ++attr emojiCompatEnabled ++attr expandActivityOverflowButtonDrawable ++attr fadeDuration ++attr failureImage ++attr failureImageScaleType ++attr firstBaselineToTopHeight ++attr font ++attr fontFamily ++attr fontProviderAuthority ++attr fontProviderCerts ++attr fontProviderFetchStrategy ++attr fontProviderFetchTimeout ++attr fontProviderPackage ++attr fontProviderQuery ++attr fontProviderSystemFontFamily ++attr fontStyle ++attr fontVariationSettings ++attr fontWeight ++attr gapBetweenBars ++attr goIcon ++attr height ++attr hideOnContentScroll ++attr homeAsUpIndicator ++attr homeLayout ++attr icon ++attr iconTint ++attr iconTintMode ++attr iconifiedByDefault ++attr imageAspectRatio ++attr imageAspectRatioAdjust ++attr imageButtonStyle ++attr indeterminateProgressStyle ++attr initialActivityCount ++attr isAutofillInlineSuggestionTheme ++attr isLightTheme ++attr itemPadding ++attr keylines ++attr lStar ++attr lastBaselineToBottomHeight ++attr layout ++attr layout_anchor ++attr layout_anchorGravity ++attr layout_behavior ++attr layout_dodgeInsetEdges ++attr layout_insetEdge ++attr layout_keyline ++attr lineHeight ++attr listChoiceBackgroundIndicator ++attr listChoiceIndicatorMultipleAnimated ++attr listChoiceIndicatorSingleAnimated ++attr listDividerAlertDialog ++attr listItemLayout ++attr listLayout ++attr listMenuViewStyle ++attr listPopupWindowStyle ++attr listPreferredItemHeight ++attr listPreferredItemHeightLarge ++attr listPreferredItemHeightSmall ++attr listPreferredItemPaddingEnd ++attr listPreferredItemPaddingLeft ++attr listPreferredItemPaddingRight ++attr listPreferredItemPaddingStart ++attr logo ++attr logoDescription ++attr mapbox_attributionClickable ++attr mapbox_attributionEnabled ++attr mapbox_attributionGravity ++attr mapbox_attributionIconColor ++attr mapbox_attributionMarginBottom ++attr mapbox_attributionMarginLeft ++attr mapbox_attributionMarginRight ++attr mapbox_attributionMarginTop ++attr mapbox_cameraAnchorX ++attr mapbox_cameraAnchorY ++attr mapbox_cameraBearing ++attr mapbox_cameraPaddingBottom ++attr mapbox_cameraPaddingLeft ++attr mapbox_cameraPaddingRight ++attr mapbox_cameraPaddingTop ++attr mapbox_cameraPitch ++attr mapbox_cameraTargetLat ++attr mapbox_cameraTargetLng ++attr mapbox_cameraZoom ++attr mapbox_compassClickable ++attr mapbox_compassEnabled ++attr mapbox_compassFadeWhenFacingNorth ++attr mapbox_compassGravity ++attr mapbox_compassImage ++attr mapbox_compassMarginBottom ++attr mapbox_compassMarginLeft ++attr mapbox_compassMarginRight ++attr mapbox_compassMarginTop ++attr mapbox_compassOpacity ++attr mapbox_compassRotation ++attr mapbox_compassVisibility ++attr mapbox_gesturesDoubleTapToZoomInEnabled ++attr mapbox_gesturesDoubleTouchToZoomOutEnabled ++attr mapbox_gesturesFocalPointX ++attr mapbox_gesturesFocalPointY ++attr mapbox_gesturesIncreasePinchToZoomThresholdWhenRotating ++attr mapbox_gesturesIncreaseRotateThresholdWhenPinchingToZoom ++attr mapbox_gesturesPinchScrollEnabled ++attr mapbox_gesturesPinchToZoomDecelerationEnabled ++attr mapbox_gesturesPinchToZoomEnabled ++attr mapbox_gesturesPitchEnabled ++attr mapbox_gesturesQuickZoomEnabled ++attr mapbox_gesturesRotateDecelerationEnabled ++attr mapbox_gesturesRotateEnabled ++attr mapbox_gesturesScrollDecelerationEnabled ++attr mapbox_gesturesScrollEnabled ++attr mapbox_gesturesScrollMode ++attr mapbox_gesturesSimultaneousRotateAndPinchToZoomEnabled ++attr mapbox_gesturesZoomAnimationAmount ++attr mapbox_locationComponentAccuracyRingBorderColor ++attr mapbox_locationComponentAccuracyRingColor ++attr mapbox_locationComponentEnabled ++attr mapbox_locationComponentLayerAbove ++attr mapbox_locationComponentLayerBelow ++attr mapbox_locationComponentLocationPuck ++attr mapbox_locationComponentLocationPuckLocationPuck2DBearingImage ++attr mapbox_locationComponentLocationPuckLocationPuck2DOpacity ++attr mapbox_locationComponentLocationPuckLocationPuck2DScaleExpression ++attr mapbox_locationComponentLocationPuckLocationPuck2DShadowImage ++attr mapbox_locationComponentLocationPuckLocationPuck2DTopImage ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelOpacity ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_x ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_y ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_z ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelScaleExpression ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_x ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_y ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_z ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lat ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lon ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_z ++attr mapbox_locationComponentLocationPuckLocationPuck3DModelUri ++attr mapbox_locationComponentLocationPuckLocationPuck3DPosition_lat ++attr mapbox_locationComponentLocationPuckLocationPuck3DPosition_lon ++attr mapbox_locationComponentPuckBearingEnabled ++attr mapbox_locationComponentPuckBearingSource ++attr mapbox_locationComponentPulsingColor ++attr mapbox_locationComponentPulsingEnabled ++attr mapbox_locationComponentPulsingMaxRadius ++attr mapbox_locationComponentShowAccuracyRing ++attr mapbox_logoEnabled ++attr mapbox_logoGravity ++attr mapbox_logoMarginBottom ++attr mapbox_logoMarginLeft ++attr mapbox_logoMarginRight ++attr mapbox_logoMarginTop ++attr mapbox_mapAntialiasingSampleCount ++attr mapbox_mapConstrainMode ++attr mapbox_mapContextMode ++attr mapbox_mapCrossSourceCollisionsEnabled ++attr mapbox_mapFontFamily ++attr mapbox_mapGlyphRasterizationMode ++attr mapbox_mapOrientation ++attr mapbox_mapPixelRatio ++attr mapbox_mapSurface ++attr mapbox_mapViewportMode ++attr mapbox_optimizeForTerrainEnabled ++attr mapbox_resourcesAccessToken ++attr mapbox_resourcesBaseUrl ++attr mapbox_scaleBarBorderWidth ++attr mapbox_scaleBarEnabled ++attr mapbox_scaleBarGravity ++attr mapbox_scaleBarHeight ++attr mapbox_scaleBarIsMetricUnits ++attr mapbox_scaleBarMarginBottom ++attr mapbox_scaleBarMarginLeft ++attr mapbox_scaleBarMarginRight ++attr mapbox_scaleBarMarginTop ++attr mapbox_scaleBarPrimaryColor ++attr mapbox_scaleBarRatio ++attr mapbox_scaleBarRefreshInterval ++attr mapbox_scaleBarSecondaryColor ++attr mapbox_scaleBarShowTextBorder ++attr mapbox_scaleBarTextBarMargin ++attr mapbox_scaleBarTextBorderWidth ++attr mapbox_scaleBarTextColor ++attr mapbox_scaleBarTextSize ++attr mapbox_scaleBarUseContinuousRendering ++attr mapbox_styleUri ++attr maxButtonHeight ++attr measureWithLargestChild ++attr menu ++attr multiChoiceItemLayout ++attr navigationContentDescription ++attr navigationIcon ++attr navigationMode ++attr nestedScrollViewStyle ++attr numericModifiers ++attr overlapAnchor ++attr overlayImage ++attr paddingBottomNoButtons ++attr paddingEnd ++attr paddingStart ++attr paddingTopNoTitle ++attr panelBackground ++attr panelMenuListTheme ++attr panelMenuListWidth ++attr placeholderImage ++attr placeholderImageScaleType ++attr popupMenuStyle ++attr popupTheme ++attr popupWindowStyle ++attr preserveIconSpacing ++attr pressedStateOverlayImage ++attr progressBarAutoRotateInterval ++attr progressBarImage ++attr progressBarImageScaleType ++attr progressBarPadding ++attr progressBarStyle ++attr queryBackground ++attr queryHint ++attr queryPatterns ++attr radioButtonStyle ++attr ratingBarStyle ++attr ratingBarStyleIndicator ++attr ratingBarStyleSmall ++attr retryImage ++attr retryImageScaleType ++attr roundAsCircle ++attr roundBottomEnd ++attr roundBottomLeft ++attr roundBottomRight ++attr roundBottomStart ++attr roundTopEnd ++attr roundTopLeft ++attr roundTopRight ++attr roundTopStart ++attr roundWithOverlayColor ++attr roundedCornerRadius ++attr roundingBorderColor ++attr roundingBorderPadding ++attr roundingBorderWidth ++attr scopeUris ++attr searchHintIcon ++attr searchIcon ++attr searchViewStyle ++attr seekBarStyle ++attr selectableItemBackground ++attr selectableItemBackgroundBorderless ++attr shortcutMatchRequired ++attr showAsAction ++attr showDividers ++attr showText ++attr showTitle ++attr singleChoiceItemLayout ++attr spinBars ++attr spinnerDropDownItemStyle ++attr spinnerStyle ++attr splitTrack ++attr srcCompat ++attr state_above_anchor ++attr statusBarBackground ++attr subMenuArrow ++attr submitBackground ++attr subtitle ++attr subtitleTextAppearance ++attr subtitleTextColor ++attr subtitleTextStyle ++attr suggestionRowLayout ++attr swipeRefreshLayoutProgressSpinnerBackgroundColor ++attr switchMinWidth ++attr switchPadding ++attr switchStyle ++attr switchTextAppearance ++attr textAllCaps ++attr textAppearanceLargePopupMenu ++attr textAppearanceListItem ++attr textAppearanceListItemSecondary ++attr textAppearanceListItemSmall ++attr textAppearancePopupMenuHeader ++attr textAppearanceSearchResultSubtitle ++attr textAppearanceSearchResultTitle ++attr textAppearanceSmallPopupMenu ++attr textColorAlertDialogListItem ++attr textColorSearchUrl ++attr textLocale ++attr theme ++attr thickness ++attr thumbTextPadding ++attr thumbTint ++attr thumbTintMode ++attr tickMark ++attr tickMarkTint ++attr tickMarkTintMode ++attr tint ++attr tintMode ++attr title ++attr titleMargin ++attr titleMarginBottom ++attr titleMarginEnd ++attr titleMarginStart ++attr titleMarginTop ++attr titleMargins ++attr titleTextAppearance ++attr titleTextColor ++attr titleTextStyle ++attr toolbarNavigationButtonStyle ++attr toolbarStyle ++attr tooltipForegroundColor ++attr tooltipFrameBackground ++attr tooltipText ++attr track ++attr trackTint ++attr trackTintMode ++attr ttcIndex ++attr viewAspectRatio ++attr viewInflaterClass ++attr voiceIcon ++attr windowActionBar ++attr windowActionBarOverlay ++attr windowActionModeOverlay ++attr windowFixedHeightMajor ++attr windowFixedHeightMinor ++attr windowFixedWidthMajor ++attr windowFixedWidthMinor ++attr windowMinWidthMajor ++attr windowMinWidthMinor ++attr windowNoTitle ++bool abc_action_bar_embed_tabs ++bool abc_config_actionMenuItemAllCaps ++color abc_background_cache_hint_selector_material_dark ++color abc_background_cache_hint_selector_material_light ++color abc_btn_colored_borderless_text_material ++color abc_btn_colored_text_material ++color abc_color_highlight_material ++color abc_decor_view_status_guard ++color abc_decor_view_status_guard_light ++color abc_hint_foreground_material_dark ++color abc_hint_foreground_material_light ++color abc_primary_text_disable_only_material_dark ++color abc_primary_text_disable_only_material_light ++color abc_primary_text_material_dark ++color abc_primary_text_material_light ++color abc_search_url_text ++color abc_search_url_text_normal ++color abc_search_url_text_pressed ++color abc_search_url_text_selected ++color abc_secondary_text_material_dark ++color abc_secondary_text_material_light ++color abc_tint_btn_checkable ++color abc_tint_default ++color abc_tint_edittext ++color abc_tint_seek_thumb ++color abc_tint_spinner ++color abc_tint_switch_track ++color accent_material_dark ++color accent_material_light ++color androidx_core_ripple_material_light ++color androidx_core_secondary_text_default_material_light ++color background_floating_material_dark ++color background_floating_material_light ++color background_material_dark ++color background_material_light ++color bright_foreground_disabled_material_dark ++color bright_foreground_disabled_material_light ++color bright_foreground_inverse_material_dark ++color bright_foreground_inverse_material_light ++color bright_foreground_material_dark ++color bright_foreground_material_light ++color button_material_dark ++color button_material_light ++color call_notification_answer_color ++color call_notification_decline_color ++color catalyst_logbox_background ++color catalyst_redbox_background ++color common_google_signin_btn_text_dark ++color common_google_signin_btn_text_dark_default ++color common_google_signin_btn_text_dark_disabled ++color common_google_signin_btn_text_dark_focused ++color common_google_signin_btn_text_dark_pressed ++color common_google_signin_btn_text_light ++color common_google_signin_btn_text_light_default ++color common_google_signin_btn_text_light_disabled ++color common_google_signin_btn_text_light_focused ++color common_google_signin_btn_text_light_pressed ++color common_google_signin_btn_tint ++color dim_foreground_disabled_material_dark ++color dim_foreground_disabled_material_light ++color dim_foreground_material_dark ++color dim_foreground_material_light ++color error_color_material_dark ++color error_color_material_light ++color foreground_material_dark ++color foreground_material_light ++color highlighted_text_material_dark ++color highlighted_text_material_light ++color mapbox_blue ++color mapbox_gray ++color mapbox_gray_dark ++color mapbox_location_layer_blue ++color mapbox_location_layer_gray ++color material_blue_grey_800 ++color material_blue_grey_900 ++color material_blue_grey_950 ++color material_deep_teal_200 ++color material_deep_teal_500 ++color material_grey_100 ++color material_grey_300 ++color material_grey_50 ++color material_grey_600 ++color material_grey_800 ++color material_grey_850 ++color material_grey_900 ++color notification_action_color_filter ++color notification_icon_bg_color ++color primary_dark_material_dark ++color primary_dark_material_light ++color primary_material_dark ++color primary_material_light ++color primary_text_default_material_dark ++color primary_text_default_material_light ++color primary_text_disabled_material_dark ++color primary_text_disabled_material_light ++color ripple_material_dark ++color ripple_material_light ++color secondary_text_default_material_dark ++color secondary_text_default_material_light ++color secondary_text_disabled_material_dark ++color secondary_text_disabled_material_light ++color switch_thumb_disabled_material_dark ++color switch_thumb_disabled_material_light ++color switch_thumb_material_dark ++color switch_thumb_material_light ++color switch_thumb_normal_material_dark ++color switch_thumb_normal_material_light ++color tooltip_background_dark ++color tooltip_background_light ++dimen abc_action_bar_content_inset_material ++dimen abc_action_bar_content_inset_with_nav ++dimen abc_action_bar_default_height_material ++dimen abc_action_bar_default_padding_end_material ++dimen abc_action_bar_default_padding_start_material ++dimen abc_action_bar_elevation_material ++dimen abc_action_bar_icon_vertical_padding_material ++dimen abc_action_bar_overflow_padding_end_material ++dimen abc_action_bar_overflow_padding_start_material ++dimen abc_action_bar_stacked_max_height ++dimen abc_action_bar_stacked_tab_max_width ++dimen abc_action_bar_subtitle_bottom_margin_material ++dimen abc_action_bar_subtitle_top_margin_material ++dimen abc_action_button_min_height_material ++dimen abc_action_button_min_width_material ++dimen abc_action_button_min_width_overflow_material ++dimen abc_alert_dialog_button_bar_height ++dimen abc_alert_dialog_button_dimen ++dimen abc_button_inset_horizontal_material ++dimen abc_button_inset_vertical_material ++dimen abc_button_padding_horizontal_material ++dimen abc_button_padding_vertical_material ++dimen abc_cascading_menus_min_smallest_width ++dimen abc_config_prefDialogWidth ++dimen abc_control_corner_material ++dimen abc_control_inset_material ++dimen abc_control_padding_material ++dimen abc_dialog_corner_radius_material ++dimen abc_dialog_fixed_height_major ++dimen abc_dialog_fixed_height_minor ++dimen abc_dialog_fixed_width_major ++dimen abc_dialog_fixed_width_minor ++dimen abc_dialog_list_padding_bottom_no_buttons ++dimen abc_dialog_list_padding_top_no_title ++dimen abc_dialog_min_width_major ++dimen abc_dialog_min_width_minor ++dimen abc_dialog_padding_material ++dimen abc_dialog_padding_top_material ++dimen abc_dialog_title_divider_material ++dimen abc_disabled_alpha_material_dark ++dimen abc_disabled_alpha_material_light ++dimen abc_dropdownitem_icon_width ++dimen abc_dropdownitem_text_padding_left ++dimen abc_dropdownitem_text_padding_right ++dimen abc_edit_text_inset_bottom_material ++dimen abc_edit_text_inset_horizontal_material ++dimen abc_edit_text_inset_top_material ++dimen abc_floating_window_z ++dimen abc_list_item_height_large_material ++dimen abc_list_item_height_material ++dimen abc_list_item_height_small_material ++dimen abc_list_item_padding_horizontal_material ++dimen abc_panel_menu_list_width ++dimen abc_progress_bar_height_material ++dimen abc_search_view_preferred_height ++dimen abc_search_view_preferred_width ++dimen abc_seekbar_track_background_height_material ++dimen abc_seekbar_track_progress_height_material ++dimen abc_select_dialog_padding_start_material ++dimen abc_star_big ++dimen abc_star_medium ++dimen abc_star_small ++dimen abc_switch_padding ++dimen abc_text_size_body_1_material ++dimen abc_text_size_body_2_material ++dimen abc_text_size_button_material ++dimen abc_text_size_caption_material ++dimen abc_text_size_display_1_material ++dimen abc_text_size_display_2_material ++dimen abc_text_size_display_3_material ++dimen abc_text_size_display_4_material ++dimen abc_text_size_headline_material ++dimen abc_text_size_large_material ++dimen abc_text_size_medium_material ++dimen abc_text_size_menu_header_material ++dimen abc_text_size_menu_material ++dimen abc_text_size_small_material ++dimen abc_text_size_subhead_material ++dimen abc_text_size_subtitle_material_toolbar ++dimen abc_text_size_title_material ++dimen abc_text_size_title_material_toolbar ++dimen autofill_inline_suggestion_icon_size ++dimen compass_view_size ++dimen compat_button_inset_horizontal_material ++dimen compat_button_inset_vertical_material ++dimen compat_button_padding_horizontal_material ++dimen compat_button_padding_vertical_material ++dimen compat_control_corner_material ++dimen compat_notification_large_icon_max_height ++dimen compat_notification_large_icon_max_width ++dimen disabled_alpha_material_dark ++dimen disabled_alpha_material_light ++dimen highlight_alpha_material_colored ++dimen highlight_alpha_material_dark ++dimen highlight_alpha_material_light ++dimen hint_alpha_material_dark ++dimen hint_alpha_material_light ++dimen hint_pressed_alpha_material_dark ++dimen hint_pressed_alpha_material_light ++dimen mapbox_angular_velocity_multiplier ++dimen mapbox_defaultMultiTapMovementThreshold ++dimen mapbox_defaultScaleSpanSinceStartThreshold ++dimen mapbox_defaultShovePixelThreshold ++dimen mapbox_density_constant ++dimen mapbox_internalMinSpan23 ++dimen mapbox_internalMinSpan24 ++dimen mapbox_locationComponentTrackingInitialMoveThreshold ++dimen mapbox_locationComponentTrackingMultiFingerMoveThreshold ++dimen mapbox_minimum_angled_scale_speed ++dimen mapbox_minimum_angular_velocity ++dimen mapbox_minimum_scale_span_when_rotating ++dimen mapbox_minimum_scale_speed ++dimen mapbox_minimum_scale_velocity ++dimen mapbox_my_locationview_outer_circle ++dimen notification_action_icon_size ++dimen notification_action_text_size ++dimen notification_big_circle_margin ++dimen notification_content_margin_start ++dimen notification_large_icon_height ++dimen notification_large_icon_width ++dimen notification_main_column_padding_top ++dimen notification_media_narrow_margin ++dimen notification_right_icon_size ++dimen notification_right_side_padding_top ++dimen notification_small_icon_background_padding ++dimen notification_small_icon_size_as_large ++dimen notification_subtext_size ++dimen notification_top_pad ++dimen notification_top_pad_large_text ++dimen tooltip_corner_radius ++dimen tooltip_horizontal_padding ++dimen tooltip_margin ++dimen tooltip_precise_anchor_extra_offset ++dimen tooltip_precise_anchor_threshold ++dimen tooltip_vertical_padding ++dimen tooltip_y_offset_non_touch ++dimen tooltip_y_offset_touch ++drawable abc_ab_share_pack_mtrl_alpha ++drawable abc_action_bar_item_background_material ++drawable abc_btn_borderless_material ++drawable abc_btn_check_material ++drawable abc_btn_check_material_anim ++drawable abc_btn_check_to_on_mtrl_000 ++drawable abc_btn_check_to_on_mtrl_015 ++drawable abc_btn_colored_material ++drawable abc_btn_default_mtrl_shape ++drawable abc_btn_radio_material ++drawable abc_btn_radio_material_anim ++drawable abc_btn_radio_to_on_mtrl_000 ++drawable abc_btn_radio_to_on_mtrl_015 ++drawable abc_btn_switch_to_on_mtrl_00001 ++drawable abc_btn_switch_to_on_mtrl_00012 ++drawable abc_cab_background_internal_bg ++drawable abc_cab_background_top_material ++drawable abc_cab_background_top_mtrl_alpha ++drawable abc_control_background_material ++drawable abc_dialog_material_background ++drawable abc_edit_text_material ++drawable abc_ic_ab_back_material ++drawable abc_ic_arrow_drop_right_black_24dp ++drawable abc_ic_clear_material ++drawable abc_ic_commit_search_api_mtrl_alpha ++drawable abc_ic_go_search_api_material ++drawable abc_ic_menu_copy_mtrl_am_alpha ++drawable abc_ic_menu_cut_mtrl_alpha ++drawable abc_ic_menu_overflow_material ++drawable abc_ic_menu_paste_mtrl_am_alpha ++drawable abc_ic_menu_selectall_mtrl_alpha ++drawable abc_ic_menu_share_mtrl_alpha ++drawable abc_ic_search_api_material ++drawable abc_ic_voice_search_api_material ++drawable abc_item_background_holo_dark ++drawable abc_item_background_holo_light ++drawable abc_list_divider_material ++drawable abc_list_divider_mtrl_alpha ++drawable abc_list_focused_holo ++drawable abc_list_longpressed_holo ++drawable abc_list_pressed_holo_dark ++drawable abc_list_pressed_holo_light ++drawable abc_list_selector_background_transition_holo_dark ++drawable abc_list_selector_background_transition_holo_light ++drawable abc_list_selector_disabled_holo_dark ++drawable abc_list_selector_disabled_holo_light ++drawable abc_list_selector_holo_dark ++drawable abc_list_selector_holo_light ++drawable abc_menu_hardkey_panel_mtrl_mult ++drawable abc_popup_background_mtrl_mult ++drawable abc_ratingbar_indicator_material ++drawable abc_ratingbar_material ++drawable abc_ratingbar_small_material ++drawable abc_scrubber_control_off_mtrl_alpha ++drawable abc_scrubber_control_to_pressed_mtrl_000 ++drawable abc_scrubber_control_to_pressed_mtrl_005 ++drawable abc_scrubber_primary_mtrl_alpha ++drawable abc_scrubber_track_mtrl_alpha ++drawable abc_seekbar_thumb_material ++drawable abc_seekbar_tick_mark_material ++drawable abc_seekbar_track_material ++drawable abc_spinner_mtrl_am_alpha ++drawable abc_spinner_textfield_background_material ++drawable abc_star_black_48dp ++drawable abc_star_half_black_48dp ++drawable abc_switch_thumb_material ++drawable abc_switch_track_mtrl_alpha ++drawable abc_tab_indicator_material ++drawable abc_tab_indicator_mtrl_alpha ++drawable abc_text_cursor_material ++drawable abc_text_select_handle_left_mtrl ++drawable abc_text_select_handle_middle_mtrl ++drawable abc_text_select_handle_right_mtrl ++drawable abc_textfield_activated_mtrl_alpha ++drawable abc_textfield_default_mtrl_alpha ++drawable abc_textfield_search_activated_mtrl_alpha ++drawable abc_textfield_search_default_mtrl_alpha ++drawable abc_textfield_search_material ++drawable abc_vector_test ++drawable autofill_inline_suggestion_chip_background ++drawable btn_checkbox_checked_mtrl ++drawable btn_checkbox_checked_to_unchecked_mtrl_animation ++drawable btn_checkbox_unchecked_mtrl ++drawable btn_checkbox_unchecked_to_checked_mtrl_animation ++drawable btn_radio_off_mtrl ++drawable btn_radio_off_to_on_mtrl_animation ++drawable btn_radio_on_mtrl ++drawable btn_radio_on_to_off_mtrl_animation ++drawable common_full_open_on_phone ++drawable common_google_signin_btn_icon_dark ++drawable common_google_signin_btn_icon_dark_focused ++drawable common_google_signin_btn_icon_dark_normal ++drawable common_google_signin_btn_icon_dark_normal_background ++drawable common_google_signin_btn_icon_disabled ++drawable common_google_signin_btn_icon_light ++drawable common_google_signin_btn_icon_light_focused ++drawable common_google_signin_btn_icon_light_normal ++drawable common_google_signin_btn_icon_light_normal_background ++drawable common_google_signin_btn_text_dark ++drawable common_google_signin_btn_text_dark_focused ++drawable common_google_signin_btn_text_dark_normal ++drawable common_google_signin_btn_text_dark_normal_background ++drawable common_google_signin_btn_text_disabled ++drawable common_google_signin_btn_text_light ++drawable common_google_signin_btn_text_light_focused ++drawable common_google_signin_btn_text_light_normal ++drawable common_google_signin_btn_text_light_normal_background ++drawable empty ++drawable empty_drawable ++drawable googleg_disabled_color_18 ++drawable googleg_standard_color_18 ++drawable ic_call_answer ++drawable ic_call_answer_low ++drawable ic_call_answer_video ++drawable ic_call_answer_video_low ++drawable ic_call_decline ++drawable ic_call_decline_low ++drawable ic_resume ++drawable mapbox_attribution_default ++drawable mapbox_attribution_selected ++drawable mapbox_attribution_selector ++drawable mapbox_compass_icon ++drawable mapbox_info_bg_selector ++drawable mapbox_info_icon_default ++drawable mapbox_info_icon_selected ++drawable mapbox_logo_helmet ++drawable mapbox_logo_icon ++drawable mapbox_mylocation_bg_shape ++drawable mapbox_mylocation_icon_bearing ++drawable mapbox_mylocation_icon_default ++drawable mapbox_popup_window_transparent ++drawable mapbox_rounded_corner ++drawable mapbox_user_bearing_icon ++drawable mapbox_user_icon ++drawable mapbox_user_icon_shadow ++drawable mapbox_user_icon_stale ++drawable mapbox_user_puck_icon ++drawable mapbox_user_stroke_icon ++drawable notification_action_background ++drawable notification_bg ++drawable notification_bg_low ++drawable notification_bg_low_normal ++drawable notification_bg_low_pressed ++drawable notification_bg_normal ++drawable notification_bg_normal_pressed ++drawable notification_icon_background ++drawable notification_oversize_large_icon_bg ++drawable notification_template_icon_bg ++drawable notification_template_icon_low_bg ++drawable notification_tile_bg ++drawable notify_panel_notification_icon_bg ++drawable paused_in_debugger_background ++drawable paused_in_debugger_dialog_background ++drawable red_marker ++drawable redbox_top_border_background ++drawable ripple_effect ++drawable test_level_drawable ++drawable tooltip_frame_dark ++drawable tooltip_frame_light ++id accessibility_action_clickable_span ++id accessibility_actions ++id accessibility_collection ++id accessibility_collection_item ++id accessibility_custom_action_0 ++id accessibility_custom_action_1 ++id accessibility_custom_action_10 ++id accessibility_custom_action_11 ++id accessibility_custom_action_12 ++id accessibility_custom_action_13 ++id accessibility_custom_action_14 ++id accessibility_custom_action_15 ++id accessibility_custom_action_16 ++id accessibility_custom_action_17 ++id accessibility_custom_action_18 ++id accessibility_custom_action_19 ++id accessibility_custom_action_2 ++id accessibility_custom_action_20 ++id accessibility_custom_action_21 ++id accessibility_custom_action_22 ++id accessibility_custom_action_23 ++id accessibility_custom_action_24 ++id accessibility_custom_action_25 ++id accessibility_custom_action_26 ++id accessibility_custom_action_27 ++id accessibility_custom_action_28 ++id accessibility_custom_action_29 ++id accessibility_custom_action_3 ++id accessibility_custom_action_30 ++id accessibility_custom_action_31 ++id accessibility_custom_action_4 ++id accessibility_custom_action_5 ++id accessibility_custom_action_6 ++id accessibility_custom_action_7 ++id accessibility_custom_action_8 ++id accessibility_custom_action_9 ++id accessibility_hint ++id accessibility_label ++id accessibility_links ++id accessibility_role ++id accessibility_state ++id accessibility_state_expanded ++id accessibility_value ++id action_bar ++id action_bar_activity_content ++id action_bar_container ++id action_bar_root ++id action_bar_spinner ++id action_bar_subtitle ++id action_bar_title ++id action_container ++id action_context_bar ++id action_divider ++id action_image ++id action_menu_divider ++id action_menu_presenter ++id action_mode_bar ++id action_mode_bar_stub ++id action_mode_close_button ++id action_text ++id actions ++id activity_chooser_view_content ++id add ++id adjust_height ++id adjust_width ++id alertTitle ++id alert_title ++id all_glyphs_rasterized_locally ++id annotation_img ++id annotation_layout ++id annotation_view_container ++id async ++id auto ++id autofill_inline_suggestion_end_icon ++id autofill_inline_suggestion_start_icon ++id autofill_inline_suggestion_subtitle ++id autofill_inline_suggestion_title ++id blocking ++id bottom ++id button ++id buttonPanel ++id button_text ++id catalyst_redbox_title ++id center ++id centerCrop ++id centerInside ++id checkbox ++id checked ++id chronometer ++id content ++id contentPanel ++id course ++id custom ++id customPanel ++id dark ++id decor_content_parent ++id default_activity_button ++id default_viewport ++id dialog_button ++id downwards ++id edit_query ++id edit_text_id ++id end ++id expand_activities_button ++id expanded_menu ++id filter ++id fitBottomStart ++id fitCenter ++id fitEnd ++id fitStart ++id fitXY ++id flipped_y ++id focusCrop ++id forever ++id fps_text ++id fragment_container_view_tag ++id group_divider ++id heading ++id height_only ++id hide_ime_id ++id home ++id horizontal ++id horizontal_and_vertical ++id icon ++id icon_group ++id icon_only ++id ideographs_rasterized_locally ++id image ++id info ++id invalidate_transform ++id italic ++id labelled_by ++id left ++id lefttwards ++id light ++id line1 ++id line3 ++id listMode ++id list_item ++id location_puck_2_d ++id location_puck_3_d ++id mapView ++id message ++id mix_blend_mode ++id multiply ++id no_glyphs_rasterized_locally ++id none ++id normal ++id notification_background ++id notification_main_column ++id notification_main_column_container ++id off ++id on ++id parentPanel ++id pointer_events ++id progress_circular ++id progress_horizontal ++id radio ++id react_test_id ++id report_drawn ++id right ++id right_icon ++id right_side ++id rightwards ++id rn_frame_file ++id rn_frame_method ++id rn_redbox_dismiss_button ++id rn_redbox_line_separator ++id rn_redbox_loading_indicator ++id rn_redbox_reload_button ++id rn_redbox_report_button ++id rn_redbox_report_label ++id rn_redbox_stack ++id role ++id screen ++id scrollIndicatorDown ++id scrollIndicatorUp ++id scrollView ++id search_badge ++id search_bar ++id search_button ++id search_close_btn ++id search_edit_frame ++id search_go_btn ++id search_mag_icon ++id search_plate ++id search_src_text ++id search_voice_btn ++id select_dialog_listview ++id shared ++id shortcut ++id spacer ++id special_effects_controller_view_tag ++id split_action_bar ++id src_atop ++id src_in ++id src_over ++id standard ++id start ++id submenuarrow ++id submit_area ++id surface_view ++id tabMode ++id tag_accessibility_actions ++id tag_accessibility_clickable_spans ++id tag_accessibility_heading ++id tag_accessibility_pane_title ++id tag_on_apply_window_listener ++id tag_on_receive_content_listener ++id tag_on_receive_content_mime_types ++id tag_screen_reader_focusable ++id tag_state_description ++id tag_transition_group ++id tag_unhandled_key_event_manager ++id tag_unhandled_key_listeners ++id tag_window_insets_animation_callback ++id text ++id text2 ++id textSpacerNoButtons ++id textSpacerNoTitle ++id texture_view ++id time ++id title ++id titleDividerNoCustom ++id title_template ++id top ++id topPanel ++id transform ++id transform_origin ++id unchecked ++id uniform ++id unique ++id up ++id upwards ++id use_hardware_layer ++id vertical ++id view_clipped ++id view_tag_instance_handle ++id view_tag_native_id ++id view_tree_lifecycle_owner ++id view_tree_on_back_pressed_dispatcher_owner ++id view_tree_saved_state_registry_owner ++id view_tree_view_model_store_owner ++id visible_removing_fragment_view_tag ++id wide ++id width_and_height ++id wrap_content ++integer abc_config_activityDefaultDur ++integer abc_config_activityShortDur ++integer cancel_button_image_alpha ++integer config_tooltipAnimTime ++integer google_play_services_version ++integer react_native_dev_server_port ++integer status_bar_notification_info_maxnum ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 ++interpolator btn_radio_to_off_mtrl_animation_interpolator_0 ++interpolator btn_radio_to_on_mtrl_animation_interpolator_0 ++interpolator fast_out_slow_in ++layout abc_action_bar_title_item ++layout abc_action_bar_up_container ++layout abc_action_menu_item_layout ++layout abc_action_menu_layout ++layout abc_action_mode_bar ++layout abc_action_mode_close_item_material ++layout abc_activity_chooser_view ++layout abc_activity_chooser_view_list_item ++layout abc_alert_dialog_button_bar_material ++layout abc_alert_dialog_material ++layout abc_alert_dialog_title_material ++layout abc_cascading_menu_item_layout ++layout abc_dialog_title_material ++layout abc_expanded_menu_layout ++layout abc_list_menu_item_checkbox ++layout abc_list_menu_item_icon ++layout abc_list_menu_item_layout ++layout abc_list_menu_item_radio ++layout abc_popup_menu_header_item_layout ++layout abc_popup_menu_item_layout ++layout abc_screen_content_include ++layout abc_screen_simple ++layout abc_screen_simple_overlay_action_mode ++layout abc_screen_toolbar ++layout abc_search_dropdown_item_icons_2line ++layout abc_search_view ++layout abc_select_dialog_material ++layout abc_tooltip ++layout activity_dummy ++layout alert_title_layout ++layout annotation ++layout autofill_inline_suggestion ++layout custom_dialog ++layout dev_loading_view ++layout fps_view ++layout ime_base_split_test_activity ++layout ime_secondary_split_test_activity ++layout mapbox_attribution_list_item ++layout notification_action ++layout notification_action_tombstone ++layout notification_template_custom_big ++layout notification_template_icon_group ++layout notification_template_part_chronometer ++layout notification_template_part_time ++layout paused_in_debugger_view ++layout redbox_item_frame ++layout redbox_item_title ++layout redbox_view ++layout select_dialog_item_material ++layout select_dialog_multichoice_material ++layout select_dialog_singlechoice_material ++layout support_simple_spinner_dropdown_item ++string abc_action_bar_home_description ++string abc_action_bar_up_description ++string abc_action_menu_overflow_description ++string abc_action_mode_done ++string abc_activity_chooser_view_see_all ++string abc_activitychooserview_choose_application ++string abc_capital_off ++string abc_capital_on ++string abc_menu_alt_shortcut_label ++string abc_menu_ctrl_shortcut_label ++string abc_menu_delete_shortcut_label ++string abc_menu_enter_shortcut_label ++string abc_menu_function_shortcut_label ++string abc_menu_meta_shortcut_label ++string abc_menu_shift_shortcut_label ++string abc_menu_space_shortcut_label ++string abc_menu_sym_shortcut_label ++string abc_prepend_shortcut_label ++string abc_search_hint ++string abc_searchview_description_clear ++string abc_searchview_description_query ++string abc_searchview_description_search ++string abc_searchview_description_submit ++string abc_searchview_description_voice ++string abc_shareactionprovider_share_with ++string abc_shareactionprovider_share_with_application ++string abc_toolbar_collapse_description ++string alert_description ++string androidx_startup ++string app_name ++string call_notification_answer_action ++string call_notification_answer_video_action ++string call_notification_decline_action ++string call_notification_hang_up_action ++string call_notification_incoming_text ++string call_notification_ongoing_text ++string call_notification_screening_text ++string catalyst_change_bundle_location ++string catalyst_copy_button ++string catalyst_debug_connecting ++string catalyst_debug_error ++string catalyst_debug_open ++string catalyst_debug_open_disabled ++string catalyst_dev_menu_header ++string catalyst_dev_menu_sub_header ++string catalyst_dismiss_button ++string catalyst_heap_capture ++string catalyst_hot_reloading ++string catalyst_hot_reloading_auto_disable ++string catalyst_hot_reloading_auto_enable ++string catalyst_hot_reloading_stop ++string catalyst_inspector_toggle ++string catalyst_loading_from_url ++string catalyst_open_debugger_error ++string catalyst_perf_monitor ++string catalyst_perf_monitor_stop ++string catalyst_reload ++string catalyst_reload_button ++string catalyst_reload_error ++string catalyst_report_button ++string catalyst_sample_profiler_toggle ++string catalyst_settings ++string catalyst_settings_title ++string combobox_description ++string common_google_play_services_enable_button ++string common_google_play_services_enable_text ++string common_google_play_services_enable_title ++string common_google_play_services_install_button ++string common_google_play_services_install_text ++string common_google_play_services_install_title ++string common_google_play_services_notification_channel_name ++string common_google_play_services_notification_ticker ++string common_google_play_services_unknown_issue ++string common_google_play_services_unsupported_text ++string common_google_play_services_update_button ++string common_google_play_services_update_text ++string common_google_play_services_update_title ++string common_google_play_services_updating_text ++string common_google_play_services_wear_update_text ++string common_open_on_phone ++string common_signin_button_text ++string common_signin_button_text_long ++string header_description ++string image_description ++string imagebutton_description ++string link_description ++string mapbox_attributionErrorNoBrowser ++string mapbox_attributionTelemetryMessage ++string mapbox_attributionTelemetryNegative ++string mapbox_attributionTelemetryNeutral ++string mapbox_attributionTelemetryPositive ++string mapbox_attributionTelemetryTitle ++string mapbox_attributionsDialogTitle ++string mapbox_compassContentDescription ++string mapbox_myLocationViewContentDescription ++string mapbox_privacy_policy ++string mapbox_telemetryImproveMap ++string mapbox_telemetryLink ++string mapbox_telemetrySettings ++string mapbox_warning_attribution_disabled ++string mapbox_warning_logo_disabled ++string menu_description ++string menubar_description ++string menuitem_description ++string progressbar_description ++string radiogroup_description ++string rn_tab_description ++string scrollbar_description ++string search_menu_title ++string spinbutton_description ++string state_busy_description ++string state_collapsed_description ++string state_expanded_description ++string state_mixed_description ++string state_off_description ++string state_on_description ++string state_unselected_description ++string status_bar_notification_info_overflow ++string summary_description ++string tablist_description ++string timer_description ++string toolbar_description ++style AlertDialog_AppCompat ++style AlertDialog_AppCompat_Light ++style Animation_AppCompat_Dialog ++style Animation_AppCompat_DropDownUp ++style Animation_AppCompat_Tooltip ++style Animation_Catalyst_LogBox ++style Animation_Catalyst_RedBox ++style Base_AlertDialog_AppCompat ++style Base_AlertDialog_AppCompat_Light ++style Base_Animation_AppCompat_Dialog ++style Base_Animation_AppCompat_DropDownUp ++style Base_Animation_AppCompat_Tooltip ++style Base_DialogWindowTitleBackground_AppCompat ++style Base_DialogWindowTitle_AppCompat ++style Base_TextAppearance_AppCompat ++style Base_TextAppearance_AppCompat_Body1 ++style Base_TextAppearance_AppCompat_Body2 ++style Base_TextAppearance_AppCompat_Button ++style Base_TextAppearance_AppCompat_Caption ++style Base_TextAppearance_AppCompat_Display1 ++style Base_TextAppearance_AppCompat_Display2 ++style Base_TextAppearance_AppCompat_Display3 ++style Base_TextAppearance_AppCompat_Display4 ++style Base_TextAppearance_AppCompat_Headline ++style Base_TextAppearance_AppCompat_Inverse ++style Base_TextAppearance_AppCompat_Large ++style Base_TextAppearance_AppCompat_Large_Inverse ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Medium ++style Base_TextAppearance_AppCompat_Medium_Inverse ++style Base_TextAppearance_AppCompat_Menu ++style Base_TextAppearance_AppCompat_SearchResult ++style Base_TextAppearance_AppCompat_SearchResult_Subtitle ++style Base_TextAppearance_AppCompat_SearchResult_Title ++style Base_TextAppearance_AppCompat_Small ++style Base_TextAppearance_AppCompat_Small_Inverse ++style Base_TextAppearance_AppCompat_Subhead ++style Base_TextAppearance_AppCompat_Subhead_Inverse ++style Base_TextAppearance_AppCompat_Title ++style Base_TextAppearance_AppCompat_Title_Inverse ++style Base_TextAppearance_AppCompat_Tooltip ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Title ++style Base_TextAppearance_AppCompat_Widget_Button ++style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Inverse ++style Base_TextAppearance_AppCompat_Widget_DropDownItem ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Widget_Switch ++style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Title ++style Base_ThemeOverlay_AppCompat ++style Base_ThemeOverlay_AppCompat_ActionBar ++style Base_ThemeOverlay_AppCompat_Dark ++style Base_ThemeOverlay_AppCompat_Dark_ActionBar ++style Base_ThemeOverlay_AppCompat_Dialog ++style Base_ThemeOverlay_AppCompat_Dialog_Alert ++style Base_ThemeOverlay_AppCompat_Light ++style Base_Theme_AppCompat ++style Base_Theme_AppCompat_CompactMenu ++style Base_Theme_AppCompat_Dialog ++style Base_Theme_AppCompat_DialogWhenLarge ++style Base_Theme_AppCompat_Dialog_Alert ++style Base_Theme_AppCompat_Dialog_FixedSize ++style Base_Theme_AppCompat_Dialog_MinWidth ++style Base_Theme_AppCompat_Light ++style Base_Theme_AppCompat_Light_DarkActionBar ++style Base_Theme_AppCompat_Light_Dialog ++style Base_Theme_AppCompat_Light_DialogWhenLarge ++style Base_Theme_AppCompat_Light_Dialog_Alert ++style Base_Theme_AppCompat_Light_Dialog_FixedSize ++style Base_Theme_AppCompat_Light_Dialog_MinWidth ++style Base_V21_ThemeOverlay_AppCompat_Dialog ++style Base_V21_Theme_AppCompat ++style Base_V21_Theme_AppCompat_Dialog ++style Base_V21_Theme_AppCompat_Light ++style Base_V21_Theme_AppCompat_Light_Dialog ++style Base_V22_Theme_AppCompat ++style Base_V22_Theme_AppCompat_Light ++style Base_V23_Theme_AppCompat ++style Base_V23_Theme_AppCompat_Light ++style Base_V26_Theme_AppCompat ++style Base_V26_Theme_AppCompat_Light ++style Base_V26_Widget_AppCompat_Toolbar ++style Base_V28_Theme_AppCompat ++style Base_V28_Theme_AppCompat_Light ++style Base_V7_ThemeOverlay_AppCompat_Dialog ++style Base_V7_Theme_AppCompat ++style Base_V7_Theme_AppCompat_Dialog ++style Base_V7_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat_Light_Dialog ++style Base_V7_Widget_AppCompat_AutoCompleteTextView ++style Base_V7_Widget_AppCompat_EditText ++style Base_V7_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_ActionBar ++style Base_Widget_AppCompat_ActionBar_Solid ++style Base_Widget_AppCompat_ActionBar_TabBar ++style Base_Widget_AppCompat_ActionBar_TabText ++style Base_Widget_AppCompat_ActionBar_TabView ++style Base_Widget_AppCompat_ActionButton ++style Base_Widget_AppCompat_ActionButton_CloseMode ++style Base_Widget_AppCompat_ActionButton_Overflow ++style Base_Widget_AppCompat_ActionMode ++style Base_Widget_AppCompat_ActivityChooserView ++style Base_Widget_AppCompat_AutoCompleteTextView ++style Base_Widget_AppCompat_Button ++style Base_Widget_AppCompat_ButtonBar ++style Base_Widget_AppCompat_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Borderless ++style Base_Widget_AppCompat_Button_Borderless_Colored ++style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Colored ++style Base_Widget_AppCompat_Button_Small ++style Base_Widget_AppCompat_CompoundButton_CheckBox ++style Base_Widget_AppCompat_CompoundButton_RadioButton ++style Base_Widget_AppCompat_CompoundButton_Switch ++style Base_Widget_AppCompat_DrawerArrowToggle ++style Base_Widget_AppCompat_DrawerArrowToggle_Common ++style Base_Widget_AppCompat_DropDownItem_Spinner ++style Base_Widget_AppCompat_EditText ++style Base_Widget_AppCompat_ImageButton ++style Base_Widget_AppCompat_Light_ActionBar ++style Base_Widget_AppCompat_Light_ActionBar_Solid ++style Base_Widget_AppCompat_Light_ActionBar_TabBar ++style Base_Widget_AppCompat_Light_ActionBar_TabText ++style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Base_Widget_AppCompat_Light_ActionBar_TabView ++style Base_Widget_AppCompat_Light_PopupMenu ++style Base_Widget_AppCompat_Light_PopupMenu_Overflow ++style Base_Widget_AppCompat_ListMenuView ++style Base_Widget_AppCompat_ListPopupWindow ++style Base_Widget_AppCompat_ListView ++style Base_Widget_AppCompat_ListView_DropDown ++style Base_Widget_AppCompat_ListView_Menu ++style Base_Widget_AppCompat_PopupMenu ++style Base_Widget_AppCompat_PopupMenu_Overflow ++style Base_Widget_AppCompat_PopupWindow ++style Base_Widget_AppCompat_ProgressBar ++style Base_Widget_AppCompat_ProgressBar_Horizontal ++style Base_Widget_AppCompat_RatingBar ++style Base_Widget_AppCompat_RatingBar_Indicator ++style Base_Widget_AppCompat_RatingBar_Small ++style Base_Widget_AppCompat_SearchView ++style Base_Widget_AppCompat_SearchView_ActionBar ++style Base_Widget_AppCompat_SeekBar ++style Base_Widget_AppCompat_SeekBar_Discrete ++style Base_Widget_AppCompat_Spinner ++style Base_Widget_AppCompat_Spinner_Underlined ++style Base_Widget_AppCompat_TextView ++style Base_Widget_AppCompat_TextView_SpinnerItem ++style Base_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_Toolbar_Button_Navigation ++style CalendarDatePickerDialog ++style CalendarDatePickerStyle ++style DialogAnimationFade ++style DialogAnimationSlide ++style NoAnimationDialog ++style Platform_AppCompat ++style Platform_AppCompat_Light ++style Platform_ThemeOverlay_AppCompat ++style Platform_ThemeOverlay_AppCompat_Dark ++style Platform_ThemeOverlay_AppCompat_Light ++style Platform_V21_AppCompat ++style Platform_V21_AppCompat_Light ++style Platform_V25_AppCompat ++style Platform_V25_AppCompat_Light ++style Platform_Widget_AppCompat_Spinner ++style RtlOverlay_DialogWindowTitle_AppCompat ++style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem ++style RtlOverlay_Widget_AppCompat_DialogTitle_Icon ++style RtlOverlay_Widget_AppCompat_PopupMenuItem ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title ++style RtlOverlay_Widget_AppCompat_SearchView_MagIcon ++style RtlOverlay_Widget_AppCompat_Search_DropDown ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Query ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Text ++style RtlUnderlay_Widget_AppCompat_ActionButton ++style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow ++style SpinnerDatePickerDialog ++style SpinnerDatePickerStyle ++style TextAppearance_AppCompat ++style TextAppearance_AppCompat_Body1 ++style TextAppearance_AppCompat_Body2 ++style TextAppearance_AppCompat_Button ++style TextAppearance_AppCompat_Caption ++style TextAppearance_AppCompat_Display1 ++style TextAppearance_AppCompat_Display2 ++style TextAppearance_AppCompat_Display3 ++style TextAppearance_AppCompat_Display4 ++style TextAppearance_AppCompat_Headline ++style TextAppearance_AppCompat_Inverse ++style TextAppearance_AppCompat_Large ++style TextAppearance_AppCompat_Large_Inverse ++style TextAppearance_AppCompat_Light_SearchResult_Subtitle ++style TextAppearance_AppCompat_Light_SearchResult_Title ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Medium ++style TextAppearance_AppCompat_Medium_Inverse ++style TextAppearance_AppCompat_Menu ++style TextAppearance_AppCompat_SearchResult_Subtitle ++style TextAppearance_AppCompat_SearchResult_Title ++style TextAppearance_AppCompat_Small ++style TextAppearance_AppCompat_Small_Inverse ++style TextAppearance_AppCompat_Subhead ++style TextAppearance_AppCompat_Subhead_Inverse ++style TextAppearance_AppCompat_Title ++style TextAppearance_AppCompat_Title_Inverse ++style TextAppearance_AppCompat_Tooltip ++style TextAppearance_AppCompat_Widget_ActionBar_Menu ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionBar_Title ++style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Title ++style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse ++style TextAppearance_AppCompat_Widget_Button ++style TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style TextAppearance_AppCompat_Widget_Button_Colored ++style TextAppearance_AppCompat_Widget_Button_Inverse ++style TextAppearance_AppCompat_Widget_DropDownItem ++style TextAppearance_AppCompat_Widget_PopupMenu_Header ++style TextAppearance_AppCompat_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Widget_Switch ++style TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style TextAppearance_Compat_Notification ++style TextAppearance_Compat_Notification_Info ++style TextAppearance_Compat_Notification_Line2 ++style TextAppearance_Compat_Notification_Time ++style TextAppearance_Compat_Notification_Title ++style TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style TextAppearance_Widget_AppCompat_Toolbar_Title ++style Theme ++style ThemeOverlay_AppCompat ++style ThemeOverlay_AppCompat_ActionBar ++style ThemeOverlay_AppCompat_Dark ++style ThemeOverlay_AppCompat_Dark_ActionBar ++style ThemeOverlay_AppCompat_DayNight ++style ThemeOverlay_AppCompat_DayNight_ActionBar ++style ThemeOverlay_AppCompat_Dialog ++style ThemeOverlay_AppCompat_Dialog_Alert ++style ThemeOverlay_AppCompat_Light ++style Theme_AppCompat ++style Theme_AppCompat_CompactMenu ++style Theme_AppCompat_DayNight ++style Theme_AppCompat_DayNight_DarkActionBar ++style Theme_AppCompat_DayNight_Dialog ++style Theme_AppCompat_DayNight_DialogWhenLarge ++style Theme_AppCompat_DayNight_Dialog_Alert ++style Theme_AppCompat_DayNight_Dialog_MinWidth ++style Theme_AppCompat_DayNight_NoActionBar ++style Theme_AppCompat_Dialog ++style Theme_AppCompat_DialogWhenLarge ++style Theme_AppCompat_Dialog_Alert ++style Theme_AppCompat_Dialog_MinWidth ++style Theme_AppCompat_Empty ++style Theme_AppCompat_Light ++style Theme_AppCompat_Light_DarkActionBar ++style Theme_AppCompat_Light_Dialog ++style Theme_AppCompat_Light_DialogWhenLarge ++style Theme_AppCompat_Light_Dialog_Alert ++style Theme_AppCompat_Light_Dialog_MinWidth ++style Theme_AppCompat_Light_NoActionBar ++style Theme_AppCompat_NoActionBar ++style Theme_AutofillInlineSuggestion ++style Theme_Catalyst ++style Theme_Catalyst_LogBox ++style Theme_Catalyst_RedBox ++style Theme_FullScreenDialog ++style Theme_FullScreenDialogAnimatedFade ++style Theme_FullScreenDialogAnimatedSlide ++style Theme_ReactNative_AppCompat_Light ++style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen ++style Theme_ReactNative_TextInput_DefaultBackground ++style Widget_AppCompat_ActionBar ++style Widget_AppCompat_ActionBar_Solid ++style Widget_AppCompat_ActionBar_TabBar ++style Widget_AppCompat_ActionBar_TabText ++style Widget_AppCompat_ActionBar_TabView ++style Widget_AppCompat_ActionButton ++style Widget_AppCompat_ActionButton_CloseMode ++style Widget_AppCompat_ActionButton_Overflow ++style Widget_AppCompat_ActionMode ++style Widget_AppCompat_ActivityChooserView ++style Widget_AppCompat_AutoCompleteTextView ++style Widget_AppCompat_Button ++style Widget_AppCompat_ButtonBar ++style Widget_AppCompat_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Borderless ++style Widget_AppCompat_Button_Borderless_Colored ++style Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Colored ++style Widget_AppCompat_Button_Small ++style Widget_AppCompat_CompoundButton_CheckBox ++style Widget_AppCompat_CompoundButton_RadioButton ++style Widget_AppCompat_CompoundButton_Switch ++style Widget_AppCompat_DrawerArrowToggle ++style Widget_AppCompat_DropDownItem_Spinner ++style Widget_AppCompat_EditText ++style Widget_AppCompat_ImageButton ++style Widget_AppCompat_Light_ActionBar ++style Widget_AppCompat_Light_ActionBar_Solid ++style Widget_AppCompat_Light_ActionBar_Solid_Inverse ++style Widget_AppCompat_Light_ActionBar_TabBar ++style Widget_AppCompat_Light_ActionBar_TabBar_Inverse ++style Widget_AppCompat_Light_ActionBar_TabText ++style Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Widget_AppCompat_Light_ActionBar_TabView ++style Widget_AppCompat_Light_ActionBar_TabView_Inverse ++style Widget_AppCompat_Light_ActionButton ++style Widget_AppCompat_Light_ActionButton_CloseMode ++style Widget_AppCompat_Light_ActionButton_Overflow ++style Widget_AppCompat_Light_ActionMode_Inverse ++style Widget_AppCompat_Light_ActivityChooserView ++style Widget_AppCompat_Light_AutoCompleteTextView ++style Widget_AppCompat_Light_DropDownItem_Spinner ++style Widget_AppCompat_Light_ListPopupWindow ++style Widget_AppCompat_Light_ListView_DropDown ++style Widget_AppCompat_Light_PopupMenu ++style Widget_AppCompat_Light_PopupMenu_Overflow ++style Widget_AppCompat_Light_SearchView ++style Widget_AppCompat_Light_Spinner_DropDown_ActionBar ++style Widget_AppCompat_ListMenuView ++style Widget_AppCompat_ListPopupWindow ++style Widget_AppCompat_ListView ++style Widget_AppCompat_ListView_DropDown ++style Widget_AppCompat_ListView_Menu ++style Widget_AppCompat_PopupMenu ++style Widget_AppCompat_PopupMenu_Overflow ++style Widget_AppCompat_PopupWindow ++style Widget_AppCompat_ProgressBar ++style Widget_AppCompat_ProgressBar_Horizontal ++style Widget_AppCompat_RatingBar ++style Widget_AppCompat_RatingBar_Indicator ++style Widget_AppCompat_RatingBar_Small ++style Widget_AppCompat_SearchView ++style Widget_AppCompat_SearchView_ActionBar ++style Widget_AppCompat_SeekBar ++style Widget_AppCompat_SeekBar_Discrete ++style Widget_AppCompat_Spinner ++style Widget_AppCompat_Spinner_DropDown ++style Widget_AppCompat_Spinner_DropDown_ActionBar ++style Widget_AppCompat_Spinner_Underlined ++style Widget_AppCompat_TextView ++style Widget_AppCompat_TextView_SpinnerItem ++style Widget_AppCompat_Toolbar ++style Widget_AppCompat_Toolbar_Button_Navigation ++style Widget_Autofill ++style Widget_Autofill_InlineSuggestionChip ++style Widget_Autofill_InlineSuggestionEndIconStyle ++style Widget_Autofill_InlineSuggestionStartIconStyle ++style Widget_Autofill_InlineSuggestionSubtitle ++style Widget_Autofill_InlineSuggestionTitle ++style Widget_Compat_NotificationActionContainer ++style Widget_Compat_NotificationActionText ++style Widget_Support_CoordinatorLayout ++style redboxButton ++styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle ++styleable ActionBarLayout android_layout_gravity ++styleable ActionMenuItemView android_minWidth ++styleable ActionMenuView ++styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle ++styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount ++styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout ++styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible ++styleable AnimatedStateListDrawableItem android_drawable android_id ++styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId ++styleable AppCompatEmojiHelper ++styleable AppCompatImageView android_src srcCompat tint tintMode ++styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode ++styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance ++styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale ++styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle ++styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme ++styleable ButtonBarLayout allowStacking ++styleable Capability queryPatterns shortcutMatchRequired ++styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode ++styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar ++styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode ++styleable CoordinatorLayout keylines statusBarBackground ++styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline ++styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness ++styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily ++styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex ++styleable Fragment android_id android_name android_tag ++styleable FragmentContainerView android_name android_tag ++styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type ++styleable GradientColorItem android_color android_offset ++styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers ++styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width ++styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset ++styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust ++styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible ++styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText ++styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow ++styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor ++styleable PopupWindowBackgroundState state_above_anchor ++styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle ++styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon ++styleable SignInButton buttonSize colorScheme scopeUris ++styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme ++styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible ++styleable StateListDrawableItem android_drawable ++styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor ++styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode ++styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale ++styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor ++styleable View android_focusable android_theme paddingEnd paddingStart theme ++styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode ++styleable ViewStubCompat android_id android_inflatedId android_layout ++styleable mapbox_MapView mapbox_attributionClickable mapbox_attributionEnabled mapbox_attributionGravity mapbox_attributionIconColor mapbox_attributionMarginBottom mapbox_attributionMarginLeft mapbox_attributionMarginRight mapbox_attributionMarginTop mapbox_cameraAnchorX mapbox_cameraAnchorY mapbox_cameraBearing mapbox_cameraPaddingBottom mapbox_cameraPaddingLeft mapbox_cameraPaddingRight mapbox_cameraPaddingTop mapbox_cameraPitch mapbox_cameraTargetLat mapbox_cameraTargetLng mapbox_cameraZoom mapbox_compassClickable mapbox_compassEnabled mapbox_compassFadeWhenFacingNorth mapbox_compassGravity mapbox_compassImage mapbox_compassMarginBottom mapbox_compassMarginLeft mapbox_compassMarginRight mapbox_compassMarginTop mapbox_compassOpacity mapbox_compassRotation mapbox_compassVisibility mapbox_gesturesDoubleTapToZoomInEnabled mapbox_gesturesDoubleTouchToZoomOutEnabled mapbox_gesturesFocalPointX mapbox_gesturesFocalPointY mapbox_gesturesIncreasePinchToZoomThresholdWhenRotating mapbox_gesturesIncreaseRotateThresholdWhenPinchingToZoom mapbox_gesturesPinchScrollEnabled mapbox_gesturesPinchToZoomDecelerationEnabled mapbox_gesturesPinchToZoomEnabled mapbox_gesturesPitchEnabled mapbox_gesturesQuickZoomEnabled mapbox_gesturesRotateDecelerationEnabled mapbox_gesturesRotateEnabled mapbox_gesturesScrollDecelerationEnabled mapbox_gesturesScrollEnabled mapbox_gesturesScrollMode mapbox_gesturesSimultaneousRotateAndPinchToZoomEnabled mapbox_gesturesZoomAnimationAmount mapbox_locationComponentAccuracyRingBorderColor mapbox_locationComponentAccuracyRingColor mapbox_locationComponentEnabled mapbox_locationComponentLayerAbove mapbox_locationComponentLayerBelow mapbox_locationComponentLocationPuck mapbox_locationComponentLocationPuckLocationPuck2DBearingImage mapbox_locationComponentLocationPuckLocationPuck2DOpacity mapbox_locationComponentLocationPuckLocationPuck2DScaleExpression mapbox_locationComponentLocationPuckLocationPuck2DShadowImage mapbox_locationComponentLocationPuckLocationPuck2DTopImage mapbox_locationComponentLocationPuckLocationPuck3DModelOpacity mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_x mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_y mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_z mapbox_locationComponentLocationPuckLocationPuck3DModelScaleExpression mapbox_locationComponentLocationPuckLocationPuck3DModelScale_x mapbox_locationComponentLocationPuckLocationPuck3DModelScale_y mapbox_locationComponentLocationPuckLocationPuck3DModelScale_z mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lat mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lon mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_z mapbox_locationComponentLocationPuckLocationPuck3DModelUri mapbox_locationComponentLocationPuckLocationPuck3DPosition_lat mapbox_locationComponentLocationPuckLocationPuck3DPosition_lon mapbox_locationComponentPuckBearingEnabled mapbox_locationComponentPuckBearingSource mapbox_locationComponentPulsingColor mapbox_locationComponentPulsingEnabled mapbox_locationComponentPulsingMaxRadius mapbox_locationComponentShowAccuracyRing mapbox_logoEnabled mapbox_logoGravity mapbox_logoMarginBottom mapbox_logoMarginLeft mapbox_logoMarginRight mapbox_logoMarginTop mapbox_mapAntialiasingSampleCount mapbox_mapConstrainMode mapbox_mapContextMode mapbox_mapCrossSourceCollisionsEnabled mapbox_mapFontFamily mapbox_mapGlyphRasterizationMode mapbox_mapOrientation mapbox_mapPixelRatio mapbox_mapSurface mapbox_mapViewportMode mapbox_optimizeForTerrainEnabled mapbox_resourcesAccessToken mapbox_resourcesBaseUrl mapbox_scaleBarBorderWidth mapbox_scaleBarEnabled mapbox_scaleBarGravity mapbox_scaleBarHeight mapbox_scaleBarIsMetricUnits mapbox_scaleBarMarginBottom mapbox_scaleBarMarginLeft mapbox_scaleBarMarginRight mapbox_scaleBarMarginTop mapbox_scaleBarPrimaryColor mapbox_scaleBarRatio mapbox_scaleBarRefreshInterval mapbox_scaleBarSecondaryColor mapbox_scaleBarShowTextBorder mapbox_scaleBarTextBarMargin mapbox_scaleBarTextBorderWidth mapbox_scaleBarTextColor mapbox_scaleBarTextSize mapbox_scaleBarUseContinuousRendering mapbox_styleUri ++xml rn_dev_preferences +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +new file mode 100644 +index 0000000..3bcf2e0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +new file mode 100644 +index 0000000..b532518 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +new file mode 100644 +index 0000000..cb13e13 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +new file mode 100644 +index 0000000..4e3f8d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values +new file mode 100644 +index 0000000..f783432 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +new file mode 100644 +index 0000000..5c19bb8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s +new file mode 100644 +index 0000000..9205008 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s +@@ -0,0 +1 @@ ++ü1Þ* +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +new file mode 100644 +index 0000000..7c7525b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +new file mode 100644 +index 0000000..a18383f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +new file mode 100644 +index 0000000..62b5252 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +new file mode 100644 +index 0000000..9ab03c8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +new file mode 100644 +index 0000000..51ef024 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +new file mode 100644 +index 0000000..dd431d4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +new file mode 100644 +index 0000000..ad76022 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +new file mode 100644 +index 0000000..7263122 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +new file mode 100644 +index 0000000..62b5252 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..9ab03c8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +new file mode 100644 +index 0000000..51ef024 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values +new file mode 100644 +index 0000000..27d78ad +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +new file mode 100644 +index 0000000..4ab89df +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s +new file mode 100644 +index 0000000..85a7e48 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s +@@ -0,0 +1 @@ ++î +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +new file mode 100644 +index 0000000..ad76022 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab +new file mode 100644 +index 0000000..4c14737 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream +new file mode 100644 +index 0000000..3e17e9a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len +new file mode 100644 +index 0000000..e77f203 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len +new file mode 100644 +index 0000000..123d5b3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at +new file mode 100644 +index 0000000..0a639c2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i +new file mode 100644 +index 0000000..214b7b1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +new file mode 100644 +index 0000000..0b15b3d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +new file mode 100644 +index 0000000..9b92239 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..e0989a0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +new file mode 100644 +index 0000000..a7b93bc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values +new file mode 100644 +index 0000000..e8b62af +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +new file mode 100644 +index 0000000..2f67ccc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s +new file mode 100644 +index 0000000..168ed16 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s +@@ -0,0 +1 @@ ++þô +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +new file mode 100644 +index 0000000..0593335 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab +new file mode 100644 +index 0000000..54f4418 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream +new file mode 100644 +index 0000000..b79d8b5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +new file mode 100644 +index 0000000..54b7bb0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len +new file mode 100644 +index 0000000..73e7fcf +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at +new file mode 100644 +index 0000000..37b7cde +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i +new file mode 100644 +index 0000000..e34330e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +new file mode 100644 +index 0000000..88a4b6d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +new file mode 100644 +index 0000000..681a610 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +new file mode 100644 +index 0000000..f3bcb31 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +new file mode 100644 +index 0000000..d10ff48 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values +new file mode 100644 +index 0000000..f8431c7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +new file mode 100644 +index 0000000..ee2ed94 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +new file mode 100644 +index 0000000..82c6823 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +new file mode 100644 +index 0000000..d333fc9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +new file mode 100644 +index 0000000..035847e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +new file mode 100644 +index 0000000..b532518 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +new file mode 100644 +index 0000000..cb13e13 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +new file mode 100644 +index 0000000..4e3f8d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values +new file mode 100644 +index 0000000..30018bf +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +new file mode 100644 +index 0000000..2219676 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s +new file mode 100644 +index 0000000..54d0b58 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s +@@ -0,0 +1 @@ ++ÌD +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +new file mode 100644 +index 0000000..7c7525b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +new file mode 100644 +index 0000000..68638f3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +new file mode 100644 +index 0000000..b0e0fc0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +new file mode 100644 +index 0000000..98143f1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +new file mode 100644 +index 0000000..7ce6409 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +new file mode 100644 +index 0000000..a880ec4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +new file mode 100644 +index 0000000..e82053a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +new file mode 100644 +index 0000000..55c679f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +new file mode 100644 +index 0000000..f774a0d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +new file mode 100644 +index 0000000..0520dca +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +new file mode 100644 +index 0000000..789b8d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +new file mode 100644 +index 0000000..d3264fd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +new file mode 100644 +index 0000000..6c4f466 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +new file mode 100644 +index 0000000..dac8e49 +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +@@ -0,0 +1,2 @@ ++144 ++0 +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +new file mode 100644 +index 0000000..172cf06 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +new file mode 100644 +index 0000000..b532518 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +new file mode 100644 +index 0000000..cb13e13 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +new file mode 100644 +index 0000000..4e3f8d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +new file mode 100644 +index 0000000..b4ff591 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +new file mode 100644 +index 0000000..7c7525b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +new file mode 100644 +index 0000000..b7001c9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +new file mode 100644 +index 0000000..48c7c30 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +new file mode 100644 +index 0000000..01bdaa1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +new file mode 100644 +index 0000000..4e3f8d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +new file mode 100644 +index 0000000..56aae0c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +new file mode 100644 +index 0000000..9c754cd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +new file mode 100644 +index 0000000..58797c1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +new file mode 100644 +index 0000000..726b362 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +new file mode 100644 +index 0000000..ecbf248 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +new file mode 100644 +index 0000000..2fc45b7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values +new file mode 100644 +index 0000000..10c5b2b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +new file mode 100644 +index 0000000..2d2d791 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s +new file mode 100644 +index 0000000..a5b742e +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s +@@ -0,0 +1 @@ ++í­Á…Í„ +\ No newline at end of file +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +new file mode 100644 +index 0000000..872877f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +new file mode 100644 +index 0000000..b9fffc7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +new file mode 100644 +index 0000000..d717fdb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +new file mode 100644 +index 0000000..7ba96da +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ +diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin +new file mode 100644 +index 0000000..cc1bd1f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ +diff --git a/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..083631b +--- /dev/null ++++ b/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,29 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:1-5:12 ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:1-5:12 ++ package ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:70-98 ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:11-69 ++uses-permission#android.permission.INTERNET ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:5-67 ++ android:name ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:22-64 ++uses-permission#android.permission.ACCESS_COARSE_LOCATION ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:5-80 ++ android:name ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:22-78 ++uses-permission#android.permission.ACCESS_FINE_LOCATION ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:5-78 ++ android:name ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:22-76 ++uses-sdk ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..b5b093e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module +new file mode 100644 +index 0000000..0964712 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class +new file mode 100644 +index 0000000..18e18a8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class +new file mode 100644 +index 0000000..e664ef8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class +new file mode 100644 +index 0000000..e19cff6 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class +new file mode 100644 +index 0000000..06a9995 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class +new file mode 100644 +index 0000000..b361652 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class +new file mode 100644 +index 0000000..3070161 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class +new file mode 100644 +index 0000000..928ec66 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class +new file mode 100644 +index 0000000..b3e354e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class +new file mode 100644 +index 0000000..39dbcb2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class +new file mode 100644 +index 0000000..95887a0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class +new file mode 100644 +index 0000000..3249ceb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class +new file mode 100644 +index 0000000..5b5df10 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class +new file mode 100644 +index 0000000..d6033cb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class +new file mode 100644 +index 0000000..12e82d8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class +new file mode 100644 +index 0000000..d18fcf7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class +new file mode 100644 +index 0000000..453a5d2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class +new file mode 100644 +index 0000000..4c52068 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class +new file mode 100644 +index 0000000..4daa769 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class +new file mode 100644 +index 0000000..36e44e9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class +new file mode 100644 +index 0000000..f1143ee +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class +new file mode 100644 +index 0000000..a6e6f1a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class +new file mode 100644 +index 0000000..1c2c5db +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class +new file mode 100644 +index 0000000..ff361d2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class +new file mode 100644 +index 0000000..eb13c95 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class +new file mode 100644 +index 0000000..07c00e0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class +new file mode 100644 +index 0000000..5ea24cb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class +new file mode 100644 +index 0000000..8b23623 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class +new file mode 100644 +index 0000000..2563afc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class +new file mode 100644 +index 0000000..494d1bf +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class +new file mode 100644 +index 0000000..bfd7d40 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class +new file mode 100644 +index 0000000..c3b2728 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class +new file mode 100644 +index 0000000..41f27c7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class +new file mode 100644 +index 0000000..f0d3b41 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class +new file mode 100644 +index 0000000..32d3b8b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class +new file mode 100644 +index 0000000..dba4251 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class +new file mode 100644 +index 0000000..ee9f21e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class +new file mode 100644 +index 0000000..a8ad98a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class +new file mode 100644 +index 0000000..e0da102 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class +new file mode 100644 +index 0000000..972177b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class +new file mode 100644 +index 0000000..7c1c0e2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class +new file mode 100644 +index 0000000..cec39df +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class +new file mode 100644 +index 0000000..7196fcb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class +new file mode 100644 +index 0000000..7394822 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class +new file mode 100644 +index 0000000..0d48aa9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class +new file mode 100644 +index 0000000..5d8f296 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class +new file mode 100644 +index 0000000..58ce7e4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class +new file mode 100644 +index 0000000..1d0cb4d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class +new file mode 100644 +index 0000000..e6d3c4f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class +new file mode 100644 +index 0000000..6821c94 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class +new file mode 100644 +index 0000000..7a889c0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class +new file mode 100644 +index 0000000..09d6697 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class +new file mode 100644 +index 0000000..3ab7fdb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class +new file mode 100644 +index 0000000..d5457d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class +new file mode 100644 +index 0000000..4529ba2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class +new file mode 100644 +index 0000000..bebc741 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class +new file mode 100644 +index 0000000..1a144a2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class +new file mode 100644 +index 0000000..dfea4b2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class +new file mode 100644 +index 0000000..131be29 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class +new file mode 100644 +index 0000000..06a6dff +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class +new file mode 100644 +index 0000000..b23fe63 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class +new file mode 100644 +index 0000000..50d7675 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class +new file mode 100644 +index 0000000..f524a7f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class +new file mode 100644 +index 0000000..d3d8396 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class +new file mode 100644 +index 0000000..2bf7380 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class +new file mode 100644 +index 0000000..e88d4a6 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class +new file mode 100644 +index 0000000..073c794 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class +new file mode 100644 +index 0000000..68acb5c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class +new file mode 100644 +index 0000000..dd30dc0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class +new file mode 100644 +index 0000000..947de25 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class +new file mode 100644 +index 0000000..8a62cd2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class +new file mode 100644 +index 0000000..f88db2a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class +new file mode 100644 +index 0000000..0053d48 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class +new file mode 100644 +index 0000000..11ce507 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class +new file mode 100644 +index 0000000..c753a08 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class +new file mode 100644 +index 0000000..a5ddb0e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class +new file mode 100644 +index 0000000..8016118 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class +new file mode 100644 +index 0000000..6afc32d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class +new file mode 100644 +index 0000000..9a44805 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class +new file mode 100644 +index 0000000..71fd4d4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class +new file mode 100644 +index 0000000..d77720a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class +new file mode 100644 +index 0000000..2f0d8b0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class +new file mode 100644 +index 0000000..6f4bfd5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class +new file mode 100644 +index 0000000..3b6c8c9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class +new file mode 100644 +index 0000000..d581670 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class +new file mode 100644 +index 0000000..c3cd7e0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class +new file mode 100644 +index 0000000..d384993 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class +new file mode 100644 +index 0000000..3844cb3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class +new file mode 100644 +index 0000000..436b4f2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class +new file mode 100644 +index 0000000..9962166 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class +new file mode 100644 +index 0000000..87e61d7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class +new file mode 100644 +index 0000000..a05be2f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class +new file mode 100644 +index 0000000..d176d27 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class +new file mode 100644 +index 0000000..c7d5f6d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class +new file mode 100644 +index 0000000..250f05f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class +new file mode 100644 +index 0000000..e539c9a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class +new file mode 100644 +index 0000000..b6080a4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class +new file mode 100644 +index 0000000..eb78bde +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class +new file mode 100644 +index 0000000..68b6fc2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class +new file mode 100644 +index 0000000..dbb4f72 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class +new file mode 100644 +index 0000000..472c014 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class +new file mode 100644 +index 0000000..69c7541 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class +new file mode 100644 +index 0000000..1f94467 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class +new file mode 100644 +index 0000000..73eefbe +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class +new file mode 100644 +index 0000000..0217c35 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class +new file mode 100644 +index 0000000..64e7da5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class +new file mode 100644 +index 0000000..cdf21be +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class +new file mode 100644 +index 0000000..a71fd53 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class +new file mode 100644 +index 0000000..6275457 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class +new file mode 100644 +index 0000000..a9d9590 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class +new file mode 100644 +index 0000000..b01df95 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class +new file mode 100644 +index 0000000..a8cf5be +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class +new file mode 100644 +index 0000000..0576101 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class +new file mode 100644 +index 0000000..3e1200b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class +new file mode 100644 +index 0000000..ebf0dbb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class +new file mode 100644 +index 0000000..615b964 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class +new file mode 100644 +index 0000000..625b943 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class +new file mode 100644 +index 0000000..7562475 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class +new file mode 100644 +index 0000000..7e64b19 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class +new file mode 100644 +index 0000000..f3175e4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class +new file mode 100644 +index 0000000..82245b8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class +new file mode 100644 +index 0000000..678136b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class +new file mode 100644 +index 0000000..0d37f60 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class +new file mode 100644 +index 0000000..c117d62 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class +new file mode 100644 +index 0000000..b15ce38 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class +new file mode 100644 +index 0000000..1191446 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class +new file mode 100644 +index 0000000..f8f0f79 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class +new file mode 100644 +index 0000000..2c9b9ce +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class +new file mode 100644 +index 0000000..fb062ce +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class +new file mode 100644 +index 0000000..96fd17e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class +new file mode 100644 +index 0000000..63c1693 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class +new file mode 100644 +index 0000000..e406cd2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class +new file mode 100644 +index 0000000..da369e7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class +new file mode 100644 +index 0000000..e9e2321 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class +new file mode 100644 +index 0000000..abf652c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class +new file mode 100644 +index 0000000..3e4b6b1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class +new file mode 100644 +index 0000000..45b414c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class +new file mode 100644 +index 0000000..f150d5c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class +new file mode 100644 +index 0000000..e6f6579 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class +new file mode 100644 +index 0000000..1f56551 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class +new file mode 100644 +index 0000000..4dc8d3d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class +new file mode 100644 +index 0000000..8de4e41 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class +new file mode 100644 +index 0000000..3ce3729 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class +new file mode 100644 +index 0000000..322876f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class +new file mode 100644 +index 0000000..4c22015 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class +new file mode 100644 +index 0000000..ff90d7b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class +new file mode 100644 +index 0000000..7ab5d60 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class +new file mode 100644 +index 0000000..b3a81dc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class +new file mode 100644 +index 0000000..908464c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class +new file mode 100644 +index 0000000..1de3ca5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class +new file mode 100644 +index 0000000..9f1def1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class +new file mode 100644 +index 0000000..210fed9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class +new file mode 100644 +index 0000000..f12809f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class +new file mode 100644 +index 0000000..5b47c77 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class +new file mode 100644 +index 0000000..fe51af9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class +new file mode 100644 +index 0000000..e92f7c5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class +new file mode 100644 +index 0000000..668aa91 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class +new file mode 100644 +index 0000000..e13c7d4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class +new file mode 100644 +index 0000000..15b33ec +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class +new file mode 100644 +index 0000000..b3d4e19 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class +new file mode 100644 +index 0000000..657bdef +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class +new file mode 100644 +index 0000000..99f38f0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class +new file mode 100644 +index 0000000..b2e1a14 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class +new file mode 100644 +index 0000000..5b01d3b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class +new file mode 100644 +index 0000000..9824088 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class +new file mode 100644 +index 0000000..f357b9b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class +new file mode 100644 +index 0000000..c4c613f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class +new file mode 100644 +index 0000000..d0c198c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class +new file mode 100644 +index 0000000..8e2e020 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class +new file mode 100644 +index 0000000..e39c8f4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class +new file mode 100644 +index 0000000..7ad4879 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class +new file mode 100644 +index 0000000..488113d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class +new file mode 100644 +index 0000000..9a1afc5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class +new file mode 100644 +index 0000000..d47136f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class +new file mode 100644 +index 0000000..fa83b04 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class +new file mode 100644 +index 0000000..0f7fd4e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class +new file mode 100644 +index 0000000..f140ab5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class +new file mode 100644 +index 0000000..8153602 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class +new file mode 100644 +index 0000000..8266fac +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class +new file mode 100644 +index 0000000..a904064 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class +new file mode 100644 +index 0000000..bde85d1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class +new file mode 100644 +index 0000000..6f135ad +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class +new file mode 100644 +index 0000000..7df71f9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class +new file mode 100644 +index 0000000..4a9d8d7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class +new file mode 100644 +index 0000000..e064d9f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class +new file mode 100644 +index 0000000..f87be8f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class +new file mode 100644 +index 0000000..6f46b86 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class +new file mode 100644 +index 0000000..5391b6b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class +new file mode 100644 +index 0000000..09fe99b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class +new file mode 100644 +index 0000000..b5a82b7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class +new file mode 100644 +index 0000000..c5605ed +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class +new file mode 100644 +index 0000000..d23f9a4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class +new file mode 100644 +index 0000000..b42ebf6 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class +new file mode 100644 +index 0000000..a728fd3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class +new file mode 100644 +index 0000000..0429d1c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class +new file mode 100644 +index 0000000..7627d6a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class +new file mode 100644 +index 0000000..019ba05 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class +new file mode 100644 +index 0000000..93674e7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class +new file mode 100644 +index 0000000..205d4e3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class +new file mode 100644 +index 0000000..5f96909 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class +new file mode 100644 +index 0000000..f4ab75c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class +new file mode 100644 +index 0000000..db259d7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class +new file mode 100644 +index 0000000..3a7c36b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class +new file mode 100644 +index 0000000..1d93a54 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class +new file mode 100644 +index 0000000..9513260 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class +new file mode 100644 +index 0000000..baf5be7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class +new file mode 100644 +index 0000000..82024e8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class +new file mode 100644 +index 0000000..c89b33d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class +new file mode 100644 +index 0000000..8fa2771 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class +new file mode 100644 +index 0000000..bf875d9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class +new file mode 100644 +index 0000000..71a14dc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class +new file mode 100644 +index 0000000..c30fac7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class +new file mode 100644 +index 0000000..f4fdef8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class +new file mode 100644 +index 0000000..eee12e7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class +new file mode 100644 +index 0000000..9cbb843 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class +new file mode 100644 +index 0000000..cd0935e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class +new file mode 100644 +index 0000000..6d23ed9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class +new file mode 100644 +index 0000000..30f376b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class +new file mode 100644 +index 0000000..f6be87d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class +new file mode 100644 +index 0000000..652fa64 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class +new file mode 100644 +index 0000000..9cca8bb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class +new file mode 100644 +index 0000000..66304a3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class +new file mode 100644 +index 0000000..2ddb8e0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class +new file mode 100644 +index 0000000..c617327 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class +new file mode 100644 +index 0000000..c8cd9c3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class +new file mode 100644 +index 0000000..49a3294 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class +new file mode 100644 +index 0000000..bbb3403 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class +new file mode 100644 +index 0000000..42ab4a9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class +new file mode 100644 +index 0000000..9d2283b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class +new file mode 100644 +index 0000000..b15f81e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class +new file mode 100644 +index 0000000..56a746a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class +new file mode 100644 +index 0000000..3852b7f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class +new file mode 100644 +index 0000000..6c8fddc +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class +new file mode 100644 +index 0000000..4e708fe +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class +new file mode 100644 +index 0000000..46a2abd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class +new file mode 100644 +index 0000000..7b7281c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class +new file mode 100644 +index 0000000..1111ba1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class +new file mode 100644 +index 0000000..36f6b2d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class +new file mode 100644 +index 0000000..d2748bf +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class +new file mode 100644 +index 0000000..987f8f5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class +new file mode 100644 +index 0000000..323f83a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class +new file mode 100644 +index 0000000..ed5de63 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class +new file mode 100644 +index 0000000..edf1123 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class +new file mode 100644 +index 0000000..34dd6e9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class +new file mode 100644 +index 0000000..b5f8c56 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class +new file mode 100644 +index 0000000..8c6d69f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class +new file mode 100644 +index 0000000..53fccf7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class +new file mode 100644 +index 0000000..b655964 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class +new file mode 100644 +index 0000000..df219bb +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class +new file mode 100644 +index 0000000..a760f62 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class +new file mode 100644 +index 0000000..440d2f5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class +new file mode 100644 +index 0000000..fe31ff8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class +new file mode 100644 +index 0000000..5aa0a3c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class +new file mode 100644 +index 0000000..6bf61d4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class +new file mode 100644 +index 0000000..701f7a3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class +new file mode 100644 +index 0000000..e7b57ee +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class +new file mode 100644 +index 0000000..0685dad +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class +new file mode 100644 +index 0000000..c7f8291 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class +new file mode 100644 +index 0000000..cdd1032 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class +new file mode 100644 +index 0000000..6ce7949 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class +new file mode 100644 +index 0000000..097b021 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class +new file mode 100644 +index 0000000..96d908c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class +new file mode 100644 +index 0000000..0db9e09 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class +new file mode 100644 +index 0000000..261e6e2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class +new file mode 100644 +index 0000000..d020cfd +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class +new file mode 100644 +index 0000000..87a96ad +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class +new file mode 100644 +index 0000000..d0545e7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class +new file mode 100644 +index 0000000..aa868a5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class +new file mode 100644 +index 0000000..fc8da4b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class +new file mode 100644 +index 0000000..698f5a8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class +new file mode 100644 +index 0000000..356007e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class +new file mode 100644 +index 0000000..f4bab85 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class +new file mode 100644 +index 0000000..a1e48c9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class +new file mode 100644 +index 0000000..f8bffe7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class +new file mode 100644 +index 0000000..8ea8b59 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class +new file mode 100644 +index 0000000..c3a4b13 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class +new file mode 100644 +index 0000000..255842d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class +new file mode 100644 +index 0000000..fd29ac5 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class +new file mode 100644 +index 0000000..4687586 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class +new file mode 100644 +index 0000000..0fbe4ea +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class +new file mode 100644 +index 0000000..2d01010 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class +new file mode 100644 +index 0000000..725a082 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class +new file mode 100644 +index 0000000..9ab1100 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class +new file mode 100644 +index 0000000..fa7f692 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class +new file mode 100644 +index 0000000..f72d07c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class +new file mode 100644 +index 0000000..bc49711 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class +new file mode 100644 +index 0000000..1dcb077 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class +new file mode 100644 +index 0000000..fe8f3e1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class +new file mode 100644 +index 0000000..5030568 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class +new file mode 100644 +index 0000000..9d503c7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class +new file mode 100644 +index 0000000..78c7241 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class +new file mode 100644 +index 0000000..45a1900 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class +new file mode 100644 +index 0000000..b93881f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class +new file mode 100644 +index 0000000..9dc1bae +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class +new file mode 100644 +index 0000000..74b3a0e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class +new file mode 100644 +index 0000000..d27266b +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class +new file mode 100644 +index 0000000..b1b0c19 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class +new file mode 100644 +index 0000000..a24ea7a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class +new file mode 100644 +index 0000000..29d3955 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class +new file mode 100644 +index 0000000..f1ed445 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class +new file mode 100644 +index 0000000..52d71c4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class +new file mode 100644 +index 0000000..bdf1ef1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class +new file mode 100644 +index 0000000..2202124 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class +new file mode 100644 +index 0000000..19b219c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class +new file mode 100644 +index 0000000..31c2788 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class +new file mode 100644 +index 0000000..3aa9cd7 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class +new file mode 100644 +index 0000000..eddaa9c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class +new file mode 100644 +index 0000000..933e87a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class +new file mode 100644 +index 0000000..66a26d2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class +new file mode 100644 +index 0000000..6a3983f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class +new file mode 100644 +index 0000000..b5bc313 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class +new file mode 100644 +index 0000000..f1eca55 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class +new file mode 100644 +index 0000000..d5dd287 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class +new file mode 100644 +index 0000000..9a6a8d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class +new file mode 100644 +index 0000000..6e46fb8 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class +new file mode 100644 +index 0000000..099bbaa +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class +new file mode 100644 +index 0000000..c4da875 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class +new file mode 100644 +index 0000000..db9cac3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class +new file mode 100644 +index 0000000..f6ba141 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class +new file mode 100644 +index 0000000..b90cb15 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class +new file mode 100644 +index 0000000..9272141 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class +new file mode 100644 +index 0000000..ed18251 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class +new file mode 100644 +index 0000000..1a33e3c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class +new file mode 100644 +index 0000000..ec08578 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class +new file mode 100644 +index 0000000..f32e9d9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class +new file mode 100644 +index 0000000..617b70c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class +new file mode 100644 +index 0000000..871ff46 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class +new file mode 100644 +index 0000000..c0dd0c4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class +new file mode 100644 +index 0000000..791a8a4 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class +new file mode 100644 +index 0000000..c0f0646 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class +new file mode 100644 +index 0000000..81696a0 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class +new file mode 100644 +index 0000000..15c2c66 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class +new file mode 100644 +index 0000000..627da26 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class +new file mode 100644 +index 0000000..5169b3e +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class +new file mode 100644 +index 0000000..b5b915a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class +new file mode 100644 +index 0000000..21bfe99 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class +new file mode 100644 +index 0000000..cbee27f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class +new file mode 100644 +index 0000000..c89b92d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class +new file mode 100644 +index 0000000..324fbf9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class +new file mode 100644 +index 0000000..5c35f30 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class +new file mode 100644 +index 0000000..544eda2 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class +new file mode 100644 +index 0000000..a45c5db +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class +new file mode 100644 +index 0000000..a956493 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class +new file mode 100644 +index 0000000..6979817 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class +new file mode 100644 +index 0000000..0561426 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class +new file mode 100644 +index 0000000..c2e4fa1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class +new file mode 100644 +index 0000000..9a6a845 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class +new file mode 100644 +index 0000000..79987f9 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class +new file mode 100644 +index 0000000..d12654c +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class +new file mode 100644 +index 0000000..c08c4a1 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class +new file mode 100644 +index 0000000..85327d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class +new file mode 100644 +index 0000000..88bbd8d +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class +new file mode 100644 +index 0000000..4d244d3 +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class +new file mode 100644 +index 0000000..a10f52a +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class differ +diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class +new file mode 100644 +index 0000000..a33771f +Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class differ diff --git a/patches/@rnmapbox/maps/details.md b/patches/@rnmapbox/maps/details.md new file mode 100644 index 0000000000000..4efe2993865c6 --- /dev/null +++ b/patches/@rnmapbox/maps/details.md @@ -0,0 +1,15 @@ +# `@rnmapbox/maps` patches + +### [@rnmapbox+maps+10.1.33+001+initial.patch](@rnmapbox+maps+10.1.33+001+initial.patch) + +- Reason: This patch is needed for support with React Native version >=0.77 +- Upstream PR/issue: N/A +- E/App issue: N/A +- PR Introducing Patch: [#55861](https://github.com/Expensify/App/pull/55861) + +### [@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch](@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch) + +- Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. +- Upstream PR/issue: TODO +- E/App issue: [#63871](https://github.com/Expensify/App/issues/63871) +- PR Introducing Patch: [#13604](https://github.com/Expensify/Mobile-Expensify/pull/13604) From c8b6ae4b3226bc45b5e959e8bf69f8e58c31e1db Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 16:51:40 +0200 Subject: [PATCH 09/50] chore: add details.md for react-native-safe-area-context patch --- patches/react-native-safe-area-context/details.md | 8 ++++++++ ...+android-jni-packaging-for-16kb-memory-page-size.patch | 0 2 files changed, 8 insertions(+) create mode 100644 patches/react-native-safe-area-context/details.md rename patches/{ => react-native-safe-area-context}/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch (100%) diff --git a/patches/react-native-safe-area-context/details.md b/patches/react-native-safe-area-context/details.md new file mode 100644 index 0000000000000..046022b91ec89 --- /dev/null +++ b/patches/react-native-safe-area-context/details.md @@ -0,0 +1,8 @@ +# `react-native-safe-area-context` patches + +### [react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch](react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch) + +- Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. +- Upstream PR/issue: TODO +- E/App issue: [#63871](https://github.com/Expensify/App/issues/63871) +- PR Introducing Patch: [#13604](https://github.com/Expensify/Mobile-Expensify/pull/13604) diff --git a/patches/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch similarity index 100% rename from patches/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch From db6da9a124509601072b0ca2d896bafa30a20a22 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 17:13:56 +0200 Subject: [PATCH 10/50] chore: @react-native-firebase/crashlytics --- ...-packaging-for-16kb-memory-page-size.patch | 4068 +++++++++++++++++ .../crashlytics/details.md | 2 +- 2 files changed, 4069 insertions(+), 1 deletion(-) create mode 100644 patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch diff --git a/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..6f2ae98ac7a79 --- /dev/null +++ b/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch @@ -0,0 +1,4068 @@ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build.gradle b/node_modules/@react-native-firebase/crashlytics/android/build.gradle +index 9b89ae7..a759181 100644 +--- a/node_modules/@react-native-firebase/crashlytics/android/build.gradle ++++ b/node_modules/@react-native-firebase/crashlytics/android/build.gradle +@@ -76,6 +76,12 @@ android { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } ++ ++ packagingOptions { ++ jniLibs { ++ useLegacyPackaging true ++ } ++ } + } + + repositories { +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/results.bin b/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/transformed/classes/classes_dex/classes.dex b/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..467f751 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/generated/source/buildConfig/debug/io/invertase/firebase/crashlytics/BuildConfig.java b/node_modules/@react-native-firebase/crashlytics/android/build/generated/source/buildConfig/debug/io/invertase/firebase/crashlytics/BuildConfig.java +new file mode 100644 +index 0000000..f8d4ce0 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/generated/source/buildConfig/debug/io/invertase/firebase/crashlytics/BuildConfig.java +@@ -0,0 +1,10 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package io.invertase.firebase.crashlytics; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "io.invertase.firebase.crashlytics"; ++ public static final String BUILD_TYPE = "debug"; ++} +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..e17ecd6 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..e4a0684 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/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": "io.invertase.firebase.crashlytics", ++ "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-firebase/crashlytics/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..5f1e3d8 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..b5cd559 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..823fef9 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +@@ -0,0 +1,2119 @@ ++int anim abc_fade_in 0x0 ++int anim abc_fade_out 0x0 ++int anim abc_grow_fade_in_from_bottom 0x0 ++int anim abc_popup_enter 0x0 ++int anim abc_popup_exit 0x0 ++int anim abc_shrink_fade_out_from_bottom 0x0 ++int anim abc_slide_in_bottom 0x0 ++int anim abc_slide_in_top 0x0 ++int anim abc_slide_out_bottom 0x0 ++int anim abc_slide_out_top 0x0 ++int anim abc_tooltip_enter 0x0 ++int anim abc_tooltip_exit 0x0 ++int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 ++int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 ++int anim btn_checkbox_to_checked_icon_null_animation 0x0 ++int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 ++int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 ++int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 ++int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 ++int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 ++int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 ++int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 ++int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 ++int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 ++int anim catalyst_fade_in 0x0 ++int anim catalyst_fade_out 0x0 ++int anim catalyst_push_up_in 0x0 ++int anim catalyst_push_up_out 0x0 ++int anim catalyst_slide_down 0x0 ++int anim catalyst_slide_up 0x0 ++int anim fragment_fast_out_extra_slow_in 0x0 ++int animator fragment_close_enter 0x0 ++int animator fragment_close_exit 0x0 ++int animator fragment_fade_enter 0x0 ++int animator fragment_fade_exit 0x0 ++int animator fragment_open_enter 0x0 ++int animator fragment_open_exit 0x0 ++int attr actionBarDivider 0x0 ++int attr actionBarItemBackground 0x0 ++int attr actionBarPopupTheme 0x0 ++int attr actionBarSize 0x0 ++int attr actionBarSplitStyle 0x0 ++int attr actionBarStyle 0x0 ++int attr actionBarTabBarStyle 0x0 ++int attr actionBarTabStyle 0x0 ++int attr actionBarTabTextStyle 0x0 ++int attr actionBarTheme 0x0 ++int attr actionBarWidgetTheme 0x0 ++int attr actionButtonStyle 0x0 ++int attr actionDropDownStyle 0x0 ++int attr actionLayout 0x0 ++int attr actionMenuTextAppearance 0x0 ++int attr actionMenuTextColor 0x0 ++int attr actionModeBackground 0x0 ++int attr actionModeCloseButtonStyle 0x0 ++int attr actionModeCloseContentDescription 0x0 ++int attr actionModeCloseDrawable 0x0 ++int attr actionModeCopyDrawable 0x0 ++int attr actionModeCutDrawable 0x0 ++int attr actionModeFindDrawable 0x0 ++int attr actionModePasteDrawable 0x0 ++int attr actionModePopupWindowStyle 0x0 ++int attr actionModeSelectAllDrawable 0x0 ++int attr actionModeShareDrawable 0x0 ++int attr actionModeSplitBackground 0x0 ++int attr actionModeStyle 0x0 ++int attr actionModeTheme 0x0 ++int attr actionModeWebSearchDrawable 0x0 ++int attr actionOverflowButtonStyle 0x0 ++int attr actionOverflowMenuStyle 0x0 ++int attr actionProviderClass 0x0 ++int attr actionViewClass 0x0 ++int attr activityChooserViewStyle 0x0 ++int attr actualImageResource 0x0 ++int attr actualImageScaleType 0x0 ++int attr actualImageUri 0x0 ++int attr alertDialogButtonGroupStyle 0x0 ++int attr alertDialogCenterButtons 0x0 ++int attr alertDialogStyle 0x0 ++int attr alertDialogTheme 0x0 ++int attr allowStacking 0x0 ++int attr alpha 0x0 ++int attr alphabeticModifiers 0x0 ++int attr arrowHeadLength 0x0 ++int attr arrowShaftLength 0x0 ++int attr autoCompleteTextViewStyle 0x0 ++int attr autoSizeMaxTextSize 0x0 ++int attr autoSizeMinTextSize 0x0 ++int attr autoSizePresetSizes 0x0 ++int attr autoSizeStepGranularity 0x0 ++int attr autoSizeTextType 0x0 ++int attr autofillInlineSuggestionChip 0x0 ++int attr autofillInlineSuggestionEndIconStyle 0x0 ++int attr autofillInlineSuggestionStartIconStyle 0x0 ++int attr autofillInlineSuggestionSubtitle 0x0 ++int attr autofillInlineSuggestionTitle 0x0 ++int attr background 0x0 ++int attr backgroundImage 0x0 ++int attr backgroundSplit 0x0 ++int attr backgroundStacked 0x0 ++int attr backgroundTint 0x0 ++int attr backgroundTintMode 0x0 ++int attr barLength 0x0 ++int attr borderlessButtonStyle 0x0 ++int attr buttonBarButtonStyle 0x0 ++int attr buttonBarNegativeButtonStyle 0x0 ++int attr buttonBarNeutralButtonStyle 0x0 ++int attr buttonBarPositiveButtonStyle 0x0 ++int attr buttonBarStyle 0x0 ++int attr buttonCompat 0x0 ++int attr buttonGravity 0x0 ++int attr buttonIconDimen 0x0 ++int attr buttonPanelSideLayout 0x0 ++int attr buttonSize 0x0 ++int attr buttonStyle 0x0 ++int attr buttonStyleSmall 0x0 ++int attr buttonTint 0x0 ++int attr buttonTintMode 0x0 ++int attr checkMarkCompat 0x0 ++int attr checkMarkTint 0x0 ++int attr checkMarkTintMode 0x0 ++int attr checkboxStyle 0x0 ++int attr checkedTextViewStyle 0x0 ++int attr circleCrop 0x0 ++int attr closeIcon 0x0 ++int attr closeItemLayout 0x0 ++int attr collapseContentDescription 0x0 ++int attr collapseIcon 0x0 ++int attr color 0x0 ++int attr colorAccent 0x0 ++int attr colorBackgroundFloating 0x0 ++int attr colorButtonNormal 0x0 ++int attr colorControlActivated 0x0 ++int attr colorControlHighlight 0x0 ++int attr colorControlNormal 0x0 ++int attr colorError 0x0 ++int attr colorPrimary 0x0 ++int attr colorPrimaryDark 0x0 ++int attr colorScheme 0x0 ++int attr colorSwitchThumbNormal 0x0 ++int attr commitIcon 0x0 ++int attr contentDescription 0x0 ++int attr contentInsetEnd 0x0 ++int attr contentInsetEndWithActions 0x0 ++int attr contentInsetLeft 0x0 ++int attr contentInsetRight 0x0 ++int attr contentInsetStart 0x0 ++int attr contentInsetStartWithNavigation 0x0 ++int attr controlBackground 0x0 ++int attr coordinatorLayoutStyle 0x0 ++int attr customNavigationLayout 0x0 ++int attr defaultQueryHint 0x0 ++int attr dialogCornerRadius 0x0 ++int attr dialogPreferredPadding 0x0 ++int attr dialogTheme 0x0 ++int attr displayOptions 0x0 ++int attr divider 0x0 ++int attr dividerHorizontal 0x0 ++int attr dividerPadding 0x0 ++int attr dividerVertical 0x0 ++int attr drawableBottomCompat 0x0 ++int attr drawableEndCompat 0x0 ++int attr drawableLeftCompat 0x0 ++int attr drawableRightCompat 0x0 ++int attr drawableSize 0x0 ++int attr drawableStartCompat 0x0 ++int attr drawableTint 0x0 ++int attr drawableTintMode 0x0 ++int attr drawableTopCompat 0x0 ++int attr drawerArrowStyle 0x0 ++int attr drawerLayoutStyle 0x0 ++int attr dropDownListViewStyle 0x0 ++int attr dropdownListPreferredItemHeight 0x0 ++int attr editTextBackground 0x0 ++int attr editTextColor 0x0 ++int attr editTextStyle 0x0 ++int attr elevation 0x0 ++int attr emojiCompatEnabled 0x0 ++int attr expandActivityOverflowButtonDrawable 0x0 ++int attr fadeDuration 0x0 ++int attr failureImage 0x0 ++int attr failureImageScaleType 0x0 ++int attr firstBaselineToTopHeight 0x0 ++int attr font 0x0 ++int attr fontFamily 0x0 ++int attr fontProviderAuthority 0x0 ++int attr fontProviderCerts 0x0 ++int attr fontProviderFetchStrategy 0x0 ++int attr fontProviderFetchTimeout 0x0 ++int attr fontProviderPackage 0x0 ++int attr fontProviderQuery 0x0 ++int attr fontProviderSystemFontFamily 0x0 ++int attr fontStyle 0x0 ++int attr fontVariationSettings 0x0 ++int attr fontWeight 0x0 ++int attr gapBetweenBars 0x0 ++int attr goIcon 0x0 ++int attr height 0x0 ++int attr hideOnContentScroll 0x0 ++int attr homeAsUpIndicator 0x0 ++int attr homeLayout 0x0 ++int attr icon 0x0 ++int attr iconTint 0x0 ++int attr iconTintMode 0x0 ++int attr iconifiedByDefault 0x0 ++int attr imageAspectRatio 0x0 ++int attr imageAspectRatioAdjust 0x0 ++int attr imageButtonStyle 0x0 ++int attr indeterminateProgressStyle 0x0 ++int attr initialActivityCount 0x0 ++int attr isAutofillInlineSuggestionTheme 0x0 ++int attr isLightTheme 0x0 ++int attr itemPadding 0x0 ++int attr keylines 0x0 ++int attr lStar 0x0 ++int attr lastBaselineToBottomHeight 0x0 ++int attr layout 0x0 ++int attr layout_anchor 0x0 ++int attr layout_anchorGravity 0x0 ++int attr layout_behavior 0x0 ++int attr layout_dodgeInsetEdges 0x0 ++int attr layout_insetEdge 0x0 ++int attr layout_keyline 0x0 ++int attr lineHeight 0x0 ++int attr listChoiceBackgroundIndicator 0x0 ++int attr listChoiceIndicatorMultipleAnimated 0x0 ++int attr listChoiceIndicatorSingleAnimated 0x0 ++int attr listDividerAlertDialog 0x0 ++int attr listItemLayout 0x0 ++int attr listLayout 0x0 ++int attr listMenuViewStyle 0x0 ++int attr listPopupWindowStyle 0x0 ++int attr listPreferredItemHeight 0x0 ++int attr listPreferredItemHeightLarge 0x0 ++int attr listPreferredItemHeightSmall 0x0 ++int attr listPreferredItemPaddingEnd 0x0 ++int attr listPreferredItemPaddingLeft 0x0 ++int attr listPreferredItemPaddingRight 0x0 ++int attr listPreferredItemPaddingStart 0x0 ++int attr logo 0x0 ++int attr logoDescription 0x0 ++int attr maxButtonHeight 0x0 ++int attr measureWithLargestChild 0x0 ++int attr menu 0x0 ++int attr multiChoiceItemLayout 0x0 ++int attr navigationContentDescription 0x0 ++int attr navigationIcon 0x0 ++int attr navigationMode 0x0 ++int attr nestedScrollViewStyle 0x0 ++int attr numericModifiers 0x0 ++int attr overlapAnchor 0x0 ++int attr overlayImage 0x0 ++int attr paddingBottomNoButtons 0x0 ++int attr paddingEnd 0x0 ++int attr paddingStart 0x0 ++int attr paddingTopNoTitle 0x0 ++int attr panelBackground 0x0 ++int attr panelMenuListTheme 0x0 ++int attr panelMenuListWidth 0x0 ++int attr placeholderImage 0x0 ++int attr placeholderImageScaleType 0x0 ++int attr popupMenuStyle 0x0 ++int attr popupTheme 0x0 ++int attr popupWindowStyle 0x0 ++int attr preserveIconSpacing 0x0 ++int attr pressedStateOverlayImage 0x0 ++int attr progressBarAutoRotateInterval 0x0 ++int attr progressBarImage 0x0 ++int attr progressBarImageScaleType 0x0 ++int attr progressBarPadding 0x0 ++int attr progressBarStyle 0x0 ++int attr queryBackground 0x0 ++int attr queryHint 0x0 ++int attr queryPatterns 0x0 ++int attr radioButtonStyle 0x0 ++int attr ratingBarStyle 0x0 ++int attr ratingBarStyleIndicator 0x0 ++int attr ratingBarStyleSmall 0x0 ++int attr retryImage 0x0 ++int attr retryImageScaleType 0x0 ++int attr roundAsCircle 0x0 ++int attr roundBottomEnd 0x0 ++int attr roundBottomLeft 0x0 ++int attr roundBottomRight 0x0 ++int attr roundBottomStart 0x0 ++int attr roundTopEnd 0x0 ++int attr roundTopLeft 0x0 ++int attr roundTopRight 0x0 ++int attr roundTopStart 0x0 ++int attr roundWithOverlayColor 0x0 ++int attr roundedCornerRadius 0x0 ++int attr roundingBorderColor 0x0 ++int attr roundingBorderPadding 0x0 ++int attr roundingBorderWidth 0x0 ++int attr scopeUris 0x0 ++int attr searchHintIcon 0x0 ++int attr searchIcon 0x0 ++int attr searchViewStyle 0x0 ++int attr seekBarStyle 0x0 ++int attr selectableItemBackground 0x0 ++int attr selectableItemBackgroundBorderless 0x0 ++int attr shortcutMatchRequired 0x0 ++int attr showAsAction 0x0 ++int attr showDividers 0x0 ++int attr showText 0x0 ++int attr showTitle 0x0 ++int attr singleChoiceItemLayout 0x0 ++int attr spinBars 0x0 ++int attr spinnerDropDownItemStyle 0x0 ++int attr spinnerStyle 0x0 ++int attr splitTrack 0x0 ++int attr srcCompat 0x0 ++int attr state_above_anchor 0x0 ++int attr statusBarBackground 0x0 ++int attr subMenuArrow 0x0 ++int attr submitBackground 0x0 ++int attr subtitle 0x0 ++int attr subtitleTextAppearance 0x0 ++int attr subtitleTextColor 0x0 ++int attr subtitleTextStyle 0x0 ++int attr suggestionRowLayout 0x0 ++int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 ++int attr switchMinWidth 0x0 ++int attr switchPadding 0x0 ++int attr switchStyle 0x0 ++int attr switchTextAppearance 0x0 ++int attr textAllCaps 0x0 ++int attr textAppearanceLargePopupMenu 0x0 ++int attr textAppearanceListItem 0x0 ++int attr textAppearanceListItemSecondary 0x0 ++int attr textAppearanceListItemSmall 0x0 ++int attr textAppearancePopupMenuHeader 0x0 ++int attr textAppearanceSearchResultSubtitle 0x0 ++int attr textAppearanceSearchResultTitle 0x0 ++int attr textAppearanceSmallPopupMenu 0x0 ++int attr textColorAlertDialogListItem 0x0 ++int attr textColorSearchUrl 0x0 ++int attr textLocale 0x0 ++int attr theme 0x0 ++int attr thickness 0x0 ++int attr thumbTextPadding 0x0 ++int attr thumbTint 0x0 ++int attr thumbTintMode 0x0 ++int attr tickMark 0x0 ++int attr tickMarkTint 0x0 ++int attr tickMarkTintMode 0x0 ++int attr tint 0x0 ++int attr tintMode 0x0 ++int attr title 0x0 ++int attr titleMargin 0x0 ++int attr titleMarginBottom 0x0 ++int attr titleMarginEnd 0x0 ++int attr titleMarginStart 0x0 ++int attr titleMarginTop 0x0 ++int attr titleMargins 0x0 ++int attr titleTextAppearance 0x0 ++int attr titleTextColor 0x0 ++int attr titleTextStyle 0x0 ++int attr toolbarNavigationButtonStyle 0x0 ++int attr toolbarStyle 0x0 ++int attr tooltipForegroundColor 0x0 ++int attr tooltipFrameBackground 0x0 ++int attr tooltipText 0x0 ++int attr track 0x0 ++int attr trackTint 0x0 ++int attr trackTintMode 0x0 ++int attr ttcIndex 0x0 ++int attr viewAspectRatio 0x0 ++int attr viewInflaterClass 0x0 ++int attr voiceIcon 0x0 ++int attr windowActionBar 0x0 ++int attr windowActionBarOverlay 0x0 ++int attr windowActionModeOverlay 0x0 ++int attr windowFixedHeightMajor 0x0 ++int attr windowFixedHeightMinor 0x0 ++int attr windowFixedWidthMajor 0x0 ++int attr windowFixedWidthMinor 0x0 ++int attr windowMinWidthMajor 0x0 ++int attr windowMinWidthMinor 0x0 ++int attr windowNoTitle 0x0 ++int bool abc_action_bar_embed_tabs 0x0 ++int bool abc_config_actionMenuItemAllCaps 0x0 ++int color abc_background_cache_hint_selector_material_dark 0x0 ++int color abc_background_cache_hint_selector_material_light 0x0 ++int color abc_btn_colored_borderless_text_material 0x0 ++int color abc_btn_colored_text_material 0x0 ++int color abc_color_highlight_material 0x0 ++int color abc_decor_view_status_guard 0x0 ++int color abc_decor_view_status_guard_light 0x0 ++int color abc_hint_foreground_material_dark 0x0 ++int color abc_hint_foreground_material_light 0x0 ++int color abc_primary_text_disable_only_material_dark 0x0 ++int color abc_primary_text_disable_only_material_light 0x0 ++int color abc_primary_text_material_dark 0x0 ++int color abc_primary_text_material_light 0x0 ++int color abc_search_url_text 0x0 ++int color abc_search_url_text_normal 0x0 ++int color abc_search_url_text_pressed 0x0 ++int color abc_search_url_text_selected 0x0 ++int color abc_secondary_text_material_dark 0x0 ++int color abc_secondary_text_material_light 0x0 ++int color abc_tint_btn_checkable 0x0 ++int color abc_tint_default 0x0 ++int color abc_tint_edittext 0x0 ++int color abc_tint_seek_thumb 0x0 ++int color abc_tint_spinner 0x0 ++int color abc_tint_switch_track 0x0 ++int color accent_material_dark 0x0 ++int color accent_material_light 0x0 ++int color androidx_core_ripple_material_light 0x0 ++int color androidx_core_secondary_text_default_material_light 0x0 ++int color background_floating_material_dark 0x0 ++int color background_floating_material_light 0x0 ++int color background_material_dark 0x0 ++int color background_material_light 0x0 ++int color bright_foreground_disabled_material_dark 0x0 ++int color bright_foreground_disabled_material_light 0x0 ++int color bright_foreground_inverse_material_dark 0x0 ++int color bright_foreground_inverse_material_light 0x0 ++int color bright_foreground_material_dark 0x0 ++int color bright_foreground_material_light 0x0 ++int color button_material_dark 0x0 ++int color button_material_light 0x0 ++int color call_notification_answer_color 0x0 ++int color call_notification_decline_color 0x0 ++int color catalyst_logbox_background 0x0 ++int color catalyst_redbox_background 0x0 ++int color common_google_signin_btn_text_dark 0x0 ++int color common_google_signin_btn_text_dark_default 0x0 ++int color common_google_signin_btn_text_dark_disabled 0x0 ++int color common_google_signin_btn_text_dark_focused 0x0 ++int color common_google_signin_btn_text_dark_pressed 0x0 ++int color common_google_signin_btn_text_light 0x0 ++int color common_google_signin_btn_text_light_default 0x0 ++int color common_google_signin_btn_text_light_disabled 0x0 ++int color common_google_signin_btn_text_light_focused 0x0 ++int color common_google_signin_btn_text_light_pressed 0x0 ++int color common_google_signin_btn_tint 0x0 ++int color dim_foreground_disabled_material_dark 0x0 ++int color dim_foreground_disabled_material_light 0x0 ++int color dim_foreground_material_dark 0x0 ++int color dim_foreground_material_light 0x0 ++int color error_color_material_dark 0x0 ++int color error_color_material_light 0x0 ++int color foreground_material_dark 0x0 ++int color foreground_material_light 0x0 ++int color highlighted_text_material_dark 0x0 ++int color highlighted_text_material_light 0x0 ++int color material_blue_grey_800 0x0 ++int color material_blue_grey_900 0x0 ++int color material_blue_grey_950 0x0 ++int color material_deep_teal_200 0x0 ++int color material_deep_teal_500 0x0 ++int color material_grey_100 0x0 ++int color material_grey_300 0x0 ++int color material_grey_50 0x0 ++int color material_grey_600 0x0 ++int color material_grey_800 0x0 ++int color material_grey_850 0x0 ++int color material_grey_900 0x0 ++int color notification_action_color_filter 0x0 ++int color notification_icon_bg_color 0x0 ++int color notification_material_background_media_default_color 0x0 ++int color primary_dark_material_dark 0x0 ++int color primary_dark_material_light 0x0 ++int color primary_material_dark 0x0 ++int color primary_material_light 0x0 ++int color primary_text_default_material_dark 0x0 ++int color primary_text_default_material_light 0x0 ++int color primary_text_disabled_material_dark 0x0 ++int color primary_text_disabled_material_light 0x0 ++int color ripple_material_dark 0x0 ++int color ripple_material_light 0x0 ++int color secondary_text_default_material_dark 0x0 ++int color secondary_text_default_material_light 0x0 ++int color secondary_text_disabled_material_dark 0x0 ++int color secondary_text_disabled_material_light 0x0 ++int color switch_thumb_disabled_material_dark 0x0 ++int color switch_thumb_disabled_material_light 0x0 ++int color switch_thumb_material_dark 0x0 ++int color switch_thumb_material_light 0x0 ++int color switch_thumb_normal_material_dark 0x0 ++int color switch_thumb_normal_material_light 0x0 ++int color tooltip_background_dark 0x0 ++int color tooltip_background_light 0x0 ++int dimen abc_action_bar_content_inset_material 0x0 ++int dimen abc_action_bar_content_inset_with_nav 0x0 ++int dimen abc_action_bar_default_height_material 0x0 ++int dimen abc_action_bar_default_padding_end_material 0x0 ++int dimen abc_action_bar_default_padding_start_material 0x0 ++int dimen abc_action_bar_elevation_material 0x0 ++int dimen abc_action_bar_icon_vertical_padding_material 0x0 ++int dimen abc_action_bar_overflow_padding_end_material 0x0 ++int dimen abc_action_bar_overflow_padding_start_material 0x0 ++int dimen abc_action_bar_stacked_max_height 0x0 ++int dimen abc_action_bar_stacked_tab_max_width 0x0 ++int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 ++int dimen abc_action_bar_subtitle_top_margin_material 0x0 ++int dimen abc_action_button_min_height_material 0x0 ++int dimen abc_action_button_min_width_material 0x0 ++int dimen abc_action_button_min_width_overflow_material 0x0 ++int dimen abc_alert_dialog_button_bar_height 0x0 ++int dimen abc_alert_dialog_button_dimen 0x0 ++int dimen abc_button_inset_horizontal_material 0x0 ++int dimen abc_button_inset_vertical_material 0x0 ++int dimen abc_button_padding_horizontal_material 0x0 ++int dimen abc_button_padding_vertical_material 0x0 ++int dimen abc_cascading_menus_min_smallest_width 0x0 ++int dimen abc_config_prefDialogWidth 0x0 ++int dimen abc_control_corner_material 0x0 ++int dimen abc_control_inset_material 0x0 ++int dimen abc_control_padding_material 0x0 ++int dimen abc_dialog_corner_radius_material 0x0 ++int dimen abc_dialog_fixed_height_major 0x0 ++int dimen abc_dialog_fixed_height_minor 0x0 ++int dimen abc_dialog_fixed_width_major 0x0 ++int dimen abc_dialog_fixed_width_minor 0x0 ++int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 ++int dimen abc_dialog_list_padding_top_no_title 0x0 ++int dimen abc_dialog_min_width_major 0x0 ++int dimen abc_dialog_min_width_minor 0x0 ++int dimen abc_dialog_padding_material 0x0 ++int dimen abc_dialog_padding_top_material 0x0 ++int dimen abc_dialog_title_divider_material 0x0 ++int dimen abc_disabled_alpha_material_dark 0x0 ++int dimen abc_disabled_alpha_material_light 0x0 ++int dimen abc_dropdownitem_icon_width 0x0 ++int dimen abc_dropdownitem_text_padding_left 0x0 ++int dimen abc_dropdownitem_text_padding_right 0x0 ++int dimen abc_edit_text_inset_bottom_material 0x0 ++int dimen abc_edit_text_inset_horizontal_material 0x0 ++int dimen abc_edit_text_inset_top_material 0x0 ++int dimen abc_floating_window_z 0x0 ++int dimen abc_list_item_height_large_material 0x0 ++int dimen abc_list_item_height_material 0x0 ++int dimen abc_list_item_height_small_material 0x0 ++int dimen abc_list_item_padding_horizontal_material 0x0 ++int dimen abc_panel_menu_list_width 0x0 ++int dimen abc_progress_bar_height_material 0x0 ++int dimen abc_search_view_preferred_height 0x0 ++int dimen abc_search_view_preferred_width 0x0 ++int dimen abc_seekbar_track_background_height_material 0x0 ++int dimen abc_seekbar_track_progress_height_material 0x0 ++int dimen abc_select_dialog_padding_start_material 0x0 ++int dimen abc_star_big 0x0 ++int dimen abc_star_medium 0x0 ++int dimen abc_star_small 0x0 ++int dimen abc_switch_padding 0x0 ++int dimen abc_text_size_body_1_material 0x0 ++int dimen abc_text_size_body_2_material 0x0 ++int dimen abc_text_size_button_material 0x0 ++int dimen abc_text_size_caption_material 0x0 ++int dimen abc_text_size_display_1_material 0x0 ++int dimen abc_text_size_display_2_material 0x0 ++int dimen abc_text_size_display_3_material 0x0 ++int dimen abc_text_size_display_4_material 0x0 ++int dimen abc_text_size_headline_material 0x0 ++int dimen abc_text_size_large_material 0x0 ++int dimen abc_text_size_medium_material 0x0 ++int dimen abc_text_size_menu_header_material 0x0 ++int dimen abc_text_size_menu_material 0x0 ++int dimen abc_text_size_small_material 0x0 ++int dimen abc_text_size_subhead_material 0x0 ++int dimen abc_text_size_subtitle_material_toolbar 0x0 ++int dimen abc_text_size_title_material 0x0 ++int dimen abc_text_size_title_material_toolbar 0x0 ++int dimen autofill_inline_suggestion_icon_size 0x0 ++int dimen compat_button_inset_horizontal_material 0x0 ++int dimen compat_button_inset_vertical_material 0x0 ++int dimen compat_button_padding_horizontal_material 0x0 ++int dimen compat_button_padding_vertical_material 0x0 ++int dimen compat_control_corner_material 0x0 ++int dimen compat_notification_large_icon_max_height 0x0 ++int dimen compat_notification_large_icon_max_width 0x0 ++int dimen def_drawer_elevation 0x0 ++int dimen disabled_alpha_material_dark 0x0 ++int dimen disabled_alpha_material_light 0x0 ++int dimen highlight_alpha_material_colored 0x0 ++int dimen highlight_alpha_material_dark 0x0 ++int dimen highlight_alpha_material_light 0x0 ++int dimen hint_alpha_material_dark 0x0 ++int dimen hint_alpha_material_light 0x0 ++int dimen hint_pressed_alpha_material_dark 0x0 ++int dimen hint_pressed_alpha_material_light 0x0 ++int dimen notification_action_icon_size 0x0 ++int dimen notification_action_text_size 0x0 ++int dimen notification_big_circle_margin 0x0 ++int dimen notification_content_margin_start 0x0 ++int dimen notification_large_icon_height 0x0 ++int dimen notification_large_icon_width 0x0 ++int dimen notification_main_column_padding_top 0x0 ++int dimen notification_media_narrow_margin 0x0 ++int dimen notification_right_icon_size 0x0 ++int dimen notification_right_side_padding_top 0x0 ++int dimen notification_small_icon_background_padding 0x0 ++int dimen notification_small_icon_size_as_large 0x0 ++int dimen notification_subtext_size 0x0 ++int dimen notification_top_pad 0x0 ++int dimen notification_top_pad_large_text 0x0 ++int dimen tooltip_corner_radius 0x0 ++int dimen tooltip_horizontal_padding 0x0 ++int dimen tooltip_margin 0x0 ++int dimen tooltip_precise_anchor_extra_offset 0x0 ++int dimen tooltip_precise_anchor_threshold 0x0 ++int dimen tooltip_vertical_padding 0x0 ++int dimen tooltip_y_offset_non_touch 0x0 ++int dimen tooltip_y_offset_touch 0x0 ++int drawable abc_ab_share_pack_mtrl_alpha 0x0 ++int drawable abc_action_bar_item_background_material 0x0 ++int drawable abc_btn_borderless_material 0x0 ++int drawable abc_btn_check_material 0x0 ++int drawable abc_btn_check_material_anim 0x0 ++int drawable abc_btn_check_to_on_mtrl_000 0x0 ++int drawable abc_btn_check_to_on_mtrl_015 0x0 ++int drawable abc_btn_colored_material 0x0 ++int drawable abc_btn_default_mtrl_shape 0x0 ++int drawable abc_btn_radio_material 0x0 ++int drawable abc_btn_radio_material_anim 0x0 ++int drawable abc_btn_radio_to_on_mtrl_000 0x0 ++int drawable abc_btn_radio_to_on_mtrl_015 0x0 ++int drawable abc_btn_switch_to_on_mtrl_00001 0x0 ++int drawable abc_btn_switch_to_on_mtrl_00012 0x0 ++int drawable abc_cab_background_internal_bg 0x0 ++int drawable abc_cab_background_top_material 0x0 ++int drawable abc_cab_background_top_mtrl_alpha 0x0 ++int drawable abc_control_background_material 0x0 ++int drawable abc_dialog_material_background 0x0 ++int drawable abc_edit_text_material 0x0 ++int drawable abc_ic_ab_back_material 0x0 ++int drawable abc_ic_arrow_drop_right_black_24dp 0x0 ++int drawable abc_ic_clear_material 0x0 ++int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 ++int drawable abc_ic_go_search_api_material 0x0 ++int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 ++int drawable abc_ic_menu_cut_mtrl_alpha 0x0 ++int drawable abc_ic_menu_overflow_material 0x0 ++int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 ++int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 ++int drawable abc_ic_menu_share_mtrl_alpha 0x0 ++int drawable abc_ic_search_api_material 0x0 ++int drawable abc_ic_voice_search_api_material 0x0 ++int drawable abc_item_background_holo_dark 0x0 ++int drawable abc_item_background_holo_light 0x0 ++int drawable abc_list_divider_material 0x0 ++int drawable abc_list_divider_mtrl_alpha 0x0 ++int drawable abc_list_focused_holo 0x0 ++int drawable abc_list_longpressed_holo 0x0 ++int drawable abc_list_pressed_holo_dark 0x0 ++int drawable abc_list_pressed_holo_light 0x0 ++int drawable abc_list_selector_background_transition_holo_dark 0x0 ++int drawable abc_list_selector_background_transition_holo_light 0x0 ++int drawable abc_list_selector_disabled_holo_dark 0x0 ++int drawable abc_list_selector_disabled_holo_light 0x0 ++int drawable abc_list_selector_holo_dark 0x0 ++int drawable abc_list_selector_holo_light 0x0 ++int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 ++int drawable abc_popup_background_mtrl_mult 0x0 ++int drawable abc_ratingbar_indicator_material 0x0 ++int drawable abc_ratingbar_material 0x0 ++int drawable abc_ratingbar_small_material 0x0 ++int drawable abc_scrubber_control_off_mtrl_alpha 0x0 ++int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 ++int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 ++int drawable abc_scrubber_primary_mtrl_alpha 0x0 ++int drawable abc_scrubber_track_mtrl_alpha 0x0 ++int drawable abc_seekbar_thumb_material 0x0 ++int drawable abc_seekbar_tick_mark_material 0x0 ++int drawable abc_seekbar_track_material 0x0 ++int drawable abc_spinner_mtrl_am_alpha 0x0 ++int drawable abc_spinner_textfield_background_material 0x0 ++int drawable abc_star_black_48dp 0x0 ++int drawable abc_star_half_black_48dp 0x0 ++int drawable abc_switch_thumb_material 0x0 ++int drawable abc_switch_track_mtrl_alpha 0x0 ++int drawable abc_tab_indicator_material 0x0 ++int drawable abc_tab_indicator_mtrl_alpha 0x0 ++int drawable abc_text_cursor_material 0x0 ++int drawable abc_text_select_handle_left_mtrl 0x0 ++int drawable abc_text_select_handle_middle_mtrl 0x0 ++int drawable abc_text_select_handle_right_mtrl 0x0 ++int drawable abc_textfield_activated_mtrl_alpha 0x0 ++int drawable abc_textfield_default_mtrl_alpha 0x0 ++int drawable abc_textfield_search_activated_mtrl_alpha 0x0 ++int drawable abc_textfield_search_default_mtrl_alpha 0x0 ++int drawable abc_textfield_search_material 0x0 ++int drawable abc_vector_test 0x0 ++int drawable autofill_inline_suggestion_chip_background 0x0 ++int drawable btn_checkbox_checked_mtrl 0x0 ++int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 ++int drawable btn_checkbox_unchecked_mtrl 0x0 ++int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 ++int drawable btn_radio_off_mtrl 0x0 ++int drawable btn_radio_off_to_on_mtrl_animation 0x0 ++int drawable btn_radio_on_mtrl 0x0 ++int drawable btn_radio_on_to_off_mtrl_animation 0x0 ++int drawable common_full_open_on_phone 0x0 ++int drawable common_google_signin_btn_icon_dark 0x0 ++int drawable common_google_signin_btn_icon_dark_focused 0x0 ++int drawable common_google_signin_btn_icon_dark_normal 0x0 ++int drawable common_google_signin_btn_icon_dark_normal_background 0x0 ++int drawable common_google_signin_btn_icon_disabled 0x0 ++int drawable common_google_signin_btn_icon_light 0x0 ++int drawable common_google_signin_btn_icon_light_focused 0x0 ++int drawable common_google_signin_btn_icon_light_normal 0x0 ++int drawable common_google_signin_btn_icon_light_normal_background 0x0 ++int drawable common_google_signin_btn_text_dark 0x0 ++int drawable common_google_signin_btn_text_dark_focused 0x0 ++int drawable common_google_signin_btn_text_dark_normal 0x0 ++int drawable common_google_signin_btn_text_dark_normal_background 0x0 ++int drawable common_google_signin_btn_text_disabled 0x0 ++int drawable common_google_signin_btn_text_light 0x0 ++int drawable common_google_signin_btn_text_light_focused 0x0 ++int drawable common_google_signin_btn_text_light_normal 0x0 ++int drawable common_google_signin_btn_text_light_normal_background 0x0 ++int drawable googleg_disabled_color_18 0x0 ++int drawable googleg_standard_color_18 0x0 ++int drawable ic_call_answer 0x0 ++int drawable ic_call_answer_low 0x0 ++int drawable ic_call_answer_video 0x0 ++int drawable ic_call_answer_video_low 0x0 ++int drawable ic_call_decline 0x0 ++int drawable ic_call_decline_low 0x0 ++int drawable ic_resume 0x0 ++int drawable notification_action_background 0x0 ++int drawable notification_bg 0x0 ++int drawable notification_bg_low 0x0 ++int drawable notification_bg_low_normal 0x0 ++int drawable notification_bg_low_pressed 0x0 ++int drawable notification_bg_normal 0x0 ++int drawable notification_bg_normal_pressed 0x0 ++int drawable notification_icon_background 0x0 ++int drawable notification_oversize_large_icon_bg 0x0 ++int drawable notification_template_icon_bg 0x0 ++int drawable notification_template_icon_low_bg 0x0 ++int drawable notification_tile_bg 0x0 ++int drawable notify_panel_notification_icon_bg 0x0 ++int drawable paused_in_debugger_background 0x0 ++int drawable paused_in_debugger_dialog_background 0x0 ++int drawable redbox_top_border_background 0x0 ++int drawable ripple_effect 0x0 ++int drawable test_level_drawable 0x0 ++int drawable tooltip_frame_dark 0x0 ++int drawable tooltip_frame_light 0x0 ++int id accessibility_action_clickable_span 0x0 ++int id accessibility_actions 0x0 ++int id accessibility_collection 0x0 ++int id accessibility_collection_item 0x0 ++int id accessibility_custom_action_0 0x0 ++int id accessibility_custom_action_1 0x0 ++int id accessibility_custom_action_10 0x0 ++int id accessibility_custom_action_11 0x0 ++int id accessibility_custom_action_12 0x0 ++int id accessibility_custom_action_13 0x0 ++int id accessibility_custom_action_14 0x0 ++int id accessibility_custom_action_15 0x0 ++int id accessibility_custom_action_16 0x0 ++int id accessibility_custom_action_17 0x0 ++int id accessibility_custom_action_18 0x0 ++int id accessibility_custom_action_19 0x0 ++int id accessibility_custom_action_2 0x0 ++int id accessibility_custom_action_20 0x0 ++int id accessibility_custom_action_21 0x0 ++int id accessibility_custom_action_22 0x0 ++int id accessibility_custom_action_23 0x0 ++int id accessibility_custom_action_24 0x0 ++int id accessibility_custom_action_25 0x0 ++int id accessibility_custom_action_26 0x0 ++int id accessibility_custom_action_27 0x0 ++int id accessibility_custom_action_28 0x0 ++int id accessibility_custom_action_29 0x0 ++int id accessibility_custom_action_3 0x0 ++int id accessibility_custom_action_30 0x0 ++int id accessibility_custom_action_31 0x0 ++int id accessibility_custom_action_4 0x0 ++int id accessibility_custom_action_5 0x0 ++int id accessibility_custom_action_6 0x0 ++int id accessibility_custom_action_7 0x0 ++int id accessibility_custom_action_8 0x0 ++int id accessibility_custom_action_9 0x0 ++int id accessibility_hint 0x0 ++int id accessibility_label 0x0 ++int id accessibility_links 0x0 ++int id accessibility_role 0x0 ++int id accessibility_state 0x0 ++int id accessibility_state_expanded 0x0 ++int id accessibility_value 0x0 ++int id action0 0x0 ++int id action_bar 0x0 ++int id action_bar_activity_content 0x0 ++int id action_bar_container 0x0 ++int id action_bar_root 0x0 ++int id action_bar_spinner 0x0 ++int id action_bar_subtitle 0x0 ++int id action_bar_title 0x0 ++int id action_container 0x0 ++int id action_context_bar 0x0 ++int id action_divider 0x0 ++int id action_image 0x0 ++int id action_menu_divider 0x0 ++int id action_menu_presenter 0x0 ++int id action_mode_bar 0x0 ++int id action_mode_bar_stub 0x0 ++int id action_mode_close_button 0x0 ++int id action_text 0x0 ++int id actions 0x0 ++int id activity_chooser_view_content 0x0 ++int id add 0x0 ++int id adjust_height 0x0 ++int id adjust_width 0x0 ++int id alertTitle 0x0 ++int id alert_title 0x0 ++int id all 0x0 ++int id async 0x0 ++int id auto 0x0 ++int id autofill_inline_suggestion_end_icon 0x0 ++int id autofill_inline_suggestion_start_icon 0x0 ++int id autofill_inline_suggestion_subtitle 0x0 ++int id autofill_inline_suggestion_title 0x0 ++int id blocking 0x0 ++int id bottom 0x0 ++int id button 0x0 ++int id buttonPanel 0x0 ++int id button_text 0x0 ++int id cancel_action 0x0 ++int id catalyst_redbox_title 0x0 ++int id center 0x0 ++int id centerCrop 0x0 ++int id centerInside 0x0 ++int id center_horizontal 0x0 ++int id center_vertical 0x0 ++int id checkbox 0x0 ++int id checked 0x0 ++int id chronometer 0x0 ++int id clip_horizontal 0x0 ++int id clip_vertical 0x0 ++int id content 0x0 ++int id contentPanel 0x0 ++int id custom 0x0 ++int id customPanel 0x0 ++int id dark 0x0 ++int id decor_content_parent 0x0 ++int id default_activity_button 0x0 ++int id dialog_button 0x0 ++int id edit_query 0x0 ++int id edit_text_id 0x0 ++int id end 0x0 ++int id end_padder 0x0 ++int id expand_activities_button 0x0 ++int id expanded_menu 0x0 ++int id fill 0x0 ++int id fill_horizontal 0x0 ++int id fill_vertical 0x0 ++int id filter 0x0 ++int id fitBottomStart 0x0 ++int id fitCenter 0x0 ++int id fitEnd 0x0 ++int id fitStart 0x0 ++int id fitXY 0x0 ++int id focusCrop 0x0 ++int id forever 0x0 ++int id fps_text 0x0 ++int id fragment_container_view_tag 0x0 ++int id group_divider 0x0 ++int id hide_ime_id 0x0 ++int id home 0x0 ++int id icon 0x0 ++int id icon_group 0x0 ++int id icon_only 0x0 ++int id image 0x0 ++int id info 0x0 ++int id invalidate_transform 0x0 ++int id italic 0x0 ++int id labelled_by 0x0 ++int id left 0x0 ++int id light 0x0 ++int id line1 0x0 ++int id line3 0x0 ++int id listMode 0x0 ++int id list_item 0x0 ++int id media_actions 0x0 ++int id media_controller_compat_view_tag 0x0 ++int id message 0x0 ++int id mix_blend_mode 0x0 ++int id multiply 0x0 ++int id none 0x0 ++int id normal 0x0 ++int id notification_background 0x0 ++int id notification_main_column 0x0 ++int id notification_main_column_container 0x0 ++int id off 0x0 ++int id on 0x0 ++int id parentPanel 0x0 ++int id pointer_events 0x0 ++int id progress_circular 0x0 ++int id progress_horizontal 0x0 ++int id radio 0x0 ++int id react_test_id 0x0 ++int id report_drawn 0x0 ++int id right 0x0 ++int id right_icon 0x0 ++int id right_side 0x0 ++int id rn_frame_file 0x0 ++int id rn_frame_method 0x0 ++int id rn_redbox_dismiss_button 0x0 ++int id rn_redbox_line_separator 0x0 ++int id rn_redbox_loading_indicator 0x0 ++int id rn_redbox_reload_button 0x0 ++int id rn_redbox_report_button 0x0 ++int id rn_redbox_report_label 0x0 ++int id rn_redbox_stack 0x0 ++int id role 0x0 ++int id screen 0x0 ++int id scrollIndicatorDown 0x0 ++int id scrollIndicatorUp 0x0 ++int id scrollView 0x0 ++int id search_badge 0x0 ++int id search_bar 0x0 ++int id search_button 0x0 ++int id search_close_btn 0x0 ++int id search_edit_frame 0x0 ++int id search_go_btn 0x0 ++int id search_mag_icon 0x0 ++int id search_plate 0x0 ++int id search_src_text 0x0 ++int id search_voice_btn 0x0 ++int id select_dialog_listview 0x0 ++int id shortcut 0x0 ++int id spacer 0x0 ++int id special_effects_controller_view_tag 0x0 ++int id split_action_bar 0x0 ++int id src_atop 0x0 ++int id src_in 0x0 ++int id src_over 0x0 ++int id standard 0x0 ++int id start 0x0 ++int id status_bar_latest_event_content 0x0 ++int id submenuarrow 0x0 ++int id submit_area 0x0 ++int id tabMode 0x0 ++int id tag_accessibility_actions 0x0 ++int id tag_accessibility_clickable_spans 0x0 ++int id tag_accessibility_heading 0x0 ++int id tag_accessibility_pane_title 0x0 ++int id tag_on_apply_window_listener 0x0 ++int id tag_on_receive_content_listener 0x0 ++int id tag_on_receive_content_mime_types 0x0 ++int id tag_screen_reader_focusable 0x0 ++int id tag_state_description 0x0 ++int id tag_transition_group 0x0 ++int id tag_unhandled_key_event_manager 0x0 ++int id tag_unhandled_key_listeners 0x0 ++int id tag_window_insets_animation_callback 0x0 ++int id text 0x0 ++int id text2 0x0 ++int id textSpacerNoButtons 0x0 ++int id textSpacerNoTitle 0x0 ++int id time 0x0 ++int id title 0x0 ++int id titleDividerNoCustom 0x0 ++int id title_template 0x0 ++int id top 0x0 ++int id topPanel 0x0 ++int id transform 0x0 ++int id transform_origin 0x0 ++int id unchecked 0x0 ++int id uniform 0x0 ++int id up 0x0 ++int id use_hardware_layer 0x0 ++int id view_clipped 0x0 ++int id view_tag_instance_handle 0x0 ++int id view_tag_native_id 0x0 ++int id view_tree_lifecycle_owner 0x0 ++int id view_tree_on_back_pressed_dispatcher_owner 0x0 ++int id view_tree_saved_state_registry_owner 0x0 ++int id view_tree_view_model_store_owner 0x0 ++int id visible_removing_fragment_view_tag 0x0 ++int id wide 0x0 ++int id wrap_content 0x0 ++int integer abc_config_activityDefaultDur 0x0 ++int integer abc_config_activityShortDur 0x0 ++int integer cancel_button_image_alpha 0x0 ++int integer config_tooltipAnimTime 0x0 ++int integer google_play_services_version 0x0 ++int integer react_native_dev_server_port 0x0 ++int integer status_bar_notification_info_maxnum 0x0 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 ++int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 ++int interpolator fast_out_slow_in 0x0 ++int layout abc_action_bar_title_item 0x0 ++int layout abc_action_bar_up_container 0x0 ++int layout abc_action_menu_item_layout 0x0 ++int layout abc_action_menu_layout 0x0 ++int layout abc_action_mode_bar 0x0 ++int layout abc_action_mode_close_item_material 0x0 ++int layout abc_activity_chooser_view 0x0 ++int layout abc_activity_chooser_view_list_item 0x0 ++int layout abc_alert_dialog_button_bar_material 0x0 ++int layout abc_alert_dialog_material 0x0 ++int layout abc_alert_dialog_title_material 0x0 ++int layout abc_cascading_menu_item_layout 0x0 ++int layout abc_dialog_title_material 0x0 ++int layout abc_expanded_menu_layout 0x0 ++int layout abc_list_menu_item_checkbox 0x0 ++int layout abc_list_menu_item_icon 0x0 ++int layout abc_list_menu_item_layout 0x0 ++int layout abc_list_menu_item_radio 0x0 ++int layout abc_popup_menu_header_item_layout 0x0 ++int layout abc_popup_menu_item_layout 0x0 ++int layout abc_screen_content_include 0x0 ++int layout abc_screen_simple 0x0 ++int layout abc_screen_simple_overlay_action_mode 0x0 ++int layout abc_screen_toolbar 0x0 ++int layout abc_search_dropdown_item_icons_2line 0x0 ++int layout abc_search_view 0x0 ++int layout abc_select_dialog_material 0x0 ++int layout abc_tooltip 0x0 ++int layout alert_title_layout 0x0 ++int layout autofill_inline_suggestion 0x0 ++int layout custom_dialog 0x0 ++int layout dev_loading_view 0x0 ++int layout fps_view 0x0 ++int layout ime_base_split_test_activity 0x0 ++int layout ime_secondary_split_test_activity 0x0 ++int layout notification_action 0x0 ++int layout notification_action_tombstone 0x0 ++int layout notification_media_action 0x0 ++int layout notification_media_cancel_action 0x0 ++int layout notification_template_big_media 0x0 ++int layout notification_template_big_media_custom 0x0 ++int layout notification_template_big_media_narrow 0x0 ++int layout notification_template_big_media_narrow_custom 0x0 ++int layout notification_template_custom_big 0x0 ++int layout notification_template_icon_group 0x0 ++int layout notification_template_lines_media 0x0 ++int layout notification_template_media 0x0 ++int layout notification_template_media_custom 0x0 ++int layout notification_template_part_chronometer 0x0 ++int layout notification_template_part_time 0x0 ++int layout paused_in_debugger_view 0x0 ++int layout redbox_item_frame 0x0 ++int layout redbox_item_title 0x0 ++int layout redbox_view 0x0 ++int layout select_dialog_item_material 0x0 ++int layout select_dialog_multichoice_material 0x0 ++int layout select_dialog_singlechoice_material 0x0 ++int layout support_simple_spinner_dropdown_item 0x0 ++int string abc_action_bar_home_description 0x0 ++int string abc_action_bar_up_description 0x0 ++int string abc_action_menu_overflow_description 0x0 ++int string abc_action_mode_done 0x0 ++int string abc_activity_chooser_view_see_all 0x0 ++int string abc_activitychooserview_choose_application 0x0 ++int string abc_capital_off 0x0 ++int string abc_capital_on 0x0 ++int string abc_menu_alt_shortcut_label 0x0 ++int string abc_menu_ctrl_shortcut_label 0x0 ++int string abc_menu_delete_shortcut_label 0x0 ++int string abc_menu_enter_shortcut_label 0x0 ++int string abc_menu_function_shortcut_label 0x0 ++int string abc_menu_meta_shortcut_label 0x0 ++int string abc_menu_shift_shortcut_label 0x0 ++int string abc_menu_space_shortcut_label 0x0 ++int string abc_menu_sym_shortcut_label 0x0 ++int string abc_prepend_shortcut_label 0x0 ++int string abc_search_hint 0x0 ++int string abc_searchview_description_clear 0x0 ++int string abc_searchview_description_query 0x0 ++int string abc_searchview_description_search 0x0 ++int string abc_searchview_description_submit 0x0 ++int string abc_searchview_description_voice 0x0 ++int string abc_shareactionprovider_share_with 0x0 ++int string abc_shareactionprovider_share_with_application 0x0 ++int string abc_toolbar_collapse_description 0x0 ++int string alert_description 0x0 ++int string call_notification_answer_action 0x0 ++int string call_notification_answer_video_action 0x0 ++int string call_notification_decline_action 0x0 ++int string call_notification_hang_up_action 0x0 ++int string call_notification_incoming_text 0x0 ++int string call_notification_ongoing_text 0x0 ++int string call_notification_screening_text 0x0 ++int string catalyst_change_bundle_location 0x0 ++int string catalyst_copy_button 0x0 ++int string catalyst_debug_connecting 0x0 ++int string catalyst_debug_error 0x0 ++int string catalyst_debug_open 0x0 ++int string catalyst_debug_open_disabled 0x0 ++int string catalyst_dev_menu_header 0x0 ++int string catalyst_dev_menu_sub_header 0x0 ++int string catalyst_dismiss_button 0x0 ++int string catalyst_heap_capture 0x0 ++int string catalyst_hot_reloading 0x0 ++int string catalyst_hot_reloading_auto_disable 0x0 ++int string catalyst_hot_reloading_auto_enable 0x0 ++int string catalyst_hot_reloading_stop 0x0 ++int string catalyst_inspector_toggle 0x0 ++int string catalyst_loading_from_url 0x0 ++int string catalyst_open_debugger_error 0x0 ++int string catalyst_perf_monitor 0x0 ++int string catalyst_perf_monitor_stop 0x0 ++int string catalyst_reload 0x0 ++int string catalyst_reload_button 0x0 ++int string catalyst_reload_error 0x0 ++int string catalyst_report_button 0x0 ++int string catalyst_sample_profiler_toggle 0x0 ++int string catalyst_settings 0x0 ++int string catalyst_settings_title 0x0 ++int string combobox_description 0x0 ++int string common_google_play_services_enable_button 0x0 ++int string common_google_play_services_enable_text 0x0 ++int string common_google_play_services_enable_title 0x0 ++int string common_google_play_services_install_button 0x0 ++int string common_google_play_services_install_text 0x0 ++int string common_google_play_services_install_title 0x0 ++int string common_google_play_services_notification_channel_name 0x0 ++int string common_google_play_services_notification_ticker 0x0 ++int string common_google_play_services_unknown_issue 0x0 ++int string common_google_play_services_unsupported_text 0x0 ++int string common_google_play_services_update_button 0x0 ++int string common_google_play_services_update_text 0x0 ++int string common_google_play_services_update_title 0x0 ++int string common_google_play_services_updating_text 0x0 ++int string common_google_play_services_wear_update_text 0x0 ++int string common_open_on_phone 0x0 ++int string common_signin_button_text 0x0 ++int string common_signin_button_text_long 0x0 ++int string header_description 0x0 ++int string image_description 0x0 ++int string imagebutton_description 0x0 ++int string link_description 0x0 ++int string menu_description 0x0 ++int string menubar_description 0x0 ++int string menuitem_description 0x0 ++int string progressbar_description 0x0 ++int string radiogroup_description 0x0 ++int string rn_tab_description 0x0 ++int string scrollbar_description 0x0 ++int string search_menu_title 0x0 ++int string spinbutton_description 0x0 ++int string state_busy_description 0x0 ++int string state_collapsed_description 0x0 ++int string state_expanded_description 0x0 ++int string state_mixed_description 0x0 ++int string state_off_description 0x0 ++int string state_on_description 0x0 ++int string state_unselected_description 0x0 ++int string status_bar_notification_info_overflow 0x0 ++int string summary_description 0x0 ++int string tablist_description 0x0 ++int string timer_description 0x0 ++int string toolbar_description 0x0 ++int style AlertDialog_AppCompat 0x0 ++int style AlertDialog_AppCompat_Light 0x0 ++int style Animation_AppCompat_Dialog 0x0 ++int style Animation_AppCompat_DropDownUp 0x0 ++int style Animation_AppCompat_Tooltip 0x0 ++int style Animation_Catalyst_LogBox 0x0 ++int style Animation_Catalyst_RedBox 0x0 ++int style Base_AlertDialog_AppCompat 0x0 ++int style Base_AlertDialog_AppCompat_Light 0x0 ++int style Base_Animation_AppCompat_Dialog 0x0 ++int style Base_Animation_AppCompat_DropDownUp 0x0 ++int style Base_Animation_AppCompat_Tooltip 0x0 ++int style Base_DialogWindowTitleBackground_AppCompat 0x0 ++int style Base_DialogWindowTitle_AppCompat 0x0 ++int style Base_TextAppearance_AppCompat 0x0 ++int style Base_TextAppearance_AppCompat_Body1 0x0 ++int style Base_TextAppearance_AppCompat_Body2 0x0 ++int style Base_TextAppearance_AppCompat_Button 0x0 ++int style Base_TextAppearance_AppCompat_Caption 0x0 ++int style Base_TextAppearance_AppCompat_Display1 0x0 ++int style Base_TextAppearance_AppCompat_Display2 0x0 ++int style Base_TextAppearance_AppCompat_Display3 0x0 ++int style Base_TextAppearance_AppCompat_Display4 0x0 ++int style Base_TextAppearance_AppCompat_Headline 0x0 ++int style Base_TextAppearance_AppCompat_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Large 0x0 ++int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 ++int style Base_TextAppearance_AppCompat_Medium 0x0 ++int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Menu 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 ++int style Base_TextAppearance_AppCompat_Small 0x0 ++int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Subhead 0x0 ++int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Title 0x0 ++int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Tooltip 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 ++int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 ++int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 ++int style Base_ThemeOverlay_AppCompat 0x0 ++int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 ++int style Base_ThemeOverlay_AppCompat_Dark 0x0 ++int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 ++int style Base_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 ++int style Base_ThemeOverlay_AppCompat_Light 0x0 ++int style Base_Theme_AppCompat 0x0 ++int style Base_Theme_AppCompat_CompactMenu 0x0 ++int style Base_Theme_AppCompat_Dialog 0x0 ++int style Base_Theme_AppCompat_DialogWhenLarge 0x0 ++int style Base_Theme_AppCompat_Dialog_Alert 0x0 ++int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 ++int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 ++int style Base_Theme_AppCompat_Light 0x0 ++int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 ++int style Base_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 ++int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_V21_Theme_AppCompat 0x0 ++int style Base_V21_Theme_AppCompat_Dialog 0x0 ++int style Base_V21_Theme_AppCompat_Light 0x0 ++int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_V22_Theme_AppCompat 0x0 ++int style Base_V22_Theme_AppCompat_Light 0x0 ++int style Base_V23_Theme_AppCompat 0x0 ++int style Base_V23_Theme_AppCompat_Light 0x0 ++int style Base_V26_Theme_AppCompat 0x0 ++int style Base_V26_Theme_AppCompat_Light 0x0 ++int style Base_V26_Widget_AppCompat_Toolbar 0x0 ++int style Base_V28_Theme_AppCompat 0x0 ++int style Base_V28_Theme_AppCompat_Light 0x0 ++int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_V7_Theme_AppCompat 0x0 ++int style Base_V7_Theme_AppCompat_Dialog 0x0 ++int style Base_V7_Theme_AppCompat_Light 0x0 ++int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Base_V7_Widget_AppCompat_EditText 0x0 ++int style Base_V7_Widget_AppCompat_Toolbar 0x0 ++int style Base_Widget_AppCompat_ActionBar 0x0 ++int style Base_Widget_AppCompat_ActionBar_Solid 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabText 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabView 0x0 ++int style Base_Widget_AppCompat_ActionButton 0x0 ++int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 ++int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 ++int style Base_Widget_AppCompat_ActionMode 0x0 ++int style Base_Widget_AppCompat_ActivityChooserView 0x0 ++int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Base_Widget_AppCompat_Button 0x0 ++int style Base_Widget_AppCompat_ButtonBar 0x0 ++int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 ++int style Base_Widget_AppCompat_Button_Borderless 0x0 ++int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 ++int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 ++int style Base_Widget_AppCompat_Button_Colored 0x0 ++int style Base_Widget_AppCompat_Button_Small 0x0 ++int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 ++int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 ++int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 ++int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 ++int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 ++int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 ++int style Base_Widget_AppCompat_EditText 0x0 ++int style Base_Widget_AppCompat_ImageButton 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 ++int style Base_Widget_AppCompat_Light_PopupMenu 0x0 ++int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 ++int style Base_Widget_AppCompat_ListMenuView 0x0 ++int style Base_Widget_AppCompat_ListPopupWindow 0x0 ++int style Base_Widget_AppCompat_ListView 0x0 ++int style Base_Widget_AppCompat_ListView_DropDown 0x0 ++int style Base_Widget_AppCompat_ListView_Menu 0x0 ++int style Base_Widget_AppCompat_PopupMenu 0x0 ++int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 ++int style Base_Widget_AppCompat_PopupWindow 0x0 ++int style Base_Widget_AppCompat_ProgressBar 0x0 ++int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 ++int style Base_Widget_AppCompat_RatingBar 0x0 ++int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 ++int style Base_Widget_AppCompat_RatingBar_Small 0x0 ++int style Base_Widget_AppCompat_SearchView 0x0 ++int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 ++int style Base_Widget_AppCompat_SeekBar 0x0 ++int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 ++int style Base_Widget_AppCompat_Spinner 0x0 ++int style Base_Widget_AppCompat_Spinner_Underlined 0x0 ++int style Base_Widget_AppCompat_TextView 0x0 ++int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 ++int style Base_Widget_AppCompat_Toolbar 0x0 ++int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 ++int style CalendarDatePickerDialog 0x0 ++int style CalendarDatePickerStyle 0x0 ++int style DialogAnimationFade 0x0 ++int style DialogAnimationSlide 0x0 ++int style NoAnimationDialog 0x0 ++int style Platform_AppCompat 0x0 ++int style Platform_AppCompat_Light 0x0 ++int style Platform_ThemeOverlay_AppCompat 0x0 ++int style Platform_ThemeOverlay_AppCompat_Dark 0x0 ++int style Platform_ThemeOverlay_AppCompat_Light 0x0 ++int style Platform_V21_AppCompat 0x0 ++int style Platform_V21_AppCompat_Light 0x0 ++int style Platform_V25_AppCompat 0x0 ++int style Platform_V25_AppCompat_Light 0x0 ++int style Platform_Widget_AppCompat_Spinner 0x0 ++int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 ++int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 ++int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 ++int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 ++int style SpinnerDatePickerDialog 0x0 ++int style SpinnerDatePickerStyle 0x0 ++int style TextAppearance_AppCompat 0x0 ++int style TextAppearance_AppCompat_Body1 0x0 ++int style TextAppearance_AppCompat_Body2 0x0 ++int style TextAppearance_AppCompat_Button 0x0 ++int style TextAppearance_AppCompat_Caption 0x0 ++int style TextAppearance_AppCompat_Display1 0x0 ++int style TextAppearance_AppCompat_Display2 0x0 ++int style TextAppearance_AppCompat_Display3 0x0 ++int style TextAppearance_AppCompat_Display4 0x0 ++int style TextAppearance_AppCompat_Headline 0x0 ++int style TextAppearance_AppCompat_Inverse 0x0 ++int style TextAppearance_AppCompat_Large 0x0 ++int style TextAppearance_AppCompat_Large_Inverse 0x0 ++int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 ++int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 ++int style TextAppearance_AppCompat_Medium 0x0 ++int style TextAppearance_AppCompat_Medium_Inverse 0x0 ++int style TextAppearance_AppCompat_Menu 0x0 ++int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 ++int style TextAppearance_AppCompat_SearchResult_Title 0x0 ++int style TextAppearance_AppCompat_Small 0x0 ++int style TextAppearance_AppCompat_Small_Inverse 0x0 ++int style TextAppearance_AppCompat_Subhead 0x0 ++int style TextAppearance_AppCompat_Subhead_Inverse 0x0 ++int style TextAppearance_AppCompat_Title 0x0 ++int style TextAppearance_AppCompat_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Tooltip 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_Button 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 ++int style TextAppearance_AppCompat_Widget_Switch 0x0 ++int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 ++int style TextAppearance_Compat_Notification 0x0 ++int style TextAppearance_Compat_Notification_Info 0x0 ++int style TextAppearance_Compat_Notification_Info_Media 0x0 ++int style TextAppearance_Compat_Notification_Line2 0x0 ++int style TextAppearance_Compat_Notification_Line2_Media 0x0 ++int style TextAppearance_Compat_Notification_Media 0x0 ++int style TextAppearance_Compat_Notification_Time 0x0 ++int style TextAppearance_Compat_Notification_Time_Media 0x0 ++int style TextAppearance_Compat_Notification_Title 0x0 ++int style TextAppearance_Compat_Notification_Title_Media 0x0 ++int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 ++int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 ++int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 ++int style Theme 0x0 ++int style ThemeOverlay_AppCompat 0x0 ++int style ThemeOverlay_AppCompat_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_Dark 0x0 ++int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_DayNight 0x0 ++int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_Dialog 0x0 ++int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 ++int style ThemeOverlay_AppCompat_Light 0x0 ++int style Theme_AppCompat 0x0 ++int style Theme_AppCompat_CompactMenu 0x0 ++int style Theme_AppCompat_DayNight 0x0 ++int style Theme_AppCompat_DayNight_DarkActionBar 0x0 ++int style Theme_AppCompat_DayNight_Dialog 0x0 ++int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 ++int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 ++int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_DayNight_NoActionBar 0x0 ++int style Theme_AppCompat_Dialog 0x0 ++int style Theme_AppCompat_DialogWhenLarge 0x0 ++int style Theme_AppCompat_Dialog_Alert 0x0 ++int style Theme_AppCompat_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_Empty 0x0 ++int style Theme_AppCompat_Light 0x0 ++int style Theme_AppCompat_Light_DarkActionBar 0x0 ++int style Theme_AppCompat_Light_Dialog 0x0 ++int style Theme_AppCompat_Light_DialogWhenLarge 0x0 ++int style Theme_AppCompat_Light_Dialog_Alert 0x0 ++int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_Light_NoActionBar 0x0 ++int style Theme_AppCompat_NoActionBar 0x0 ++int style Theme_AutofillInlineSuggestion 0x0 ++int style Theme_Catalyst 0x0 ++int style Theme_Catalyst_LogBox 0x0 ++int style Theme_Catalyst_RedBox 0x0 ++int style Theme_FullScreenDialog 0x0 ++int style Theme_FullScreenDialogAnimatedFade 0x0 ++int style Theme_FullScreenDialogAnimatedSlide 0x0 ++int style Theme_ReactNative_AppCompat_Light 0x0 ++int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0 ++int style Theme_ReactNative_TextInput_DefaultBackground 0x0 ++int style Widget_AppCompat_ActionBar 0x0 ++int style Widget_AppCompat_ActionBar_Solid 0x0 ++int style Widget_AppCompat_ActionBar_TabBar 0x0 ++int style Widget_AppCompat_ActionBar_TabText 0x0 ++int style Widget_AppCompat_ActionBar_TabView 0x0 ++int style Widget_AppCompat_ActionButton 0x0 ++int style Widget_AppCompat_ActionButton_CloseMode 0x0 ++int style Widget_AppCompat_ActionButton_Overflow 0x0 ++int style Widget_AppCompat_ActionMode 0x0 ++int style Widget_AppCompat_ActivityChooserView 0x0 ++int style Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Widget_AppCompat_Button 0x0 ++int style Widget_AppCompat_ButtonBar 0x0 ++int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 ++int style Widget_AppCompat_Button_Borderless 0x0 ++int style Widget_AppCompat_Button_Borderless_Colored 0x0 ++int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 ++int style Widget_AppCompat_Button_Colored 0x0 ++int style Widget_AppCompat_Button_Small 0x0 ++int style Widget_AppCompat_CompoundButton_CheckBox 0x0 ++int style Widget_AppCompat_CompoundButton_RadioButton 0x0 ++int style Widget_AppCompat_CompoundButton_Switch 0x0 ++int style Widget_AppCompat_DrawerArrowToggle 0x0 ++int style Widget_AppCompat_DropDownItem_Spinner 0x0 ++int style Widget_AppCompat_EditText 0x0 ++int style Widget_AppCompat_ImageButton 0x0 ++int style Widget_AppCompat_Light_ActionBar 0x0 ++int style Widget_AppCompat_Light_ActionBar_Solid 0x0 ++int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabText 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabView 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionButton 0x0 ++int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 ++int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 ++int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 ++int style Widget_AppCompat_Light_ActivityChooserView 0x0 ++int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 ++int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 ++int style Widget_AppCompat_Light_ListPopupWindow 0x0 ++int style Widget_AppCompat_Light_ListView_DropDown 0x0 ++int style Widget_AppCompat_Light_PopupMenu 0x0 ++int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 ++int style Widget_AppCompat_Light_SearchView 0x0 ++int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 ++int style Widget_AppCompat_ListMenuView 0x0 ++int style Widget_AppCompat_ListPopupWindow 0x0 ++int style Widget_AppCompat_ListView 0x0 ++int style Widget_AppCompat_ListView_DropDown 0x0 ++int style Widget_AppCompat_ListView_Menu 0x0 ++int style Widget_AppCompat_PopupMenu 0x0 ++int style Widget_AppCompat_PopupMenu_Overflow 0x0 ++int style Widget_AppCompat_PopupWindow 0x0 ++int style Widget_AppCompat_ProgressBar 0x0 ++int style Widget_AppCompat_ProgressBar_Horizontal 0x0 ++int style Widget_AppCompat_RatingBar 0x0 ++int style Widget_AppCompat_RatingBar_Indicator 0x0 ++int style Widget_AppCompat_RatingBar_Small 0x0 ++int style Widget_AppCompat_SearchView 0x0 ++int style Widget_AppCompat_SearchView_ActionBar 0x0 ++int style Widget_AppCompat_SeekBar 0x0 ++int style Widget_AppCompat_SeekBar_Discrete 0x0 ++int style Widget_AppCompat_Spinner 0x0 ++int style Widget_AppCompat_Spinner_DropDown 0x0 ++int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 ++int style Widget_AppCompat_Spinner_Underlined 0x0 ++int style Widget_AppCompat_TextView 0x0 ++int style Widget_AppCompat_TextView_SpinnerItem 0x0 ++int style Widget_AppCompat_Toolbar 0x0 ++int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 ++int style Widget_Autofill 0x0 ++int style Widget_Autofill_InlineSuggestionChip 0x0 ++int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0 ++int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0 ++int style Widget_Autofill_InlineSuggestionSubtitle 0x0 ++int style Widget_Autofill_InlineSuggestionTitle 0x0 ++int style Widget_Compat_NotificationActionContainer 0x0 ++int style Widget_Compat_NotificationActionText 0x0 ++int style Widget_Support_CoordinatorLayout 0x0 ++int style redboxButton 0x0 ++int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable ActionBar_background 0 ++int styleable ActionBar_backgroundSplit 1 ++int styleable ActionBar_backgroundStacked 2 ++int styleable ActionBar_contentInsetEnd 3 ++int styleable ActionBar_contentInsetEndWithActions 4 ++int styleable ActionBar_contentInsetLeft 5 ++int styleable ActionBar_contentInsetRight 6 ++int styleable ActionBar_contentInsetStart 7 ++int styleable ActionBar_contentInsetStartWithNavigation 8 ++int styleable ActionBar_customNavigationLayout 9 ++int styleable ActionBar_displayOptions 10 ++int styleable ActionBar_divider 11 ++int styleable ActionBar_elevation 12 ++int styleable ActionBar_height 13 ++int styleable ActionBar_hideOnContentScroll 14 ++int styleable ActionBar_homeAsUpIndicator 15 ++int styleable ActionBar_homeLayout 16 ++int styleable ActionBar_icon 17 ++int styleable ActionBar_indeterminateProgressStyle 18 ++int styleable ActionBar_itemPadding 19 ++int styleable ActionBar_logo 20 ++int styleable ActionBar_navigationMode 21 ++int styleable ActionBar_popupTheme 22 ++int styleable ActionBar_progressBarPadding 23 ++int styleable ActionBar_progressBarStyle 24 ++int styleable ActionBar_subtitle 25 ++int styleable ActionBar_subtitleTextStyle 26 ++int styleable ActionBar_title 27 ++int styleable ActionBar_titleTextStyle 28 ++int[] styleable ActionBarLayout { 0x10100b3 } ++int styleable ActionBarLayout_android_layout_gravity 0 ++int[] styleable ActionMenuItemView { 0x101013f } ++int styleable ActionMenuItemView_android_minWidth 0 ++int[] styleable ActionMenuView { } ++int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable ActionMode_background 0 ++int styleable ActionMode_backgroundSplit 1 ++int styleable ActionMode_closeItemLayout 2 ++int styleable ActionMode_height 3 ++int styleable ActionMode_subtitleTextStyle 4 ++int styleable ActionMode_titleTextStyle 5 ++int[] styleable ActivityChooserView { 0x0, 0x0 } ++int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 ++int styleable ActivityChooserView_initialActivityCount 1 ++int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AlertDialog_android_layout 0 ++int styleable AlertDialog_buttonIconDimen 1 ++int styleable AlertDialog_buttonPanelSideLayout 2 ++int styleable AlertDialog_listItemLayout 3 ++int styleable AlertDialog_listLayout 4 ++int styleable AlertDialog_multiChoiceItemLayout 5 ++int styleable AlertDialog_showTitle 6 ++int styleable AlertDialog_singleChoiceItemLayout 7 ++int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } ++int styleable AnimatedStateListDrawableCompat_android_constantSize 0 ++int styleable AnimatedStateListDrawableCompat_android_dither 1 ++int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 ++int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 ++int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 ++int styleable AnimatedStateListDrawableCompat_android_visible 5 ++int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } ++int styleable AnimatedStateListDrawableItem_android_drawable 0 ++int styleable AnimatedStateListDrawableItem_android_id 1 ++int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } ++int styleable AnimatedStateListDrawableTransition_android_drawable 0 ++int styleable AnimatedStateListDrawableTransition_android_fromId 1 ++int styleable AnimatedStateListDrawableTransition_android_reversible 2 ++int styleable AnimatedStateListDrawableTransition_android_toId 3 ++int[] styleable AppCompatEmojiHelper { } ++int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } ++int styleable AppCompatImageView_android_src 0 ++int styleable AppCompatImageView_srcCompat 1 ++int styleable AppCompatImageView_tint 2 ++int styleable AppCompatImageView_tintMode 3 ++int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } ++int styleable AppCompatSeekBar_android_thumb 0 ++int styleable AppCompatSeekBar_tickMark 1 ++int styleable AppCompatSeekBar_tickMarkTint 2 ++int styleable AppCompatSeekBar_tickMarkTintMode 3 ++int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } ++int styleable AppCompatTextHelper_android_drawableBottom 0 ++int styleable AppCompatTextHelper_android_drawableEnd 1 ++int styleable AppCompatTextHelper_android_drawableLeft 2 ++int styleable AppCompatTextHelper_android_drawableRight 3 ++int styleable AppCompatTextHelper_android_drawableStart 4 ++int styleable AppCompatTextHelper_android_drawableTop 5 ++int styleable AppCompatTextHelper_android_textAppearance 6 ++int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AppCompatTextView_android_textAppearance 0 ++int styleable AppCompatTextView_autoSizeMaxTextSize 1 ++int styleable AppCompatTextView_autoSizeMinTextSize 2 ++int styleable AppCompatTextView_autoSizePresetSizes 3 ++int styleable AppCompatTextView_autoSizeStepGranularity 4 ++int styleable AppCompatTextView_autoSizeTextType 5 ++int styleable AppCompatTextView_drawableBottomCompat 6 ++int styleable AppCompatTextView_drawableEndCompat 7 ++int styleable AppCompatTextView_drawableLeftCompat 8 ++int styleable AppCompatTextView_drawableRightCompat 9 ++int styleable AppCompatTextView_drawableStartCompat 10 ++int styleable AppCompatTextView_drawableTint 11 ++int styleable AppCompatTextView_drawableTintMode 12 ++int styleable AppCompatTextView_drawableTopCompat 13 ++int styleable AppCompatTextView_emojiCompatEnabled 14 ++int styleable AppCompatTextView_firstBaselineToTopHeight 15 ++int styleable AppCompatTextView_fontFamily 16 ++int styleable AppCompatTextView_fontVariationSettings 17 ++int styleable AppCompatTextView_lastBaselineToBottomHeight 18 ++int styleable AppCompatTextView_lineHeight 19 ++int styleable AppCompatTextView_textAllCaps 20 ++int styleable AppCompatTextView_textLocale 21 ++int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AppCompatTheme_actionBarDivider 0 ++int styleable AppCompatTheme_actionBarItemBackground 1 ++int styleable AppCompatTheme_actionBarPopupTheme 2 ++int styleable AppCompatTheme_actionBarSize 3 ++int styleable AppCompatTheme_actionBarSplitStyle 4 ++int styleable AppCompatTheme_actionBarStyle 5 ++int styleable AppCompatTheme_actionBarTabBarStyle 6 ++int styleable AppCompatTheme_actionBarTabStyle 7 ++int styleable AppCompatTheme_actionBarTabTextStyle 8 ++int styleable AppCompatTheme_actionBarTheme 9 ++int styleable AppCompatTheme_actionBarWidgetTheme 10 ++int styleable AppCompatTheme_actionButtonStyle 11 ++int styleable AppCompatTheme_actionDropDownStyle 12 ++int styleable AppCompatTheme_actionMenuTextAppearance 13 ++int styleable AppCompatTheme_actionMenuTextColor 14 ++int styleable AppCompatTheme_actionModeBackground 15 ++int styleable AppCompatTheme_actionModeCloseButtonStyle 16 ++int styleable AppCompatTheme_actionModeCloseContentDescription 17 ++int styleable AppCompatTheme_actionModeCloseDrawable 18 ++int styleable AppCompatTheme_actionModeCopyDrawable 19 ++int styleable AppCompatTheme_actionModeCutDrawable 20 ++int styleable AppCompatTheme_actionModeFindDrawable 21 ++int styleable AppCompatTheme_actionModePasteDrawable 22 ++int styleable AppCompatTheme_actionModePopupWindowStyle 23 ++int styleable AppCompatTheme_actionModeSelectAllDrawable 24 ++int styleable AppCompatTheme_actionModeShareDrawable 25 ++int styleable AppCompatTheme_actionModeSplitBackground 26 ++int styleable AppCompatTheme_actionModeStyle 27 ++int styleable AppCompatTheme_actionModeTheme 28 ++int styleable AppCompatTheme_actionModeWebSearchDrawable 29 ++int styleable AppCompatTheme_actionOverflowButtonStyle 30 ++int styleable AppCompatTheme_actionOverflowMenuStyle 31 ++int styleable AppCompatTheme_activityChooserViewStyle 32 ++int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 ++int styleable AppCompatTheme_alertDialogCenterButtons 34 ++int styleable AppCompatTheme_alertDialogStyle 35 ++int styleable AppCompatTheme_alertDialogTheme 36 ++int styleable AppCompatTheme_android_windowAnimationStyle 37 ++int styleable AppCompatTheme_android_windowIsFloating 38 ++int styleable AppCompatTheme_autoCompleteTextViewStyle 39 ++int styleable AppCompatTheme_borderlessButtonStyle 40 ++int styleable AppCompatTheme_buttonBarButtonStyle 41 ++int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 ++int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 ++int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 ++int styleable AppCompatTheme_buttonBarStyle 45 ++int styleable AppCompatTheme_buttonStyle 46 ++int styleable AppCompatTheme_buttonStyleSmall 47 ++int styleable AppCompatTheme_checkboxStyle 48 ++int styleable AppCompatTheme_checkedTextViewStyle 49 ++int styleable AppCompatTheme_colorAccent 50 ++int styleable AppCompatTheme_colorBackgroundFloating 51 ++int styleable AppCompatTheme_colorButtonNormal 52 ++int styleable AppCompatTheme_colorControlActivated 53 ++int styleable AppCompatTheme_colorControlHighlight 54 ++int styleable AppCompatTheme_colorControlNormal 55 ++int styleable AppCompatTheme_colorError 56 ++int styleable AppCompatTheme_colorPrimary 57 ++int styleable AppCompatTheme_colorPrimaryDark 58 ++int styleable AppCompatTheme_colorSwitchThumbNormal 59 ++int styleable AppCompatTheme_controlBackground 60 ++int styleable AppCompatTheme_dialogCornerRadius 61 ++int styleable AppCompatTheme_dialogPreferredPadding 62 ++int styleable AppCompatTheme_dialogTheme 63 ++int styleable AppCompatTheme_dividerHorizontal 64 ++int styleable AppCompatTheme_dividerVertical 65 ++int styleable AppCompatTheme_dropDownListViewStyle 66 ++int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 ++int styleable AppCompatTheme_editTextBackground 68 ++int styleable AppCompatTheme_editTextColor 69 ++int styleable AppCompatTheme_editTextStyle 70 ++int styleable AppCompatTheme_homeAsUpIndicator 71 ++int styleable AppCompatTheme_imageButtonStyle 72 ++int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 ++int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 ++int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 ++int styleable AppCompatTheme_listDividerAlertDialog 76 ++int styleable AppCompatTheme_listMenuViewStyle 77 ++int styleable AppCompatTheme_listPopupWindowStyle 78 ++int styleable AppCompatTheme_listPreferredItemHeight 79 ++int styleable AppCompatTheme_listPreferredItemHeightLarge 80 ++int styleable AppCompatTheme_listPreferredItemHeightSmall 81 ++int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 ++int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 ++int styleable AppCompatTheme_listPreferredItemPaddingRight 84 ++int styleable AppCompatTheme_listPreferredItemPaddingStart 85 ++int styleable AppCompatTheme_panelBackground 86 ++int styleable AppCompatTheme_panelMenuListTheme 87 ++int styleable AppCompatTheme_panelMenuListWidth 88 ++int styleable AppCompatTheme_popupMenuStyle 89 ++int styleable AppCompatTheme_popupWindowStyle 90 ++int styleable AppCompatTheme_radioButtonStyle 91 ++int styleable AppCompatTheme_ratingBarStyle 92 ++int styleable AppCompatTheme_ratingBarStyleIndicator 93 ++int styleable AppCompatTheme_ratingBarStyleSmall 94 ++int styleable AppCompatTheme_searchViewStyle 95 ++int styleable AppCompatTheme_seekBarStyle 96 ++int styleable AppCompatTheme_selectableItemBackground 97 ++int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 ++int styleable AppCompatTheme_spinnerDropDownItemStyle 99 ++int styleable AppCompatTheme_spinnerStyle 100 ++int styleable AppCompatTheme_switchStyle 101 ++int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 ++int styleable AppCompatTheme_textAppearanceListItem 103 ++int styleable AppCompatTheme_textAppearanceListItemSecondary 104 ++int styleable AppCompatTheme_textAppearanceListItemSmall 105 ++int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 ++int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 ++int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 ++int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 ++int styleable AppCompatTheme_textColorAlertDialogListItem 110 ++int styleable AppCompatTheme_textColorSearchUrl 111 ++int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 ++int styleable AppCompatTheme_toolbarStyle 113 ++int styleable AppCompatTheme_tooltipForegroundColor 114 ++int styleable AppCompatTheme_tooltipFrameBackground 115 ++int styleable AppCompatTheme_viewInflaterClass 116 ++int styleable AppCompatTheme_windowActionBar 117 ++int styleable AppCompatTheme_windowActionBarOverlay 118 ++int styleable AppCompatTheme_windowActionModeOverlay 119 ++int styleable AppCompatTheme_windowFixedHeightMajor 120 ++int styleable AppCompatTheme_windowFixedHeightMinor 121 ++int styleable AppCompatTheme_windowFixedWidthMajor 122 ++int styleable AppCompatTheme_windowFixedWidthMinor 123 ++int styleable AppCompatTheme_windowMinWidthMajor 124 ++int styleable AppCompatTheme_windowMinWidthMinor 125 ++int styleable AppCompatTheme_windowNoTitle 126 ++int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 ++int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 ++int[] styleable ButtonBarLayout { 0x0 } ++int styleable ButtonBarLayout_allowStacking 0 ++int[] styleable Capability { 0x0, 0x0 } ++int styleable Capability_queryPatterns 0 ++int styleable Capability_shortcutMatchRequired 1 ++int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } ++int styleable CheckedTextView_android_checkMark 0 ++int styleable CheckedTextView_checkMarkCompat 1 ++int styleable CheckedTextView_checkMarkTint 2 ++int styleable CheckedTextView_checkMarkTintMode 3 ++int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } ++int styleable ColorStateListItem_alpha 0 ++int styleable ColorStateListItem_android_alpha 1 ++int styleable ColorStateListItem_android_color 2 ++int styleable ColorStateListItem_android_lStar 3 ++int styleable ColorStateListItem_lStar 4 ++int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } ++int styleable CompoundButton_android_button 0 ++int styleable CompoundButton_buttonCompat 1 ++int styleable CompoundButton_buttonTint 2 ++int styleable CompoundButton_buttonTintMode 3 ++int[] styleable CoordinatorLayout { 0x0, 0x0 } ++int styleable CoordinatorLayout_keylines 0 ++int styleable CoordinatorLayout_statusBarBackground 1 ++int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable CoordinatorLayout_Layout_android_layout_gravity 0 ++int styleable CoordinatorLayout_Layout_layout_anchor 1 ++int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 ++int styleable CoordinatorLayout_Layout_layout_behavior 3 ++int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 ++int styleable CoordinatorLayout_Layout_layout_insetEdge 5 ++int styleable CoordinatorLayout_Layout_layout_keyline 6 ++int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable DrawerArrowToggle_arrowHeadLength 0 ++int styleable DrawerArrowToggle_arrowShaftLength 1 ++int styleable DrawerArrowToggle_barLength 2 ++int styleable DrawerArrowToggle_color 3 ++int styleable DrawerArrowToggle_drawableSize 4 ++int styleable DrawerArrowToggle_gapBetweenBars 5 ++int styleable DrawerArrowToggle_spinBars 6 ++int styleable DrawerArrowToggle_thickness 7 ++int[] styleable DrawerLayout { 0x0 } ++int styleable DrawerLayout_elevation 0 ++int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable FontFamily_fontProviderAuthority 0 ++int styleable FontFamily_fontProviderCerts 1 ++int styleable FontFamily_fontProviderFetchStrategy 2 ++int styleable FontFamily_fontProviderFetchTimeout 3 ++int styleable FontFamily_fontProviderPackage 4 ++int styleable FontFamily_fontProviderQuery 5 ++int styleable FontFamily_fontProviderSystemFontFamily 6 ++int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable FontFamilyFont_android_font 0 ++int styleable FontFamilyFont_android_fontStyle 1 ++int styleable FontFamilyFont_android_fontVariationSettings 2 ++int styleable FontFamilyFont_android_fontWeight 3 ++int styleable FontFamilyFont_android_ttcIndex 4 ++int styleable FontFamilyFont_font 5 ++int styleable FontFamilyFont_fontStyle 6 ++int styleable FontFamilyFont_fontVariationSettings 7 ++int styleable FontFamilyFont_fontWeight 8 ++int styleable FontFamilyFont_ttcIndex 9 ++int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } ++int styleable Fragment_android_id 0 ++int styleable Fragment_android_name 1 ++int styleable Fragment_android_tag 2 ++int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } ++int styleable FragmentContainerView_android_name 0 ++int styleable FragmentContainerView_android_tag 1 ++int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable GenericDraweeHierarchy_actualImageScaleType 0 ++int styleable GenericDraweeHierarchy_backgroundImage 1 ++int styleable GenericDraweeHierarchy_fadeDuration 2 ++int styleable GenericDraweeHierarchy_failureImage 3 ++int styleable GenericDraweeHierarchy_failureImageScaleType 4 ++int styleable GenericDraweeHierarchy_overlayImage 5 ++int styleable GenericDraweeHierarchy_placeholderImage 6 ++int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 ++int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 ++int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 ++int styleable GenericDraweeHierarchy_progressBarImage 10 ++int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 ++int styleable GenericDraweeHierarchy_retryImage 12 ++int styleable GenericDraweeHierarchy_retryImageScaleType 13 ++int styleable GenericDraweeHierarchy_roundAsCircle 14 ++int styleable GenericDraweeHierarchy_roundBottomEnd 15 ++int styleable GenericDraweeHierarchy_roundBottomLeft 16 ++int styleable GenericDraweeHierarchy_roundBottomRight 17 ++int styleable GenericDraweeHierarchy_roundBottomStart 18 ++int styleable GenericDraweeHierarchy_roundTopEnd 19 ++int styleable GenericDraweeHierarchy_roundTopLeft 20 ++int styleable GenericDraweeHierarchy_roundTopRight 21 ++int styleable GenericDraweeHierarchy_roundTopStart 22 ++int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 ++int styleable GenericDraweeHierarchy_roundedCornerRadius 24 ++int styleable GenericDraweeHierarchy_roundingBorderColor 25 ++int styleable GenericDraweeHierarchy_roundingBorderPadding 26 ++int styleable GenericDraweeHierarchy_roundingBorderWidth 27 ++int styleable GenericDraweeHierarchy_viewAspectRatio 28 ++int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } ++int styleable GradientColor_android_centerColor 0 ++int styleable GradientColor_android_centerX 1 ++int styleable GradientColor_android_centerY 2 ++int styleable GradientColor_android_endColor 3 ++int styleable GradientColor_android_endX 4 ++int styleable GradientColor_android_endY 5 ++int styleable GradientColor_android_gradientRadius 6 ++int styleable GradientColor_android_startColor 7 ++int styleable GradientColor_android_startX 8 ++int styleable GradientColor_android_startY 9 ++int styleable GradientColor_android_tileMode 10 ++int styleable GradientColor_android_type 11 ++int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } ++int styleable GradientColorItem_android_color 0 ++int styleable GradientColorItem_android_offset 1 ++int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } ++int styleable LinearLayoutCompat_android_baselineAligned 0 ++int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 ++int styleable LinearLayoutCompat_android_gravity 2 ++int styleable LinearLayoutCompat_android_orientation 3 ++int styleable LinearLayoutCompat_android_weightSum 4 ++int styleable LinearLayoutCompat_divider 5 ++int styleable LinearLayoutCompat_dividerPadding 6 ++int styleable LinearLayoutCompat_measureWithLargestChild 7 ++int styleable LinearLayoutCompat_showDividers 8 ++int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } ++int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 ++int styleable LinearLayoutCompat_Layout_android_layout_height 1 ++int styleable LinearLayoutCompat_Layout_android_layout_weight 2 ++int styleable LinearLayoutCompat_Layout_android_layout_width 3 ++int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } ++int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 ++int styleable ListPopupWindow_android_dropDownVerticalOffset 1 ++int[] styleable LoadingImageView { 0x0, 0x0, 0x0 } ++int styleable LoadingImageView_circleCrop 0 ++int styleable LoadingImageView_imageAspectRatio 1 ++int styleable LoadingImageView_imageAspectRatioAdjust 2 ++int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } ++int styleable MenuGroup_android_checkableBehavior 0 ++int styleable MenuGroup_android_enabled 1 ++int styleable MenuGroup_android_id 2 ++int styleable MenuGroup_android_menuCategory 3 ++int styleable MenuGroup_android_orderInCategory 4 ++int styleable MenuGroup_android_visible 5 ++int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable MenuItem_actionLayout 0 ++int styleable MenuItem_actionProviderClass 1 ++int styleable MenuItem_actionViewClass 2 ++int styleable MenuItem_alphabeticModifiers 3 ++int styleable MenuItem_android_alphabeticShortcut 4 ++int styleable MenuItem_android_checkable 5 ++int styleable MenuItem_android_checked 6 ++int styleable MenuItem_android_enabled 7 ++int styleable MenuItem_android_icon 8 ++int styleable MenuItem_android_id 9 ++int styleable MenuItem_android_menuCategory 10 ++int styleable MenuItem_android_numericShortcut 11 ++int styleable MenuItem_android_onClick 12 ++int styleable MenuItem_android_orderInCategory 13 ++int styleable MenuItem_android_title 14 ++int styleable MenuItem_android_titleCondensed 15 ++int styleable MenuItem_android_visible 16 ++int styleable MenuItem_contentDescription 17 ++int styleable MenuItem_iconTint 18 ++int styleable MenuItem_iconTintMode 19 ++int styleable MenuItem_numericModifiers 20 ++int styleable MenuItem_showAsAction 21 ++int styleable MenuItem_tooltipText 22 ++int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } ++int styleable MenuView_android_headerBackground 0 ++int styleable MenuView_android_horizontalDivider 1 ++int styleable MenuView_android_itemBackground 2 ++int styleable MenuView_android_itemIconDisabledAlpha 3 ++int styleable MenuView_android_itemTextAppearance 4 ++int styleable MenuView_android_verticalDivider 5 ++int styleable MenuView_android_windowAnimationStyle 6 ++int styleable MenuView_preserveIconSpacing 7 ++int styleable MenuView_subMenuArrow 8 ++int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } ++int styleable PopupWindow_android_popupAnimationStyle 0 ++int styleable PopupWindow_android_popupBackground 1 ++int styleable PopupWindow_overlapAnchor 2 ++int[] styleable PopupWindowBackgroundState { 0x0 } ++int styleable PopupWindowBackgroundState_state_above_anchor 0 ++int[] styleable RecycleListView { 0x0, 0x0 } ++int styleable RecycleListView_paddingBottomNoButtons 0 ++int styleable RecycleListView_paddingTopNoTitle 1 ++int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SearchView_android_focusable 0 ++int styleable SearchView_android_imeOptions 1 ++int styleable SearchView_android_inputType 2 ++int styleable SearchView_android_maxWidth 3 ++int styleable SearchView_closeIcon 4 ++int styleable SearchView_commitIcon 5 ++int styleable SearchView_defaultQueryHint 6 ++int styleable SearchView_goIcon 7 ++int styleable SearchView_iconifiedByDefault 8 ++int styleable SearchView_layout 9 ++int styleable SearchView_queryBackground 10 ++int styleable SearchView_queryHint 11 ++int styleable SearchView_searchHintIcon 12 ++int styleable SearchView_searchIcon 13 ++int styleable SearchView_submitBackground 14 ++int styleable SearchView_suggestionRowLayout 15 ++int styleable SearchView_voiceIcon 16 ++int[] styleable SignInButton { 0x0, 0x0, 0x0 } ++int styleable SignInButton_buttonSize 0 ++int styleable SignInButton_colorScheme 1 ++int styleable SignInButton_scopeUris 2 ++int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SimpleDraweeView_actualImageResource 0 ++int styleable SimpleDraweeView_actualImageUri 1 ++int styleable SimpleDraweeView_backgroundImage 2 ++int styleable SimpleDraweeView_fadeDuration 3 ++int styleable SimpleDraweeView_failureImage 4 ++int styleable SimpleDraweeView_failureImageScaleType 5 ++int styleable SimpleDraweeView_overlayImage 6 ++int styleable SimpleDraweeView_placeholderImage 7 ++int styleable SimpleDraweeView_placeholderImageScaleType 8 ++int styleable SimpleDraweeView_pressedStateOverlayImage 9 ++int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 ++int styleable SimpleDraweeView_progressBarImage 11 ++int styleable SimpleDraweeView_progressBarImageScaleType 12 ++int styleable SimpleDraweeView_retryImage 13 ++int styleable SimpleDraweeView_retryImageScaleType 14 ++int styleable SimpleDraweeView_roundAsCircle 15 ++int styleable SimpleDraweeView_roundBottomEnd 16 ++int styleable SimpleDraweeView_roundBottomLeft 17 ++int styleable SimpleDraweeView_roundBottomRight 18 ++int styleable SimpleDraweeView_roundBottomStart 19 ++int styleable SimpleDraweeView_roundTopEnd 20 ++int styleable SimpleDraweeView_roundTopLeft 21 ++int styleable SimpleDraweeView_roundTopRight 22 ++int styleable SimpleDraweeView_roundTopStart 23 ++int styleable SimpleDraweeView_roundWithOverlayColor 24 ++int styleable SimpleDraweeView_roundedCornerRadius 25 ++int styleable SimpleDraweeView_roundingBorderColor 26 ++int styleable SimpleDraweeView_roundingBorderPadding 27 ++int styleable SimpleDraweeView_roundingBorderWidth 28 ++int styleable SimpleDraweeView_viewAspectRatio 29 ++int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } ++int styleable Spinner_android_dropDownWidth 0 ++int styleable Spinner_android_entries 1 ++int styleable Spinner_android_popupBackground 2 ++int styleable Spinner_android_prompt 3 ++int styleable Spinner_popupTheme 4 ++int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } ++int styleable StateListDrawable_android_constantSize 0 ++int styleable StateListDrawable_android_dither 1 ++int styleable StateListDrawable_android_enterFadeDuration 2 ++int styleable StateListDrawable_android_exitFadeDuration 3 ++int styleable StateListDrawable_android_variablePadding 4 ++int styleable StateListDrawable_android_visible 5 ++int[] styleable StateListDrawableItem { 0x1010199 } ++int styleable StateListDrawableItem_android_drawable 0 ++int[] styleable SwipeRefreshLayout { 0x0 } ++int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 ++int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SwitchCompat_android_textOff 0 ++int styleable SwitchCompat_android_textOn 1 ++int styleable SwitchCompat_android_thumb 2 ++int styleable SwitchCompat_showText 3 ++int styleable SwitchCompat_splitTrack 4 ++int styleable SwitchCompat_switchMinWidth 5 ++int styleable SwitchCompat_switchPadding 6 ++int styleable SwitchCompat_switchTextAppearance 7 ++int styleable SwitchCompat_thumbTextPadding 8 ++int styleable SwitchCompat_thumbTint 9 ++int styleable SwitchCompat_thumbTintMode 10 ++int styleable SwitchCompat_track 11 ++int styleable SwitchCompat_trackTint 12 ++int styleable SwitchCompat_trackTintMode 13 ++int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } ++int styleable TextAppearance_android_fontFamily 0 ++int styleable TextAppearance_android_shadowColor 1 ++int styleable TextAppearance_android_shadowDx 2 ++int styleable TextAppearance_android_shadowDy 3 ++int styleable TextAppearance_android_shadowRadius 4 ++int styleable TextAppearance_android_textColor 5 ++int styleable TextAppearance_android_textColorHint 6 ++int styleable TextAppearance_android_textColorLink 7 ++int styleable TextAppearance_android_textFontWeight 8 ++int styleable TextAppearance_android_textSize 9 ++int styleable TextAppearance_android_textStyle 10 ++int styleable TextAppearance_android_typeface 11 ++int styleable TextAppearance_fontFamily 12 ++int styleable TextAppearance_fontVariationSettings 13 ++int styleable TextAppearance_textAllCaps 14 ++int styleable TextAppearance_textLocale 15 ++int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable Toolbar_android_gravity 0 ++int styleable Toolbar_android_minHeight 1 ++int styleable Toolbar_buttonGravity 2 ++int styleable Toolbar_collapseContentDescription 3 ++int styleable Toolbar_collapseIcon 4 ++int styleable Toolbar_contentInsetEnd 5 ++int styleable Toolbar_contentInsetEndWithActions 6 ++int styleable Toolbar_contentInsetLeft 7 ++int styleable Toolbar_contentInsetRight 8 ++int styleable Toolbar_contentInsetStart 9 ++int styleable Toolbar_contentInsetStartWithNavigation 10 ++int styleable Toolbar_logo 11 ++int styleable Toolbar_logoDescription 12 ++int styleable Toolbar_maxButtonHeight 13 ++int styleable Toolbar_menu 14 ++int styleable Toolbar_navigationContentDescription 15 ++int styleable Toolbar_navigationIcon 16 ++int styleable Toolbar_popupTheme 17 ++int styleable Toolbar_subtitle 18 ++int styleable Toolbar_subtitleTextAppearance 19 ++int styleable Toolbar_subtitleTextColor 20 ++int styleable Toolbar_title 21 ++int styleable Toolbar_titleMargin 22 ++int styleable Toolbar_titleMarginBottom 23 ++int styleable Toolbar_titleMarginEnd 24 ++int styleable Toolbar_titleMarginStart 25 ++int styleable Toolbar_titleMarginTop 26 ++int styleable Toolbar_titleMargins 27 ++int styleable Toolbar_titleTextAppearance 28 ++int styleable Toolbar_titleTextColor 29 ++int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } ++int styleable View_android_focusable 0 ++int styleable View_android_theme 1 ++int styleable View_paddingEnd 2 ++int styleable View_paddingStart 3 ++int styleable View_theme 4 ++int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } ++int styleable ViewBackgroundHelper_android_background 0 ++int styleable ViewBackgroundHelper_backgroundTint 1 ++int styleable ViewBackgroundHelper_backgroundTintMode 2 ++int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } ++int styleable ViewStubCompat_android_id 0 ++int styleable ViewStubCompat_android_inflatedId 1 ++int styleable ViewStubCompat_android_layout 2 ++int xml rn_dev_preferences 0x0 +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..98cadcb +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Tue Jun 24 13:45:24 CEST 2025 +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..391353c +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..ad1bbec +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..a738929 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..3efb395 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/BuildConfig.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/BuildConfig.class +new file mode 100644 +index 0000000..67969ad +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/BuildConfig.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/Constants.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/Constants.class +new file mode 100644 +index 0000000..a7b59e3 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/Constants.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/JavaScriptError.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/JavaScriptError.class +new file mode 100644 +index 0000000..2ad7dc6 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/JavaScriptError.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsInitProvider.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsInitProvider.class +new file mode 100644 +index 0000000..e074ea3 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsInitProvider.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule$1.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule$1.class +new file mode 100644 +index 0000000..5a98390 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule$1.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule.class +new file mode 100644 +index 0000000..5f9de55 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsNativeHelper.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsNativeHelper.class +new file mode 100644 +index 0000000..ce43851 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsNativeHelper.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsPackage.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsPackage.class +new file mode 100644 +index 0000000..d029104 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsPackage.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/UnhandledPromiseRejection.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/UnhandledPromiseRejection.class +new file mode 100644 +index 0000000..0a51ae4 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/UnhandledPromiseRejection.class differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..5916528 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,30 @@ ++1 ++2 ++4 ++5 ++6 ++7 ++7-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:4:3-14:17 ++8 ++9 ++10 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:6:5-8:31 ++11 android:name="firebase_crashlytics_collection_enabled" ++11-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:7:7-61 ++12 android:value="false" /> ++12-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:8:7-28 ++13 ++14 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:9:5-13:32 ++15 android:name="io.invertase.firebase.crashlytics.ReactNativeFirebaseCrashlyticsInitProvider" ++15-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:10:7-98 ++16 android:authorities="${applicationId}.reactnativefirebasecrashlyticsinitprovider" ++16-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:11:7-88 ++17 android:exported="false" ++17-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:12:7-31 ++18 android:initOrder="98" /> ++18-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:13:7-29 ++19 ++20 ++21 +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..4e827a6 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..fc9a220 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..0b0b6f1 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1,1596 @@ ++io.invertase.firebase.crashlytics ++anim abc_fade_in ++anim abc_fade_out ++anim abc_grow_fade_in_from_bottom ++anim abc_popup_enter ++anim abc_popup_exit ++anim abc_shrink_fade_out_from_bottom ++anim abc_slide_in_bottom ++anim abc_slide_in_top ++anim abc_slide_out_bottom ++anim abc_slide_out_top ++anim abc_tooltip_enter ++anim abc_tooltip_exit ++anim btn_checkbox_to_checked_box_inner_merged_animation ++anim btn_checkbox_to_checked_box_outer_merged_animation ++anim btn_checkbox_to_checked_icon_null_animation ++anim btn_checkbox_to_unchecked_box_inner_merged_animation ++anim btn_checkbox_to_unchecked_check_path_merged_animation ++anim btn_checkbox_to_unchecked_icon_null_animation ++anim btn_radio_to_off_mtrl_dot_group_animation ++anim btn_radio_to_off_mtrl_ring_outer_animation ++anim btn_radio_to_off_mtrl_ring_outer_path_animation ++anim btn_radio_to_on_mtrl_dot_group_animation ++anim btn_radio_to_on_mtrl_ring_outer_animation ++anim btn_radio_to_on_mtrl_ring_outer_path_animation ++anim catalyst_fade_in ++anim catalyst_fade_out ++anim catalyst_push_up_in ++anim catalyst_push_up_out ++anim catalyst_slide_down ++anim catalyst_slide_up ++anim fragment_fast_out_extra_slow_in ++animator fragment_close_enter ++animator fragment_close_exit ++animator fragment_fade_enter ++animator fragment_fade_exit ++animator fragment_open_enter ++animator fragment_open_exit ++attr actionBarDivider ++attr actionBarItemBackground ++attr actionBarPopupTheme ++attr actionBarSize ++attr actionBarSplitStyle ++attr actionBarStyle ++attr actionBarTabBarStyle ++attr actionBarTabStyle ++attr actionBarTabTextStyle ++attr actionBarTheme ++attr actionBarWidgetTheme ++attr actionButtonStyle ++attr actionDropDownStyle ++attr actionLayout ++attr actionMenuTextAppearance ++attr actionMenuTextColor ++attr actionModeBackground ++attr actionModeCloseButtonStyle ++attr actionModeCloseContentDescription ++attr actionModeCloseDrawable ++attr actionModeCopyDrawable ++attr actionModeCutDrawable ++attr actionModeFindDrawable ++attr actionModePasteDrawable ++attr actionModePopupWindowStyle ++attr actionModeSelectAllDrawable ++attr actionModeShareDrawable ++attr actionModeSplitBackground ++attr actionModeStyle ++attr actionModeTheme ++attr actionModeWebSearchDrawable ++attr actionOverflowButtonStyle ++attr actionOverflowMenuStyle ++attr actionProviderClass ++attr actionViewClass ++attr activityChooserViewStyle ++attr actualImageResource ++attr actualImageScaleType ++attr actualImageUri ++attr alertDialogButtonGroupStyle ++attr alertDialogCenterButtons ++attr alertDialogStyle ++attr alertDialogTheme ++attr allowStacking ++attr alpha ++attr alphabeticModifiers ++attr arrowHeadLength ++attr arrowShaftLength ++attr autoCompleteTextViewStyle ++attr autoSizeMaxTextSize ++attr autoSizeMinTextSize ++attr autoSizePresetSizes ++attr autoSizeStepGranularity ++attr autoSizeTextType ++attr autofillInlineSuggestionChip ++attr autofillInlineSuggestionEndIconStyle ++attr autofillInlineSuggestionStartIconStyle ++attr autofillInlineSuggestionSubtitle ++attr autofillInlineSuggestionTitle ++attr background ++attr backgroundImage ++attr backgroundSplit ++attr backgroundStacked ++attr backgroundTint ++attr backgroundTintMode ++attr barLength ++attr borderlessButtonStyle ++attr buttonBarButtonStyle ++attr buttonBarNegativeButtonStyle ++attr buttonBarNeutralButtonStyle ++attr buttonBarPositiveButtonStyle ++attr buttonBarStyle ++attr buttonCompat ++attr buttonGravity ++attr buttonIconDimen ++attr buttonPanelSideLayout ++attr buttonSize ++attr buttonStyle ++attr buttonStyleSmall ++attr buttonTint ++attr buttonTintMode ++attr checkMarkCompat ++attr checkMarkTint ++attr checkMarkTintMode ++attr checkboxStyle ++attr checkedTextViewStyle ++attr circleCrop ++attr closeIcon ++attr closeItemLayout ++attr collapseContentDescription ++attr collapseIcon ++attr color ++attr colorAccent ++attr colorBackgroundFloating ++attr colorButtonNormal ++attr colorControlActivated ++attr colorControlHighlight ++attr colorControlNormal ++attr colorError ++attr colorPrimary ++attr colorPrimaryDark ++attr colorScheme ++attr colorSwitchThumbNormal ++attr commitIcon ++attr contentDescription ++attr contentInsetEnd ++attr contentInsetEndWithActions ++attr contentInsetLeft ++attr contentInsetRight ++attr contentInsetStart ++attr contentInsetStartWithNavigation ++attr controlBackground ++attr coordinatorLayoutStyle ++attr customNavigationLayout ++attr defaultQueryHint ++attr dialogCornerRadius ++attr dialogPreferredPadding ++attr dialogTheme ++attr displayOptions ++attr divider ++attr dividerHorizontal ++attr dividerPadding ++attr dividerVertical ++attr drawableBottomCompat ++attr drawableEndCompat ++attr drawableLeftCompat ++attr drawableRightCompat ++attr drawableSize ++attr drawableStartCompat ++attr drawableTint ++attr drawableTintMode ++attr drawableTopCompat ++attr drawerArrowStyle ++attr drawerLayoutStyle ++attr dropDownListViewStyle ++attr dropdownListPreferredItemHeight ++attr editTextBackground ++attr editTextColor ++attr editTextStyle ++attr elevation ++attr emojiCompatEnabled ++attr expandActivityOverflowButtonDrawable ++attr fadeDuration ++attr failureImage ++attr failureImageScaleType ++attr firstBaselineToTopHeight ++attr font ++attr fontFamily ++attr fontProviderAuthority ++attr fontProviderCerts ++attr fontProviderFetchStrategy ++attr fontProviderFetchTimeout ++attr fontProviderPackage ++attr fontProviderQuery ++attr fontProviderSystemFontFamily ++attr fontStyle ++attr fontVariationSettings ++attr fontWeight ++attr gapBetweenBars ++attr goIcon ++attr height ++attr hideOnContentScroll ++attr homeAsUpIndicator ++attr homeLayout ++attr icon ++attr iconTint ++attr iconTintMode ++attr iconifiedByDefault ++attr imageAspectRatio ++attr imageAspectRatioAdjust ++attr imageButtonStyle ++attr indeterminateProgressStyle ++attr initialActivityCount ++attr isAutofillInlineSuggestionTheme ++attr isLightTheme ++attr itemPadding ++attr keylines ++attr lStar ++attr lastBaselineToBottomHeight ++attr layout ++attr layout_anchor ++attr layout_anchorGravity ++attr layout_behavior ++attr layout_dodgeInsetEdges ++attr layout_insetEdge ++attr layout_keyline ++attr lineHeight ++attr listChoiceBackgroundIndicator ++attr listChoiceIndicatorMultipleAnimated ++attr listChoiceIndicatorSingleAnimated ++attr listDividerAlertDialog ++attr listItemLayout ++attr listLayout ++attr listMenuViewStyle ++attr listPopupWindowStyle ++attr listPreferredItemHeight ++attr listPreferredItemHeightLarge ++attr listPreferredItemHeightSmall ++attr listPreferredItemPaddingEnd ++attr listPreferredItemPaddingLeft ++attr listPreferredItemPaddingRight ++attr listPreferredItemPaddingStart ++attr logo ++attr logoDescription ++attr maxButtonHeight ++attr measureWithLargestChild ++attr menu ++attr multiChoiceItemLayout ++attr navigationContentDescription ++attr navigationIcon ++attr navigationMode ++attr nestedScrollViewStyle ++attr numericModifiers ++attr overlapAnchor ++attr overlayImage ++attr paddingBottomNoButtons ++attr paddingEnd ++attr paddingStart ++attr paddingTopNoTitle ++attr panelBackground ++attr panelMenuListTheme ++attr panelMenuListWidth ++attr placeholderImage ++attr placeholderImageScaleType ++attr popupMenuStyle ++attr popupTheme ++attr popupWindowStyle ++attr preserveIconSpacing ++attr pressedStateOverlayImage ++attr progressBarAutoRotateInterval ++attr progressBarImage ++attr progressBarImageScaleType ++attr progressBarPadding ++attr progressBarStyle ++attr queryBackground ++attr queryHint ++attr queryPatterns ++attr radioButtonStyle ++attr ratingBarStyle ++attr ratingBarStyleIndicator ++attr ratingBarStyleSmall ++attr retryImage ++attr retryImageScaleType ++attr roundAsCircle ++attr roundBottomEnd ++attr roundBottomLeft ++attr roundBottomRight ++attr roundBottomStart ++attr roundTopEnd ++attr roundTopLeft ++attr roundTopRight ++attr roundTopStart ++attr roundWithOverlayColor ++attr roundedCornerRadius ++attr roundingBorderColor ++attr roundingBorderPadding ++attr roundingBorderWidth ++attr scopeUris ++attr searchHintIcon ++attr searchIcon ++attr searchViewStyle ++attr seekBarStyle ++attr selectableItemBackground ++attr selectableItemBackgroundBorderless ++attr shortcutMatchRequired ++attr showAsAction ++attr showDividers ++attr showText ++attr showTitle ++attr singleChoiceItemLayout ++attr spinBars ++attr spinnerDropDownItemStyle ++attr spinnerStyle ++attr splitTrack ++attr srcCompat ++attr state_above_anchor ++attr statusBarBackground ++attr subMenuArrow ++attr submitBackground ++attr subtitle ++attr subtitleTextAppearance ++attr subtitleTextColor ++attr subtitleTextStyle ++attr suggestionRowLayout ++attr swipeRefreshLayoutProgressSpinnerBackgroundColor ++attr switchMinWidth ++attr switchPadding ++attr switchStyle ++attr switchTextAppearance ++attr textAllCaps ++attr textAppearanceLargePopupMenu ++attr textAppearanceListItem ++attr textAppearanceListItemSecondary ++attr textAppearanceListItemSmall ++attr textAppearancePopupMenuHeader ++attr textAppearanceSearchResultSubtitle ++attr textAppearanceSearchResultTitle ++attr textAppearanceSmallPopupMenu ++attr textColorAlertDialogListItem ++attr textColorSearchUrl ++attr textLocale ++attr theme ++attr thickness ++attr thumbTextPadding ++attr thumbTint ++attr thumbTintMode ++attr tickMark ++attr tickMarkTint ++attr tickMarkTintMode ++attr tint ++attr tintMode ++attr title ++attr titleMargin ++attr titleMarginBottom ++attr titleMarginEnd ++attr titleMarginStart ++attr titleMarginTop ++attr titleMargins ++attr titleTextAppearance ++attr titleTextColor ++attr titleTextStyle ++attr toolbarNavigationButtonStyle ++attr toolbarStyle ++attr tooltipForegroundColor ++attr tooltipFrameBackground ++attr tooltipText ++attr track ++attr trackTint ++attr trackTintMode ++attr ttcIndex ++attr viewAspectRatio ++attr viewInflaterClass ++attr voiceIcon ++attr windowActionBar ++attr windowActionBarOverlay ++attr windowActionModeOverlay ++attr windowFixedHeightMajor ++attr windowFixedHeightMinor ++attr windowFixedWidthMajor ++attr windowFixedWidthMinor ++attr windowMinWidthMajor ++attr windowMinWidthMinor ++attr windowNoTitle ++bool abc_action_bar_embed_tabs ++bool abc_config_actionMenuItemAllCaps ++color abc_background_cache_hint_selector_material_dark ++color abc_background_cache_hint_selector_material_light ++color abc_btn_colored_borderless_text_material ++color abc_btn_colored_text_material ++color abc_color_highlight_material ++color abc_decor_view_status_guard ++color abc_decor_view_status_guard_light ++color abc_hint_foreground_material_dark ++color abc_hint_foreground_material_light ++color abc_primary_text_disable_only_material_dark ++color abc_primary_text_disable_only_material_light ++color abc_primary_text_material_dark ++color abc_primary_text_material_light ++color abc_search_url_text ++color abc_search_url_text_normal ++color abc_search_url_text_pressed ++color abc_search_url_text_selected ++color abc_secondary_text_material_dark ++color abc_secondary_text_material_light ++color abc_tint_btn_checkable ++color abc_tint_default ++color abc_tint_edittext ++color abc_tint_seek_thumb ++color abc_tint_spinner ++color abc_tint_switch_track ++color accent_material_dark ++color accent_material_light ++color androidx_core_ripple_material_light ++color androidx_core_secondary_text_default_material_light ++color background_floating_material_dark ++color background_floating_material_light ++color background_material_dark ++color background_material_light ++color bright_foreground_disabled_material_dark ++color bright_foreground_disabled_material_light ++color bright_foreground_inverse_material_dark ++color bright_foreground_inverse_material_light ++color bright_foreground_material_dark ++color bright_foreground_material_light ++color button_material_dark ++color button_material_light ++color call_notification_answer_color ++color call_notification_decline_color ++color catalyst_logbox_background ++color catalyst_redbox_background ++color common_google_signin_btn_text_dark ++color common_google_signin_btn_text_dark_default ++color common_google_signin_btn_text_dark_disabled ++color common_google_signin_btn_text_dark_focused ++color common_google_signin_btn_text_dark_pressed ++color common_google_signin_btn_text_light ++color common_google_signin_btn_text_light_default ++color common_google_signin_btn_text_light_disabled ++color common_google_signin_btn_text_light_focused ++color common_google_signin_btn_text_light_pressed ++color common_google_signin_btn_tint ++color dim_foreground_disabled_material_dark ++color dim_foreground_disabled_material_light ++color dim_foreground_material_dark ++color dim_foreground_material_light ++color error_color_material_dark ++color error_color_material_light ++color foreground_material_dark ++color foreground_material_light ++color highlighted_text_material_dark ++color highlighted_text_material_light ++color material_blue_grey_800 ++color material_blue_grey_900 ++color material_blue_grey_950 ++color material_deep_teal_200 ++color material_deep_teal_500 ++color material_grey_100 ++color material_grey_300 ++color material_grey_50 ++color material_grey_600 ++color material_grey_800 ++color material_grey_850 ++color material_grey_900 ++color notification_action_color_filter ++color notification_icon_bg_color ++color notification_material_background_media_default_color ++color primary_dark_material_dark ++color primary_dark_material_light ++color primary_material_dark ++color primary_material_light ++color primary_text_default_material_dark ++color primary_text_default_material_light ++color primary_text_disabled_material_dark ++color primary_text_disabled_material_light ++color ripple_material_dark ++color ripple_material_light ++color secondary_text_default_material_dark ++color secondary_text_default_material_light ++color secondary_text_disabled_material_dark ++color secondary_text_disabled_material_light ++color switch_thumb_disabled_material_dark ++color switch_thumb_disabled_material_light ++color switch_thumb_material_dark ++color switch_thumb_material_light ++color switch_thumb_normal_material_dark ++color switch_thumb_normal_material_light ++color tooltip_background_dark ++color tooltip_background_light ++dimen abc_action_bar_content_inset_material ++dimen abc_action_bar_content_inset_with_nav ++dimen abc_action_bar_default_height_material ++dimen abc_action_bar_default_padding_end_material ++dimen abc_action_bar_default_padding_start_material ++dimen abc_action_bar_elevation_material ++dimen abc_action_bar_icon_vertical_padding_material ++dimen abc_action_bar_overflow_padding_end_material ++dimen abc_action_bar_overflow_padding_start_material ++dimen abc_action_bar_stacked_max_height ++dimen abc_action_bar_stacked_tab_max_width ++dimen abc_action_bar_subtitle_bottom_margin_material ++dimen abc_action_bar_subtitle_top_margin_material ++dimen abc_action_button_min_height_material ++dimen abc_action_button_min_width_material ++dimen abc_action_button_min_width_overflow_material ++dimen abc_alert_dialog_button_bar_height ++dimen abc_alert_dialog_button_dimen ++dimen abc_button_inset_horizontal_material ++dimen abc_button_inset_vertical_material ++dimen abc_button_padding_horizontal_material ++dimen abc_button_padding_vertical_material ++dimen abc_cascading_menus_min_smallest_width ++dimen abc_config_prefDialogWidth ++dimen abc_control_corner_material ++dimen abc_control_inset_material ++dimen abc_control_padding_material ++dimen abc_dialog_corner_radius_material ++dimen abc_dialog_fixed_height_major ++dimen abc_dialog_fixed_height_minor ++dimen abc_dialog_fixed_width_major ++dimen abc_dialog_fixed_width_minor ++dimen abc_dialog_list_padding_bottom_no_buttons ++dimen abc_dialog_list_padding_top_no_title ++dimen abc_dialog_min_width_major ++dimen abc_dialog_min_width_minor ++dimen abc_dialog_padding_material ++dimen abc_dialog_padding_top_material ++dimen abc_dialog_title_divider_material ++dimen abc_disabled_alpha_material_dark ++dimen abc_disabled_alpha_material_light ++dimen abc_dropdownitem_icon_width ++dimen abc_dropdownitem_text_padding_left ++dimen abc_dropdownitem_text_padding_right ++dimen abc_edit_text_inset_bottom_material ++dimen abc_edit_text_inset_horizontal_material ++dimen abc_edit_text_inset_top_material ++dimen abc_floating_window_z ++dimen abc_list_item_height_large_material ++dimen abc_list_item_height_material ++dimen abc_list_item_height_small_material ++dimen abc_list_item_padding_horizontal_material ++dimen abc_panel_menu_list_width ++dimen abc_progress_bar_height_material ++dimen abc_search_view_preferred_height ++dimen abc_search_view_preferred_width ++dimen abc_seekbar_track_background_height_material ++dimen abc_seekbar_track_progress_height_material ++dimen abc_select_dialog_padding_start_material ++dimen abc_star_big ++dimen abc_star_medium ++dimen abc_star_small ++dimen abc_switch_padding ++dimen abc_text_size_body_1_material ++dimen abc_text_size_body_2_material ++dimen abc_text_size_button_material ++dimen abc_text_size_caption_material ++dimen abc_text_size_display_1_material ++dimen abc_text_size_display_2_material ++dimen abc_text_size_display_3_material ++dimen abc_text_size_display_4_material ++dimen abc_text_size_headline_material ++dimen abc_text_size_large_material ++dimen abc_text_size_medium_material ++dimen abc_text_size_menu_header_material ++dimen abc_text_size_menu_material ++dimen abc_text_size_small_material ++dimen abc_text_size_subhead_material ++dimen abc_text_size_subtitle_material_toolbar ++dimen abc_text_size_title_material ++dimen abc_text_size_title_material_toolbar ++dimen autofill_inline_suggestion_icon_size ++dimen compat_button_inset_horizontal_material ++dimen compat_button_inset_vertical_material ++dimen compat_button_padding_horizontal_material ++dimen compat_button_padding_vertical_material ++dimen compat_control_corner_material ++dimen compat_notification_large_icon_max_height ++dimen compat_notification_large_icon_max_width ++dimen def_drawer_elevation ++dimen disabled_alpha_material_dark ++dimen disabled_alpha_material_light ++dimen highlight_alpha_material_colored ++dimen highlight_alpha_material_dark ++dimen highlight_alpha_material_light ++dimen hint_alpha_material_dark ++dimen hint_alpha_material_light ++dimen hint_pressed_alpha_material_dark ++dimen hint_pressed_alpha_material_light ++dimen notification_action_icon_size ++dimen notification_action_text_size ++dimen notification_big_circle_margin ++dimen notification_content_margin_start ++dimen notification_large_icon_height ++dimen notification_large_icon_width ++dimen notification_main_column_padding_top ++dimen notification_media_narrow_margin ++dimen notification_right_icon_size ++dimen notification_right_side_padding_top ++dimen notification_small_icon_background_padding ++dimen notification_small_icon_size_as_large ++dimen notification_subtext_size ++dimen notification_top_pad ++dimen notification_top_pad_large_text ++dimen tooltip_corner_radius ++dimen tooltip_horizontal_padding ++dimen tooltip_margin ++dimen tooltip_precise_anchor_extra_offset ++dimen tooltip_precise_anchor_threshold ++dimen tooltip_vertical_padding ++dimen tooltip_y_offset_non_touch ++dimen tooltip_y_offset_touch ++drawable abc_ab_share_pack_mtrl_alpha ++drawable abc_action_bar_item_background_material ++drawable abc_btn_borderless_material ++drawable abc_btn_check_material ++drawable abc_btn_check_material_anim ++drawable abc_btn_check_to_on_mtrl_000 ++drawable abc_btn_check_to_on_mtrl_015 ++drawable abc_btn_colored_material ++drawable abc_btn_default_mtrl_shape ++drawable abc_btn_radio_material ++drawable abc_btn_radio_material_anim ++drawable abc_btn_radio_to_on_mtrl_000 ++drawable abc_btn_radio_to_on_mtrl_015 ++drawable abc_btn_switch_to_on_mtrl_00001 ++drawable abc_btn_switch_to_on_mtrl_00012 ++drawable abc_cab_background_internal_bg ++drawable abc_cab_background_top_material ++drawable abc_cab_background_top_mtrl_alpha ++drawable abc_control_background_material ++drawable abc_dialog_material_background ++drawable abc_edit_text_material ++drawable abc_ic_ab_back_material ++drawable abc_ic_arrow_drop_right_black_24dp ++drawable abc_ic_clear_material ++drawable abc_ic_commit_search_api_mtrl_alpha ++drawable abc_ic_go_search_api_material ++drawable abc_ic_menu_copy_mtrl_am_alpha ++drawable abc_ic_menu_cut_mtrl_alpha ++drawable abc_ic_menu_overflow_material ++drawable abc_ic_menu_paste_mtrl_am_alpha ++drawable abc_ic_menu_selectall_mtrl_alpha ++drawable abc_ic_menu_share_mtrl_alpha ++drawable abc_ic_search_api_material ++drawable abc_ic_voice_search_api_material ++drawable abc_item_background_holo_dark ++drawable abc_item_background_holo_light ++drawable abc_list_divider_material ++drawable abc_list_divider_mtrl_alpha ++drawable abc_list_focused_holo ++drawable abc_list_longpressed_holo ++drawable abc_list_pressed_holo_dark ++drawable abc_list_pressed_holo_light ++drawable abc_list_selector_background_transition_holo_dark ++drawable abc_list_selector_background_transition_holo_light ++drawable abc_list_selector_disabled_holo_dark ++drawable abc_list_selector_disabled_holo_light ++drawable abc_list_selector_holo_dark ++drawable abc_list_selector_holo_light ++drawable abc_menu_hardkey_panel_mtrl_mult ++drawable abc_popup_background_mtrl_mult ++drawable abc_ratingbar_indicator_material ++drawable abc_ratingbar_material ++drawable abc_ratingbar_small_material ++drawable abc_scrubber_control_off_mtrl_alpha ++drawable abc_scrubber_control_to_pressed_mtrl_000 ++drawable abc_scrubber_control_to_pressed_mtrl_005 ++drawable abc_scrubber_primary_mtrl_alpha ++drawable abc_scrubber_track_mtrl_alpha ++drawable abc_seekbar_thumb_material ++drawable abc_seekbar_tick_mark_material ++drawable abc_seekbar_track_material ++drawable abc_spinner_mtrl_am_alpha ++drawable abc_spinner_textfield_background_material ++drawable abc_star_black_48dp ++drawable abc_star_half_black_48dp ++drawable abc_switch_thumb_material ++drawable abc_switch_track_mtrl_alpha ++drawable abc_tab_indicator_material ++drawable abc_tab_indicator_mtrl_alpha ++drawable abc_text_cursor_material ++drawable abc_text_select_handle_left_mtrl ++drawable abc_text_select_handle_middle_mtrl ++drawable abc_text_select_handle_right_mtrl ++drawable abc_textfield_activated_mtrl_alpha ++drawable abc_textfield_default_mtrl_alpha ++drawable abc_textfield_search_activated_mtrl_alpha ++drawable abc_textfield_search_default_mtrl_alpha ++drawable abc_textfield_search_material ++drawable abc_vector_test ++drawable autofill_inline_suggestion_chip_background ++drawable btn_checkbox_checked_mtrl ++drawable btn_checkbox_checked_to_unchecked_mtrl_animation ++drawable btn_checkbox_unchecked_mtrl ++drawable btn_checkbox_unchecked_to_checked_mtrl_animation ++drawable btn_radio_off_mtrl ++drawable btn_radio_off_to_on_mtrl_animation ++drawable btn_radio_on_mtrl ++drawable btn_radio_on_to_off_mtrl_animation ++drawable common_full_open_on_phone ++drawable common_google_signin_btn_icon_dark ++drawable common_google_signin_btn_icon_dark_focused ++drawable common_google_signin_btn_icon_dark_normal ++drawable common_google_signin_btn_icon_dark_normal_background ++drawable common_google_signin_btn_icon_disabled ++drawable common_google_signin_btn_icon_light ++drawable common_google_signin_btn_icon_light_focused ++drawable common_google_signin_btn_icon_light_normal ++drawable common_google_signin_btn_icon_light_normal_background ++drawable common_google_signin_btn_text_dark ++drawable common_google_signin_btn_text_dark_focused ++drawable common_google_signin_btn_text_dark_normal ++drawable common_google_signin_btn_text_dark_normal_background ++drawable common_google_signin_btn_text_disabled ++drawable common_google_signin_btn_text_light ++drawable common_google_signin_btn_text_light_focused ++drawable common_google_signin_btn_text_light_normal ++drawable common_google_signin_btn_text_light_normal_background ++drawable googleg_disabled_color_18 ++drawable googleg_standard_color_18 ++drawable ic_call_answer ++drawable ic_call_answer_low ++drawable ic_call_answer_video ++drawable ic_call_answer_video_low ++drawable ic_call_decline ++drawable ic_call_decline_low ++drawable ic_resume ++drawable notification_action_background ++drawable notification_bg ++drawable notification_bg_low ++drawable notification_bg_low_normal ++drawable notification_bg_low_pressed ++drawable notification_bg_normal ++drawable notification_bg_normal_pressed ++drawable notification_icon_background ++drawable notification_oversize_large_icon_bg ++drawable notification_template_icon_bg ++drawable notification_template_icon_low_bg ++drawable notification_tile_bg ++drawable notify_panel_notification_icon_bg ++drawable paused_in_debugger_background ++drawable paused_in_debugger_dialog_background ++drawable redbox_top_border_background ++drawable ripple_effect ++drawable test_level_drawable ++drawable tooltip_frame_dark ++drawable tooltip_frame_light ++id accessibility_action_clickable_span ++id accessibility_actions ++id accessibility_collection ++id accessibility_collection_item ++id accessibility_custom_action_0 ++id accessibility_custom_action_1 ++id accessibility_custom_action_10 ++id accessibility_custom_action_11 ++id accessibility_custom_action_12 ++id accessibility_custom_action_13 ++id accessibility_custom_action_14 ++id accessibility_custom_action_15 ++id accessibility_custom_action_16 ++id accessibility_custom_action_17 ++id accessibility_custom_action_18 ++id accessibility_custom_action_19 ++id accessibility_custom_action_2 ++id accessibility_custom_action_20 ++id accessibility_custom_action_21 ++id accessibility_custom_action_22 ++id accessibility_custom_action_23 ++id accessibility_custom_action_24 ++id accessibility_custom_action_25 ++id accessibility_custom_action_26 ++id accessibility_custom_action_27 ++id accessibility_custom_action_28 ++id accessibility_custom_action_29 ++id accessibility_custom_action_3 ++id accessibility_custom_action_30 ++id accessibility_custom_action_31 ++id accessibility_custom_action_4 ++id accessibility_custom_action_5 ++id accessibility_custom_action_6 ++id accessibility_custom_action_7 ++id accessibility_custom_action_8 ++id accessibility_custom_action_9 ++id accessibility_hint ++id accessibility_label ++id accessibility_links ++id accessibility_role ++id accessibility_state ++id accessibility_state_expanded ++id accessibility_value ++id action0 ++id action_bar ++id action_bar_activity_content ++id action_bar_container ++id action_bar_root ++id action_bar_spinner ++id action_bar_subtitle ++id action_bar_title ++id action_container ++id action_context_bar ++id action_divider ++id action_image ++id action_menu_divider ++id action_menu_presenter ++id action_mode_bar ++id action_mode_bar_stub ++id action_mode_close_button ++id action_text ++id actions ++id activity_chooser_view_content ++id add ++id adjust_height ++id adjust_width ++id alertTitle ++id alert_title ++id all ++id async ++id auto ++id autofill_inline_suggestion_end_icon ++id autofill_inline_suggestion_start_icon ++id autofill_inline_suggestion_subtitle ++id autofill_inline_suggestion_title ++id blocking ++id bottom ++id button ++id buttonPanel ++id button_text ++id cancel_action ++id catalyst_redbox_title ++id center ++id centerCrop ++id centerInside ++id center_horizontal ++id center_vertical ++id checkbox ++id checked ++id chronometer ++id clip_horizontal ++id clip_vertical ++id content ++id contentPanel ++id custom ++id customPanel ++id dark ++id decor_content_parent ++id default_activity_button ++id dialog_button ++id edit_query ++id edit_text_id ++id end ++id end_padder ++id expand_activities_button ++id expanded_menu ++id fill ++id fill_horizontal ++id fill_vertical ++id filter ++id fitBottomStart ++id fitCenter ++id fitEnd ++id fitStart ++id fitXY ++id focusCrop ++id forever ++id fps_text ++id fragment_container_view_tag ++id group_divider ++id hide_ime_id ++id home ++id icon ++id icon_group ++id icon_only ++id image ++id info ++id invalidate_transform ++id italic ++id labelled_by ++id left ++id light ++id line1 ++id line3 ++id listMode ++id list_item ++id media_actions ++id media_controller_compat_view_tag ++id message ++id mix_blend_mode ++id multiply ++id none ++id normal ++id notification_background ++id notification_main_column ++id notification_main_column_container ++id off ++id on ++id parentPanel ++id pointer_events ++id progress_circular ++id progress_horizontal ++id radio ++id react_test_id ++id report_drawn ++id right ++id right_icon ++id right_side ++id rn_frame_file ++id rn_frame_method ++id rn_redbox_dismiss_button ++id rn_redbox_line_separator ++id rn_redbox_loading_indicator ++id rn_redbox_reload_button ++id rn_redbox_report_button ++id rn_redbox_report_label ++id rn_redbox_stack ++id role ++id screen ++id scrollIndicatorDown ++id scrollIndicatorUp ++id scrollView ++id search_badge ++id search_bar ++id search_button ++id search_close_btn ++id search_edit_frame ++id search_go_btn ++id search_mag_icon ++id search_plate ++id search_src_text ++id search_voice_btn ++id select_dialog_listview ++id shortcut ++id spacer ++id special_effects_controller_view_tag ++id split_action_bar ++id src_atop ++id src_in ++id src_over ++id standard ++id start ++id status_bar_latest_event_content ++id submenuarrow ++id submit_area ++id tabMode ++id tag_accessibility_actions ++id tag_accessibility_clickable_spans ++id tag_accessibility_heading ++id tag_accessibility_pane_title ++id tag_on_apply_window_listener ++id tag_on_receive_content_listener ++id tag_on_receive_content_mime_types ++id tag_screen_reader_focusable ++id tag_state_description ++id tag_transition_group ++id tag_unhandled_key_event_manager ++id tag_unhandled_key_listeners ++id tag_window_insets_animation_callback ++id text ++id text2 ++id textSpacerNoButtons ++id textSpacerNoTitle ++id time ++id title ++id titleDividerNoCustom ++id title_template ++id top ++id topPanel ++id transform ++id transform_origin ++id unchecked ++id uniform ++id up ++id use_hardware_layer ++id view_clipped ++id view_tag_instance_handle ++id view_tag_native_id ++id view_tree_lifecycle_owner ++id view_tree_on_back_pressed_dispatcher_owner ++id view_tree_saved_state_registry_owner ++id view_tree_view_model_store_owner ++id visible_removing_fragment_view_tag ++id wide ++id wrap_content ++integer abc_config_activityDefaultDur ++integer abc_config_activityShortDur ++integer cancel_button_image_alpha ++integer config_tooltipAnimTime ++integer google_play_services_version ++integer react_native_dev_server_port ++integer status_bar_notification_info_maxnum ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 ++interpolator btn_radio_to_off_mtrl_animation_interpolator_0 ++interpolator btn_radio_to_on_mtrl_animation_interpolator_0 ++interpolator fast_out_slow_in ++layout abc_action_bar_title_item ++layout abc_action_bar_up_container ++layout abc_action_menu_item_layout ++layout abc_action_menu_layout ++layout abc_action_mode_bar ++layout abc_action_mode_close_item_material ++layout abc_activity_chooser_view ++layout abc_activity_chooser_view_list_item ++layout abc_alert_dialog_button_bar_material ++layout abc_alert_dialog_material ++layout abc_alert_dialog_title_material ++layout abc_cascading_menu_item_layout ++layout abc_dialog_title_material ++layout abc_expanded_menu_layout ++layout abc_list_menu_item_checkbox ++layout abc_list_menu_item_icon ++layout abc_list_menu_item_layout ++layout abc_list_menu_item_radio ++layout abc_popup_menu_header_item_layout ++layout abc_popup_menu_item_layout ++layout abc_screen_content_include ++layout abc_screen_simple ++layout abc_screen_simple_overlay_action_mode ++layout abc_screen_toolbar ++layout abc_search_dropdown_item_icons_2line ++layout abc_search_view ++layout abc_select_dialog_material ++layout abc_tooltip ++layout alert_title_layout ++layout autofill_inline_suggestion ++layout custom_dialog ++layout dev_loading_view ++layout fps_view ++layout ime_base_split_test_activity ++layout ime_secondary_split_test_activity ++layout notification_action ++layout notification_action_tombstone ++layout notification_media_action ++layout notification_media_cancel_action ++layout notification_template_big_media ++layout notification_template_big_media_custom ++layout notification_template_big_media_narrow ++layout notification_template_big_media_narrow_custom ++layout notification_template_custom_big ++layout notification_template_icon_group ++layout notification_template_lines_media ++layout notification_template_media ++layout notification_template_media_custom ++layout notification_template_part_chronometer ++layout notification_template_part_time ++layout paused_in_debugger_view ++layout redbox_item_frame ++layout redbox_item_title ++layout redbox_view ++layout select_dialog_item_material ++layout select_dialog_multichoice_material ++layout select_dialog_singlechoice_material ++layout support_simple_spinner_dropdown_item ++string abc_action_bar_home_description ++string abc_action_bar_up_description ++string abc_action_menu_overflow_description ++string abc_action_mode_done ++string abc_activity_chooser_view_see_all ++string abc_activitychooserview_choose_application ++string abc_capital_off ++string abc_capital_on ++string abc_menu_alt_shortcut_label ++string abc_menu_ctrl_shortcut_label ++string abc_menu_delete_shortcut_label ++string abc_menu_enter_shortcut_label ++string abc_menu_function_shortcut_label ++string abc_menu_meta_shortcut_label ++string abc_menu_shift_shortcut_label ++string abc_menu_space_shortcut_label ++string abc_menu_sym_shortcut_label ++string abc_prepend_shortcut_label ++string abc_search_hint ++string abc_searchview_description_clear ++string abc_searchview_description_query ++string abc_searchview_description_search ++string abc_searchview_description_submit ++string abc_searchview_description_voice ++string abc_shareactionprovider_share_with ++string abc_shareactionprovider_share_with_application ++string abc_toolbar_collapse_description ++string alert_description ++string call_notification_answer_action ++string call_notification_answer_video_action ++string call_notification_decline_action ++string call_notification_hang_up_action ++string call_notification_incoming_text ++string call_notification_ongoing_text ++string call_notification_screening_text ++string catalyst_change_bundle_location ++string catalyst_copy_button ++string catalyst_debug_connecting ++string catalyst_debug_error ++string catalyst_debug_open ++string catalyst_debug_open_disabled ++string catalyst_dev_menu_header ++string catalyst_dev_menu_sub_header ++string catalyst_dismiss_button ++string catalyst_heap_capture ++string catalyst_hot_reloading ++string catalyst_hot_reloading_auto_disable ++string catalyst_hot_reloading_auto_enable ++string catalyst_hot_reloading_stop ++string catalyst_inspector_toggle ++string catalyst_loading_from_url ++string catalyst_open_debugger_error ++string catalyst_perf_monitor ++string catalyst_perf_monitor_stop ++string catalyst_reload ++string catalyst_reload_button ++string catalyst_reload_error ++string catalyst_report_button ++string catalyst_sample_profiler_toggle ++string catalyst_settings ++string catalyst_settings_title ++string combobox_description ++string common_google_play_services_enable_button ++string common_google_play_services_enable_text ++string common_google_play_services_enable_title ++string common_google_play_services_install_button ++string common_google_play_services_install_text ++string common_google_play_services_install_title ++string common_google_play_services_notification_channel_name ++string common_google_play_services_notification_ticker ++string common_google_play_services_unknown_issue ++string common_google_play_services_unsupported_text ++string common_google_play_services_update_button ++string common_google_play_services_update_text ++string common_google_play_services_update_title ++string common_google_play_services_updating_text ++string common_google_play_services_wear_update_text ++string common_open_on_phone ++string common_signin_button_text ++string common_signin_button_text_long ++string header_description ++string image_description ++string imagebutton_description ++string link_description ++string menu_description ++string menubar_description ++string menuitem_description ++string progressbar_description ++string radiogroup_description ++string rn_tab_description ++string scrollbar_description ++string search_menu_title ++string spinbutton_description ++string state_busy_description ++string state_collapsed_description ++string state_expanded_description ++string state_mixed_description ++string state_off_description ++string state_on_description ++string state_unselected_description ++string status_bar_notification_info_overflow ++string summary_description ++string tablist_description ++string timer_description ++string toolbar_description ++style AlertDialog_AppCompat ++style AlertDialog_AppCompat_Light ++style Animation_AppCompat_Dialog ++style Animation_AppCompat_DropDownUp ++style Animation_AppCompat_Tooltip ++style Animation_Catalyst_LogBox ++style Animation_Catalyst_RedBox ++style Base_AlertDialog_AppCompat ++style Base_AlertDialog_AppCompat_Light ++style Base_Animation_AppCompat_Dialog ++style Base_Animation_AppCompat_DropDownUp ++style Base_Animation_AppCompat_Tooltip ++style Base_DialogWindowTitleBackground_AppCompat ++style Base_DialogWindowTitle_AppCompat ++style Base_TextAppearance_AppCompat ++style Base_TextAppearance_AppCompat_Body1 ++style Base_TextAppearance_AppCompat_Body2 ++style Base_TextAppearance_AppCompat_Button ++style Base_TextAppearance_AppCompat_Caption ++style Base_TextAppearance_AppCompat_Display1 ++style Base_TextAppearance_AppCompat_Display2 ++style Base_TextAppearance_AppCompat_Display3 ++style Base_TextAppearance_AppCompat_Display4 ++style Base_TextAppearance_AppCompat_Headline ++style Base_TextAppearance_AppCompat_Inverse ++style Base_TextAppearance_AppCompat_Large ++style Base_TextAppearance_AppCompat_Large_Inverse ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Medium ++style Base_TextAppearance_AppCompat_Medium_Inverse ++style Base_TextAppearance_AppCompat_Menu ++style Base_TextAppearance_AppCompat_SearchResult ++style Base_TextAppearance_AppCompat_SearchResult_Subtitle ++style Base_TextAppearance_AppCompat_SearchResult_Title ++style Base_TextAppearance_AppCompat_Small ++style Base_TextAppearance_AppCompat_Small_Inverse ++style Base_TextAppearance_AppCompat_Subhead ++style Base_TextAppearance_AppCompat_Subhead_Inverse ++style Base_TextAppearance_AppCompat_Title ++style Base_TextAppearance_AppCompat_Title_Inverse ++style Base_TextAppearance_AppCompat_Tooltip ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Title ++style Base_TextAppearance_AppCompat_Widget_Button ++style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Inverse ++style Base_TextAppearance_AppCompat_Widget_DropDownItem ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Widget_Switch ++style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Title ++style Base_ThemeOverlay_AppCompat ++style Base_ThemeOverlay_AppCompat_ActionBar ++style Base_ThemeOverlay_AppCompat_Dark ++style Base_ThemeOverlay_AppCompat_Dark_ActionBar ++style Base_ThemeOverlay_AppCompat_Dialog ++style Base_ThemeOverlay_AppCompat_Dialog_Alert ++style Base_ThemeOverlay_AppCompat_Light ++style Base_Theme_AppCompat ++style Base_Theme_AppCompat_CompactMenu ++style Base_Theme_AppCompat_Dialog ++style Base_Theme_AppCompat_DialogWhenLarge ++style Base_Theme_AppCompat_Dialog_Alert ++style Base_Theme_AppCompat_Dialog_FixedSize ++style Base_Theme_AppCompat_Dialog_MinWidth ++style Base_Theme_AppCompat_Light ++style Base_Theme_AppCompat_Light_DarkActionBar ++style Base_Theme_AppCompat_Light_Dialog ++style Base_Theme_AppCompat_Light_DialogWhenLarge ++style Base_Theme_AppCompat_Light_Dialog_Alert ++style Base_Theme_AppCompat_Light_Dialog_FixedSize ++style Base_Theme_AppCompat_Light_Dialog_MinWidth ++style Base_V21_ThemeOverlay_AppCompat_Dialog ++style Base_V21_Theme_AppCompat ++style Base_V21_Theme_AppCompat_Dialog ++style Base_V21_Theme_AppCompat_Light ++style Base_V21_Theme_AppCompat_Light_Dialog ++style Base_V22_Theme_AppCompat ++style Base_V22_Theme_AppCompat_Light ++style Base_V23_Theme_AppCompat ++style Base_V23_Theme_AppCompat_Light ++style Base_V26_Theme_AppCompat ++style Base_V26_Theme_AppCompat_Light ++style Base_V26_Widget_AppCompat_Toolbar ++style Base_V28_Theme_AppCompat ++style Base_V28_Theme_AppCompat_Light ++style Base_V7_ThemeOverlay_AppCompat_Dialog ++style Base_V7_Theme_AppCompat ++style Base_V7_Theme_AppCompat_Dialog ++style Base_V7_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat_Light_Dialog ++style Base_V7_Widget_AppCompat_AutoCompleteTextView ++style Base_V7_Widget_AppCompat_EditText ++style Base_V7_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_ActionBar ++style Base_Widget_AppCompat_ActionBar_Solid ++style Base_Widget_AppCompat_ActionBar_TabBar ++style Base_Widget_AppCompat_ActionBar_TabText ++style Base_Widget_AppCompat_ActionBar_TabView ++style Base_Widget_AppCompat_ActionButton ++style Base_Widget_AppCompat_ActionButton_CloseMode ++style Base_Widget_AppCompat_ActionButton_Overflow ++style Base_Widget_AppCompat_ActionMode ++style Base_Widget_AppCompat_ActivityChooserView ++style Base_Widget_AppCompat_AutoCompleteTextView ++style Base_Widget_AppCompat_Button ++style Base_Widget_AppCompat_ButtonBar ++style Base_Widget_AppCompat_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Borderless ++style Base_Widget_AppCompat_Button_Borderless_Colored ++style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Colored ++style Base_Widget_AppCompat_Button_Small ++style Base_Widget_AppCompat_CompoundButton_CheckBox ++style Base_Widget_AppCompat_CompoundButton_RadioButton ++style Base_Widget_AppCompat_CompoundButton_Switch ++style Base_Widget_AppCompat_DrawerArrowToggle ++style Base_Widget_AppCompat_DrawerArrowToggle_Common ++style Base_Widget_AppCompat_DropDownItem_Spinner ++style Base_Widget_AppCompat_EditText ++style Base_Widget_AppCompat_ImageButton ++style Base_Widget_AppCompat_Light_ActionBar ++style Base_Widget_AppCompat_Light_ActionBar_Solid ++style Base_Widget_AppCompat_Light_ActionBar_TabBar ++style Base_Widget_AppCompat_Light_ActionBar_TabText ++style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Base_Widget_AppCompat_Light_ActionBar_TabView ++style Base_Widget_AppCompat_Light_PopupMenu ++style Base_Widget_AppCompat_Light_PopupMenu_Overflow ++style Base_Widget_AppCompat_ListMenuView ++style Base_Widget_AppCompat_ListPopupWindow ++style Base_Widget_AppCompat_ListView ++style Base_Widget_AppCompat_ListView_DropDown ++style Base_Widget_AppCompat_ListView_Menu ++style Base_Widget_AppCompat_PopupMenu ++style Base_Widget_AppCompat_PopupMenu_Overflow ++style Base_Widget_AppCompat_PopupWindow ++style Base_Widget_AppCompat_ProgressBar ++style Base_Widget_AppCompat_ProgressBar_Horizontal ++style Base_Widget_AppCompat_RatingBar ++style Base_Widget_AppCompat_RatingBar_Indicator ++style Base_Widget_AppCompat_RatingBar_Small ++style Base_Widget_AppCompat_SearchView ++style Base_Widget_AppCompat_SearchView_ActionBar ++style Base_Widget_AppCompat_SeekBar ++style Base_Widget_AppCompat_SeekBar_Discrete ++style Base_Widget_AppCompat_Spinner ++style Base_Widget_AppCompat_Spinner_Underlined ++style Base_Widget_AppCompat_TextView ++style Base_Widget_AppCompat_TextView_SpinnerItem ++style Base_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_Toolbar_Button_Navigation ++style CalendarDatePickerDialog ++style CalendarDatePickerStyle ++style DialogAnimationFade ++style DialogAnimationSlide ++style NoAnimationDialog ++style Platform_AppCompat ++style Platform_AppCompat_Light ++style Platform_ThemeOverlay_AppCompat ++style Platform_ThemeOverlay_AppCompat_Dark ++style Platform_ThemeOverlay_AppCompat_Light ++style Platform_V21_AppCompat ++style Platform_V21_AppCompat_Light ++style Platform_V25_AppCompat ++style Platform_V25_AppCompat_Light ++style Platform_Widget_AppCompat_Spinner ++style RtlOverlay_DialogWindowTitle_AppCompat ++style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem ++style RtlOverlay_Widget_AppCompat_DialogTitle_Icon ++style RtlOverlay_Widget_AppCompat_PopupMenuItem ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title ++style RtlOverlay_Widget_AppCompat_SearchView_MagIcon ++style RtlOverlay_Widget_AppCompat_Search_DropDown ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Query ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Text ++style RtlUnderlay_Widget_AppCompat_ActionButton ++style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow ++style SpinnerDatePickerDialog ++style SpinnerDatePickerStyle ++style TextAppearance_AppCompat ++style TextAppearance_AppCompat_Body1 ++style TextAppearance_AppCompat_Body2 ++style TextAppearance_AppCompat_Button ++style TextAppearance_AppCompat_Caption ++style TextAppearance_AppCompat_Display1 ++style TextAppearance_AppCompat_Display2 ++style TextAppearance_AppCompat_Display3 ++style TextAppearance_AppCompat_Display4 ++style TextAppearance_AppCompat_Headline ++style TextAppearance_AppCompat_Inverse ++style TextAppearance_AppCompat_Large ++style TextAppearance_AppCompat_Large_Inverse ++style TextAppearance_AppCompat_Light_SearchResult_Subtitle ++style TextAppearance_AppCompat_Light_SearchResult_Title ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Medium ++style TextAppearance_AppCompat_Medium_Inverse ++style TextAppearance_AppCompat_Menu ++style TextAppearance_AppCompat_SearchResult_Subtitle ++style TextAppearance_AppCompat_SearchResult_Title ++style TextAppearance_AppCompat_Small ++style TextAppearance_AppCompat_Small_Inverse ++style TextAppearance_AppCompat_Subhead ++style TextAppearance_AppCompat_Subhead_Inverse ++style TextAppearance_AppCompat_Title ++style TextAppearance_AppCompat_Title_Inverse ++style TextAppearance_AppCompat_Tooltip ++style TextAppearance_AppCompat_Widget_ActionBar_Menu ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionBar_Title ++style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Title ++style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse ++style TextAppearance_AppCompat_Widget_Button ++style TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style TextAppearance_AppCompat_Widget_Button_Colored ++style TextAppearance_AppCompat_Widget_Button_Inverse ++style TextAppearance_AppCompat_Widget_DropDownItem ++style TextAppearance_AppCompat_Widget_PopupMenu_Header ++style TextAppearance_AppCompat_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Widget_Switch ++style TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style TextAppearance_Compat_Notification ++style TextAppearance_Compat_Notification_Info ++style TextAppearance_Compat_Notification_Info_Media ++style TextAppearance_Compat_Notification_Line2 ++style TextAppearance_Compat_Notification_Line2_Media ++style TextAppearance_Compat_Notification_Media ++style TextAppearance_Compat_Notification_Time ++style TextAppearance_Compat_Notification_Time_Media ++style TextAppearance_Compat_Notification_Title ++style TextAppearance_Compat_Notification_Title_Media ++style TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style TextAppearance_Widget_AppCompat_Toolbar_Title ++style Theme ++style ThemeOverlay_AppCompat ++style ThemeOverlay_AppCompat_ActionBar ++style ThemeOverlay_AppCompat_Dark ++style ThemeOverlay_AppCompat_Dark_ActionBar ++style ThemeOverlay_AppCompat_DayNight ++style ThemeOverlay_AppCompat_DayNight_ActionBar ++style ThemeOverlay_AppCompat_Dialog ++style ThemeOverlay_AppCompat_Dialog_Alert ++style ThemeOverlay_AppCompat_Light ++style Theme_AppCompat ++style Theme_AppCompat_CompactMenu ++style Theme_AppCompat_DayNight ++style Theme_AppCompat_DayNight_DarkActionBar ++style Theme_AppCompat_DayNight_Dialog ++style Theme_AppCompat_DayNight_DialogWhenLarge ++style Theme_AppCompat_DayNight_Dialog_Alert ++style Theme_AppCompat_DayNight_Dialog_MinWidth ++style Theme_AppCompat_DayNight_NoActionBar ++style Theme_AppCompat_Dialog ++style Theme_AppCompat_DialogWhenLarge ++style Theme_AppCompat_Dialog_Alert ++style Theme_AppCompat_Dialog_MinWidth ++style Theme_AppCompat_Empty ++style Theme_AppCompat_Light ++style Theme_AppCompat_Light_DarkActionBar ++style Theme_AppCompat_Light_Dialog ++style Theme_AppCompat_Light_DialogWhenLarge ++style Theme_AppCompat_Light_Dialog_Alert ++style Theme_AppCompat_Light_Dialog_MinWidth ++style Theme_AppCompat_Light_NoActionBar ++style Theme_AppCompat_NoActionBar ++style Theme_AutofillInlineSuggestion ++style Theme_Catalyst ++style Theme_Catalyst_LogBox ++style Theme_Catalyst_RedBox ++style Theme_FullScreenDialog ++style Theme_FullScreenDialogAnimatedFade ++style Theme_FullScreenDialogAnimatedSlide ++style Theme_ReactNative_AppCompat_Light ++style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen ++style Theme_ReactNative_TextInput_DefaultBackground ++style Widget_AppCompat_ActionBar ++style Widget_AppCompat_ActionBar_Solid ++style Widget_AppCompat_ActionBar_TabBar ++style Widget_AppCompat_ActionBar_TabText ++style Widget_AppCompat_ActionBar_TabView ++style Widget_AppCompat_ActionButton ++style Widget_AppCompat_ActionButton_CloseMode ++style Widget_AppCompat_ActionButton_Overflow ++style Widget_AppCompat_ActionMode ++style Widget_AppCompat_ActivityChooserView ++style Widget_AppCompat_AutoCompleteTextView ++style Widget_AppCompat_Button ++style Widget_AppCompat_ButtonBar ++style Widget_AppCompat_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Borderless ++style Widget_AppCompat_Button_Borderless_Colored ++style Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Colored ++style Widget_AppCompat_Button_Small ++style Widget_AppCompat_CompoundButton_CheckBox ++style Widget_AppCompat_CompoundButton_RadioButton ++style Widget_AppCompat_CompoundButton_Switch ++style Widget_AppCompat_DrawerArrowToggle ++style Widget_AppCompat_DropDownItem_Spinner ++style Widget_AppCompat_EditText ++style Widget_AppCompat_ImageButton ++style Widget_AppCompat_Light_ActionBar ++style Widget_AppCompat_Light_ActionBar_Solid ++style Widget_AppCompat_Light_ActionBar_Solid_Inverse ++style Widget_AppCompat_Light_ActionBar_TabBar ++style Widget_AppCompat_Light_ActionBar_TabBar_Inverse ++style Widget_AppCompat_Light_ActionBar_TabText ++style Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Widget_AppCompat_Light_ActionBar_TabView ++style Widget_AppCompat_Light_ActionBar_TabView_Inverse ++style Widget_AppCompat_Light_ActionButton ++style Widget_AppCompat_Light_ActionButton_CloseMode ++style Widget_AppCompat_Light_ActionButton_Overflow ++style Widget_AppCompat_Light_ActionMode_Inverse ++style Widget_AppCompat_Light_ActivityChooserView ++style Widget_AppCompat_Light_AutoCompleteTextView ++style Widget_AppCompat_Light_DropDownItem_Spinner ++style Widget_AppCompat_Light_ListPopupWindow ++style Widget_AppCompat_Light_ListView_DropDown ++style Widget_AppCompat_Light_PopupMenu ++style Widget_AppCompat_Light_PopupMenu_Overflow ++style Widget_AppCompat_Light_SearchView ++style Widget_AppCompat_Light_Spinner_DropDown_ActionBar ++style Widget_AppCompat_ListMenuView ++style Widget_AppCompat_ListPopupWindow ++style Widget_AppCompat_ListView ++style Widget_AppCompat_ListView_DropDown ++style Widget_AppCompat_ListView_Menu ++style Widget_AppCompat_PopupMenu ++style Widget_AppCompat_PopupMenu_Overflow ++style Widget_AppCompat_PopupWindow ++style Widget_AppCompat_ProgressBar ++style Widget_AppCompat_ProgressBar_Horizontal ++style Widget_AppCompat_RatingBar ++style Widget_AppCompat_RatingBar_Indicator ++style Widget_AppCompat_RatingBar_Small ++style Widget_AppCompat_SearchView ++style Widget_AppCompat_SearchView_ActionBar ++style Widget_AppCompat_SeekBar ++style Widget_AppCompat_SeekBar_Discrete ++style Widget_AppCompat_Spinner ++style Widget_AppCompat_Spinner_DropDown ++style Widget_AppCompat_Spinner_DropDown_ActionBar ++style Widget_AppCompat_Spinner_Underlined ++style Widget_AppCompat_TextView ++style Widget_AppCompat_TextView_SpinnerItem ++style Widget_AppCompat_Toolbar ++style Widget_AppCompat_Toolbar_Button_Navigation ++style Widget_Autofill ++style Widget_Autofill_InlineSuggestionChip ++style Widget_Autofill_InlineSuggestionEndIconStyle ++style Widget_Autofill_InlineSuggestionStartIconStyle ++style Widget_Autofill_InlineSuggestionSubtitle ++style Widget_Autofill_InlineSuggestionTitle ++style Widget_Compat_NotificationActionContainer ++style Widget_Compat_NotificationActionText ++style Widget_Support_CoordinatorLayout ++style redboxButton ++styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle ++styleable ActionBarLayout android_layout_gravity ++styleable ActionMenuItemView android_minWidth ++styleable ActionMenuView ++styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle ++styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount ++styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout ++styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible ++styleable AnimatedStateListDrawableItem android_drawable android_id ++styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId ++styleable AppCompatEmojiHelper ++styleable AppCompatImageView android_src srcCompat tint tintMode ++styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode ++styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance ++styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale ++styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle ++styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme ++styleable ButtonBarLayout allowStacking ++styleable Capability queryPatterns shortcutMatchRequired ++styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode ++styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar ++styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode ++styleable CoordinatorLayout keylines statusBarBackground ++styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline ++styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness ++styleable DrawerLayout elevation ++styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily ++styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex ++styleable Fragment android_id android_name android_tag ++styleable FragmentContainerView android_name android_tag ++styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type ++styleable GradientColorItem android_color android_offset ++styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers ++styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width ++styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset ++styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust ++styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible ++styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText ++styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow ++styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor ++styleable PopupWindowBackgroundState state_above_anchor ++styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle ++styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon ++styleable SignInButton buttonSize colorScheme scopeUris ++styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme ++styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible ++styleable StateListDrawableItem android_drawable ++styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor ++styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode ++styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale ++styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor ++styleable View android_focusable android_theme paddingEnd paddingStart theme ++styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode ++styleable ViewStubCompat android_id android_inflatedId android_layout ++xml rn_dev_preferences +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@react-native-firebase/crashlytics/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..bb37631 +--- /dev/null ++++ b/node_modules/@react-native-firebase/crashlytics/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,35 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:2:1-15:12 ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:2:1-15:12 ++ package ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:3:3-46 ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:2:11-69 ++application ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:4:3-14:17 ++meta-data#firebase_crashlytics_collection_enabled ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:6:5-8:31 ++ android:value ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:8:7-28 ++ android:name ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:7:7-61 ++provider#io.invertase.firebase.crashlytics.ReactNativeFirebaseCrashlyticsInitProvider ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:9:5-13:32 ++ android:authorities ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:11:7-88 ++ android:exported ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:12:7-31 ++ android:initOrder ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:13:7-29 ++ android:name ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:10:7-98 ++uses-sdk ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml +diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/@react-native-firebase/crashlytics/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..7cf0894 +Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ diff --git a/patches/@react-native-firebase/crashlytics/details.md b/patches/@react-native-firebase/crashlytics/details.md index ff2d3704cba0a..bfc732eda9d2a 100644 --- a/patches/@react-native-firebase/crashlytics/details.md +++ b/patches/@react-native-firebase/crashlytics/details.md @@ -5,4 +5,4 @@ - Reason: The patch adapts `@react-native-firebase/crashlytics`'s build process to work reliably in our custom environment. - Upstream PR/issue: Since this is tightly coupled to our specific Gradle configuration, it's not appropriate for upstream inclusion. - E/App issue: This patch will remain in place to maintain compatibility with our build setup. -- PR introducing patch: N/A \ No newline at end of file +- PR introducing patch: N/A From 47795fd21f4f398b350ff99d38657addc544aa0b Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 17:14:06 +0200 Subject: [PATCH 11/50] fix: update PR link in details.md --- patches/@rnmapbox/maps/details.md | 2 +- patches/react-native-safe-area-context/details.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/@rnmapbox/maps/details.md b/patches/@rnmapbox/maps/details.md index 4efe2993865c6..8574f55dfcd8e 100644 --- a/patches/@rnmapbox/maps/details.md +++ b/patches/@rnmapbox/maps/details.md @@ -12,4 +12,4 @@ - Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. - Upstream PR/issue: TODO - E/App issue: [#63871](https://github.com/Expensify/App/issues/63871) -- PR Introducing Patch: [#13604](https://github.com/Expensify/Mobile-Expensify/pull/13604) +- PR Introducing Patch: [#64640](https://github.com/Expensify/App/pull/64640) diff --git a/patches/react-native-safe-area-context/details.md b/patches/react-native-safe-area-context/details.md index 046022b91ec89..b939cd2f31e56 100644 --- a/patches/react-native-safe-area-context/details.md +++ b/patches/react-native-safe-area-context/details.md @@ -5,4 +5,4 @@ - Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. - Upstream PR/issue: TODO - E/App issue: [#63871](https://github.com/Expensify/App/issues/63871) -- PR Introducing Patch: [#13604](https://github.com/Expensify/Mobile-Expensify/pull/13604) +- PR Introducing Patch: [#64640](https://github.com/Expensify/App/pull/64640) From 939cc7d18df71be7479e60f20fb5fca70ff368a1 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 17:28:46 +0200 Subject: [PATCH 12/50] chore: @expensify/react-native-live-markdown --- ...-packaging-for-16kb-memory-page-size.patch | 25531 ++++++++++++++++ 1 file changed, 25531 insertions(+) create mode 100644 patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch diff --git a/patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..25a70ad5fcac3 --- /dev/null +++ b/patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch @@ -0,0 +1,25531 @@ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cache-v2-4013197ac8934ef61692.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cache-v2-4013197ac8934ef61692.json +new file mode 100644 +index 0000000..ff847cd +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cache-v2-4013197ac8934ef61692.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/chris/Library/Android/sdk/ndk/27.0.12077973" ++ }, ++ { ++ "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_TOOLCHAIN", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "clang" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/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/chris/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "livemarkdown" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni" ++ }, ++ { ++ "name" : "livemarkdown_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a" ++ }, ++ { ++ "name" : "livemarkdown_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "livemarkdown_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "name" : "react-native-reanimated_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for react-native-reanimated." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-921a396839704bda126c.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-921a396839704bda126c.json +new file mode 100644 +index 0000000..7cc1b95 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-921a396839704bda126c.json +@@ -0,0 +1,827 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-a616f2ade3c49a58f3fc.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-a616f2ade3c49a58f3fc.json +new file mode 100644 +index 0000000..0556995 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-a616f2ade3c49a58f3fc.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" : "livemarkdown", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "livemarkdown::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-livemarkdown-Debug-e25128b984a2e63035ad.json", ++ "name" : "livemarkdown", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/index-2025-06-24T11-46-21-0315.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/index-2025-06-24T11-46-21-0315.json +new file mode 100644 +index 0000000..e6e3275 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/index-2025-06-24T11-46-21-0315.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/chris/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-a616f2ade3c49a58f3fc.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-4013197ac8934ef61692.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-921a396839704bda126c.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-4013197ac8934ef61692.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-921a396839704bda126c.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-a616f2ade3c49a58f3fc.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/target-livemarkdown-Debug-e25128b984a2e63035ad.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/target-livemarkdown-Debug-e25128b984a2e63035ad.json +new file mode 100644 +index 0000000..749391e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/target-livemarkdown-Debug-e25128b984a2e63035ad.json +@@ -0,0 +1,213 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.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" : 16, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 24, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 7, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 18, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-fvisibility=hidden" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-fexceptions" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-frtti" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "livemarkdown_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 4, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ } ++ ], ++ "language" : "CXX", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "livemarkdown::@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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "livemarkdown", ++ "nameOnDisk" : "liblivemarkdown.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "MarkdownParser.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "OnLoad.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_deps b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_deps +new file mode 100644 +index 0000000..9c68f75 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_deps differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_log b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_log +new file mode 100644 +index 0000000..95df4c2 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_log +@@ -0,0 +1,16 @@ ++# ninja log v5 ++0 67 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++1 4070 1750765594333273059 CMakeFiles/livemarkdown.dir/OnLoad.cpp.o 9b7ad9bb170f8e8b ++2 4930 1750765595213550517 CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o af463680cc2ce167 ++4 68 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++13 6152 1750765630159996994 CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o a4b3b4fd58c7f937 ++8 6428 1750765630448866195 CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o 391f0121dd4dff66 ++6428 6685 1750765630702623939 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so 20fbd9f9850a8c6d ++3 33 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++2 20 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++2 53 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++1 31 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++1 23 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++1 15 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++0 16 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 ++2 16 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeCache.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeCache.txt +new file mode 100644 +index 0000000..10b5495 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeCache.txt +@@ -0,0 +1,416 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a ++# It was generated by CMake: /Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973 ++ ++//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_TOOLCHAIN:UNINITIALIZED=clang ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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=livemarkdown ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni ++ ++//Value Computed by CMake ++livemarkdown_BINARY_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a ++ ++//Value Computed by CMake ++livemarkdown_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++livemarkdown_SOURCE_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++ ++//The directory containing a CMake configuration file for react-native-reanimated. ++react-native-reanimated_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated ++ ++ ++######################## ++# 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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/chris/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++//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/chris/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..cd4999c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") ++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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..171582e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..f414489 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..516ae52 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..613fe3a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.5.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.5.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..0f2513e +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..a94d4ae +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..9cd8596 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,262 @@ ++The target system is: Android - 1 - aarch64 ++The host system is: Darwin - 24.5.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_552d0 && [1/2] Building C object CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_552d0 ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_552d0 && [1/2] Building C object CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_552d0] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_6e937 && [1/2] Building CXX object CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_6e937 ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_6e937 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_6e937 && [1/2] Building CXX object CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_6e937] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_6e937 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_6e937] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_6e937.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..355887a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/edit_cache.dir ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake +new file mode 100644 +index 0000000..6ca7744 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake +@@ -0,0 +1,25 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by CMake Version 3.22 ++cmake_policy(SET CMP0009 NEW) ++ ++# ANDROID_SRC at CMakeLists.txt:13 (file) ++file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/*.cpp") ++set(OLD_GLOB ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# CPP_SRC at CMakeLists.txt:14 (file) ++file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/*.cpp") ++set(OLD_GLOB ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/MarkdownGlobal.cpp" ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/RuntimeDecorator.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs") ++endif() +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs +new file mode 100644 +index 0000000..2b38fac +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs +@@ -0,0 +1 @@ ++# This file is generated by CMake for checking of the VerifyGlobs.cmake file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o +new file mode 100644 +index 0000000..a3f0494 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/OnLoad.cpp.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/OnLoad.cpp.o +new file mode 100644 +index 0000000..41e1f33 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/OnLoad.cpp.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o +new file mode 100644 +index 0000000..d420b28 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..5dd32c9 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..364dc6c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/rules.ninja +@@ -0,0 +1,73 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: livemarkdown ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__livemarkdown_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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__livemarkdown_Debug ++ command = $PRE_LINK && /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for re-checking globbed directories. ++ ++rule VERIFY_GLOBS ++ command = /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake ++ description = Re-checking globbed directories... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/chris/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/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/additional_project_files.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json +new file mode 100644 +index 0000000..31418a2 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json +@@ -0,0 +1,43 @@ ++{ ++ "buildFiles": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "livemarkdown::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "livemarkdown", ++ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so", ++ "runtimeFiles": [ ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build_mini.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..f1c4de2 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build_mini.json +@@ -0,0 +1,32 @@ ++{ ++ "buildFiles": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "livemarkdown::@6890427a1f51a3e7e1df": { ++ "artifactName": "livemarkdown", ++ "abi": "arm64-v8a", ++ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so", ++ "runtimeFiles": [ ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja +new file mode 100644 +index 0000000..a55a894 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja +@@ -0,0 +1,200 @@ ++# 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: livemarkdown ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.8 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target livemarkdown ++ ++ ++############################################# ++# Order-only phony target for livemarkdown ++ ++build cmake_object_order_depends_target_livemarkdown: phony || CMakeFiles/livemarkdown.dir ++ ++build CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/OnLoad.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/OnLoad.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target livemarkdown ++ ++ ++############################################# ++# Link the shared library /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so: CXX_SHARED_LIBRARY_LINKER__livemarkdown_Debug CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o | /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = liblivemarkdown.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_FILE = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build liblivemarkdown.so: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so ++ ++build livemarkdown: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a ++ ++build all: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Phony target to force glob verification run. ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force: phony ++ ++ ++############################################# ++# Re-run CMake to check if globbed directories changed. ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force ++ pool = console ++ restat = 1 ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs | /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build_file_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build_file_index.txt +new file mode 100644 +index 0000000..7611c5b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build_file_index.txt +@@ -0,0 +1 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/cmake_install.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/cmake_install.cmake +new file mode 100644 +index 0000000..b8bb7d1 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++ ++# 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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..4b99466 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json +@@ -0,0 +1,22 @@ ++[ ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json.bin +new file mode 100644 +index 0000000..bee02e6 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/configure_fingerprint.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/configure_fingerprint.bin +new file mode 100644 +index 0000000..d693a8b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/configure_fingerprint.bin +@@ -0,0 +1,34 @@ ++C/C++ Structured Log§ ++¤ ++¡/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  û–ºú2  ‚銎ú2¤ ++¡ ++ž/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json  ü–ºú2û †éŠŽú2© ++¦ ++£/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build_mini.json  ü–ºú2× ¨éŠŽú2– ++“ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja  ü–ºú2‰Å šçŠŽú2š ++— ++”/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja.txt  ü–ºú2Ÿ ++œ ++™/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build_file_index.txt  ü–ºú2‚ É銎ú2  ++ ++š/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json  ü–ºú2¸9 ™çŠŽú2¤ ++¡ ++ž/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json.bin  ü–ºú2 ì ™çŠŽú2ª ++§ ++¤/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/metadata_generation_command.txt  ü–ºú2 ++ó Ä銎ú2 ++š ++—/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/prefab_config.json  ü–ºú2 è Ä銎ú2¢ ++Ÿ ++œ/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/symbol_folder_index.txt  ü–ºú2 › ÆéŠŽú2ˆ ++… ++‚/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt  ü–ºú2 š øÝÒ‹ú2É ++Æ ++Ã/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  ü–ºú2à ++À ++½/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  ü–ºú2Ñ ++Î ++Ë/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  ü–ºú2 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/metadata_generation_command.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/metadata_generation_command.txt +new file mode 100644 +index 0000000..4fed2a6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/metadata_generation_command.txt +@@ -0,0 +1,22 @@ ++ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++-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/chris/Library/Android/sdk/ndk/27.0.12077973 ++-DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 ++-DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab ++-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a ++-GNinja ++-DANDROID_STL=c++_shared ++-DANDROID_TOOLCHAIN=clang ++-DREACT_NATIVE_MINOR_VERSION=79 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/prefab_config.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/prefab_config.json +new file mode 100644 +index 0000000..e62cf5f +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/prefab_config.json +@@ -0,0 +1,10 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/symbol_folder_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/symbol_folder_index.txt +new file mode 100644 +index 0000000..f09e9f3 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/hash_key.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/hash_key.txt +new file mode 100644 +index 0000000..25fb1ff +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/hash_key.txt +@@ -0,0 +1,29 @@ ++# 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.0.12077973. ++# - $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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=$ABI ++-DCMAKE_ANDROID_ARCH_ABI=$ABI ++-DANDROID_NDK=$NDK ++-DCMAKE_ANDROID_NDK=$NDK ++-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=$NINJA ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/prefab/$ABI/prefab ++-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/$ABI ++-GNinja ++-DANDROID_STL=c++_shared ++-DANDROID_TOOLCHAIN=clang ++-DREACT_NATIVE_MINOR_VERSION=79 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..8a2d1e2 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..edb6a35 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.2) ++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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..2c27475 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +new file mode 100644 +index 0000000..75d49b1 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET hermes-engine::libhermes) ++add_library(hermes-engine::libhermes SHARED IMPORTED) ++set_target_properties(hermes-engine::libhermes PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/Release/5o5v6w66/obj/arm64-v8a/libhermes.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +new file mode 100644 +index 0000000..edb6a35 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.2) ++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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +new file mode 100644 +index 0000000..2f26cf6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +@@ -0,0 +1,18 @@ ++if(NOT TARGET react-native-reanimated::reanimated) ++add_library(react-native-reanimated::reanimated SHARED IMPORTED) ++set_target_properties(react-native-reanimated::reanimated PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libreanimated.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/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 SHARED IMPORTED) ++set_target_properties(react-native-reanimated::worklets PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..754f2de +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..edb6a35 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.2) ++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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..614cb67 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +new file mode 100644 +index 0000000..51f2f6a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET hermes-engine::libhermes) ++add_library(hermes-engine::libhermes SHARED IMPORTED) ++set_target_properties(hermes-engine::libhermes PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/Release/5o5v6w66/obj/x86/libhermes.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +new file mode 100644 +index 0000000..edb6a35 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.2) ++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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +new file mode 100644 +index 0000000..2c7c57c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +@@ -0,0 +1,18 @@ ++if(NOT TARGET react-native-reanimated::reanimated) ++add_library(react-native-reanimated::reanimated SHARED IMPORTED) ++set_target_properties(react-native-reanimated::reanimated PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libreanimated.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/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 SHARED IMPORTED) ++set_target_properties(react-native-reanimated::worklets PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cache-v2-f3cd9b3656ddd70b6d0d.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cache-v2-f3cd9b3656ddd70b6d0d.json +new file mode 100644 +index 0000000..652d6c6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cache-v2-f3cd9b3656ddd70b6d0d.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/chris/Library/Android/sdk/ndk/27.0.12077973" ++ }, ++ { ++ "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_TOOLCHAIN", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "clang" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/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/chris/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "livemarkdown" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni" ++ }, ++ { ++ "name" : "livemarkdown_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86" ++ }, ++ { ++ "name" : "livemarkdown_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "livemarkdown_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "name" : "react-native-reanimated_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for react-native-reanimated." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cmakeFiles-v1-4fe74da1a125fd7343d8.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cmakeFiles-v1-4fe74da1a125fd7343d8.json +new file mode 100644 +index 0000000..d504cd1 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cmakeFiles-v1-4fe74da1a125fd7343d8.json +@@ -0,0 +1,827 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/codemodel-v2-93411720cc0acde7758f.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/codemodel-v2-93411720cc0acde7758f.json +new file mode 100644 +index 0000000..71075bc +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/codemodel-v2-93411720cc0acde7758f.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" : "livemarkdown", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "livemarkdown::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-livemarkdown-Debug-3596ce2412ea78e0676f.json", ++ "name" : "livemarkdown", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/index-2025-06-24T10-59-29-0444.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/index-2025-06-24T10-59-29-0444.json +new file mode 100644 +index 0000000..09eda06 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/index-2025-06-24T10-59-29-0444.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/chris/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-93411720cc0acde7758f.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-f3cd9b3656ddd70b6d0d.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-4fe74da1a125fd7343d8.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-f3cd9b3656ddd70b6d0d.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-4fe74da1a125fd7343d8.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-93411720cc0acde7758f.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/target-livemarkdown-Debug-3596ce2412ea78e0676f.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/target-livemarkdown-Debug-3596ce2412ea78e0676f.json +new file mode 100644 +index 0000000..9cc9996 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/target-livemarkdown-Debug-3596ce2412ea78e0676f.json +@@ -0,0 +1,213 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.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" : 16, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 24, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 7, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 18, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-fvisibility=hidden" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-fexceptions" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-frtti" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "livemarkdown_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 4, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ } ++ ], ++ "language" : "CXX", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "livemarkdown::@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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "livemarkdown", ++ "nameOnDisk" : "liblivemarkdown.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "MarkdownParser.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "OnLoad.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeCache.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeCache.txt +new file mode 100644 +index 0000000..99a5b5a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeCache.txt +@@ -0,0 +1,416 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 ++# It was generated by CMake: /Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973 ++ ++//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_TOOLCHAIN:UNINITIALIZED=clang ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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=livemarkdown ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni ++ ++//Value Computed by CMake ++livemarkdown_BINARY_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 ++ ++//Value Computed by CMake ++livemarkdown_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++livemarkdown_SOURCE_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++ ++//The directory containing a CMake configuration file for react-native-reanimated. ++react-native-reanimated_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated ++ ++ ++######################## ++# 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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/chris/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++//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/chris/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..ff82c4e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") ++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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..869e8e6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..678a329 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..95da3d7 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..512411c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.5.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.5.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..30ce72b +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..cdf3572 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeOutput.log b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..413d261 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,256 @@ ++The target system is: Android - 1 - i686 ++The host system is: Darwin - 24.5.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_716a7 && [1/2] Building C object CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_716a7 ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_716a7 && [1/2] Building C object CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_716a7] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_ec79e && [1/2] Building CXX object CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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 CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_ec79e ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_ec79e /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_ec79e && [1/2] Building CXX object CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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 CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_ec79e] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_ec79e /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_ec79e] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_ec79e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/TargetDirectories.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..ff81c42 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/livemarkdown.dir ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/edit_cache.dir ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake +new file mode 100644 +index 0000000..b89d94a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake +@@ -0,0 +1,25 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by CMake Version 3.22 ++cmake_policy(SET CMP0009 NEW) ++ ++# ANDROID_SRC at CMakeLists.txt:13 (file) ++file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/*.cpp") ++set(OLD_GLOB ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# CPP_SRC at CMakeLists.txt:14 (file) ++file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/*.cpp") ++set(OLD_GLOB ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/MarkdownGlobal.cpp" ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/RuntimeDecorator.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs") ++endif() +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.check_cache b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs +new file mode 100644 +index 0000000..2b38fac +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs +@@ -0,0 +1 @@ ++# This file is generated by CMake for checking of the VerifyGlobs.cmake file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/rules.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..b8a5815 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/rules.ninja +@@ -0,0 +1,73 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: livemarkdown ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__livemarkdown_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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__livemarkdown_Debug ++ command = $PRE_LINK && /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for re-checking globbed directories. ++ ++rule VERIFY_GLOBS ++ command = /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake ++ description = Re-checking globbed directories... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/chris/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/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/additional_project_files.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json +new file mode 100644 +index 0000000..f504fbd +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json +@@ -0,0 +1,43 @@ ++{ ++ "buildFiles": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "livemarkdown::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86", ++ "artifactName": "livemarkdown", ++ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so", ++ "runtimeFiles": [ ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build_mini.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build_mini.json +new file mode 100644 +index 0000000..ccf9c28 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build_mini.json +@@ -0,0 +1,32 @@ ++{ ++ "buildFiles": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "livemarkdown::@6890427a1f51a3e7e1df": { ++ "artifactName": "livemarkdown", ++ "abi": "x86", ++ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so", ++ "runtimeFiles": [ ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja +new file mode 100644 +index 0000000..26d8dd0 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja +@@ -0,0 +1,200 @@ ++# 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: livemarkdown ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.8 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target livemarkdown ++ ++ ++############################################# ++# Order-only phony target for livemarkdown ++ ++build cmake_object_order_depends_target_livemarkdown: phony || CMakeFiles/livemarkdown.dir ++ ++build CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/OnLoad.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/OnLoad.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target livemarkdown ++ ++ ++############################################# ++# Link the shared library /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so: CXX_SHARED_LIBRARY_LINKER__livemarkdown_Debug CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o | /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = liblivemarkdown.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_FILE = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build liblivemarkdown.so: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so ++ ++build livemarkdown: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 ++ ++build all: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Phony target to force glob verification run. ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake_force: phony ++ ++ ++############################################# ++# Re-run CMake to check if globbed directories changed. ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake_force ++ pool = console ++ restat = 1 ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs | /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build_file_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build_file_index.txt +new file mode 100644 +index 0000000..7611c5b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build_file_index.txt +@@ -0,0 +1 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/cmake_install.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/cmake_install.cmake +new file mode 100644 +index 0000000..19816b0 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++ ++# 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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json +new file mode 100644 +index 0000000..02ced45 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json +@@ -0,0 +1,22 @@ ++[ ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json.bin +new file mode 100644 +index 0000000..658edb2 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/configure_fingerprint.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/configure_fingerprint.bin +new file mode 100644 +index 0000000..4bb5fed +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/configure_fingerprint.bin +@@ -0,0 +1,34 @@ ++C/C++ Structured Log¡ ++ž ++›/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  öŠöú2  ¨˜ßŒú2ž ++› ++˜/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json  öŠöú2Ë ¨˜ßŒú2£ ++  ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build_mini.json  öŠöú2§ ª˜ßŒú2 ++ ++Š/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja  öŠöú2ã ›˜ßŒú2” ++‘ ++Ž/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja.txt  öŠöú2™ ++– ++“/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build_file_index.txt  öŠöú2‚ ª˜ßŒú2š ++— ++”/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json  öŠöú2”9 š˜ßŒú2ž ++› ++˜/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json.bin  öŠöú2 ã š˜ßŒú2¤ ++¡ ++ž/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/metadata_generation_command.txt  öŠöú2 ++Ï ª˜ßŒú2— ++” ++‘/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/prefab_config.json  öŠöú2 è ª˜ßŒú2œ ++™ ++–/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/symbol_folder_index.txt  öŠöú2 • ª˜ßŒú2ˆ ++… ++‚/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt  öŠöú2 š øÝÒ‹ú2É ++Æ ++Ã/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  öŠöú2à ++À ++½/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  öŠöú2Ñ ++Î ++Ë/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  öŠöú2 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/metadata_generation_command.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/metadata_generation_command.txt +new file mode 100644 +index 0000000..34402f7 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/metadata_generation_command.txt +@@ -0,0 +1,22 @@ ++ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++-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/chris/Library/Android/sdk/ndk/27.0.12077973 ++-DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 ++-DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab ++-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 ++-GNinja ++-DANDROID_STL=c++_shared ++-DANDROID_TOOLCHAIN=clang ++-DREACT_NATIVE_MINOR_VERSION=79 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/prefab_config.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/prefab_config.json +new file mode 100644 +index 0000000..e62cf5f +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/prefab_config.json +@@ -0,0 +1,10 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/symbol_folder_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/symbol_folder_index.txt +new file mode 100644 +index 0000000..8aa8912 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/hash_key.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/hash_key.txt +new file mode 100644 +index 0000000..f02597c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/hash_key.txt +@@ -0,0 +1,29 @@ ++# 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.0.12077973. ++# - $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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=$ABI ++-DCMAKE_ANDROID_ARCH_ABI=$ABI ++-DANDROID_NDK=$NDK ++-DCMAKE_ANDROID_NDK=$NDK ++-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=$NINJA ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=RelWithDebInfo ++-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/$HASH/prefab/$ABI/prefab ++-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/$HASH/$ABI ++-GNinja ++-DANDROID_STL=c++_shared ++-DANDROID_TOOLCHAIN=clang ++-DREACT_NATIVE_MINOR_VERSION=79 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..88968da +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..edb6a35 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.2) ++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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..614cb67 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +new file mode 100644 +index 0000000..fba12c5 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET hermes-engine::libhermes) ++add_library(hermes-engine::libhermes SHARED IMPORTED) ++set_target_properties(hermes-engine::libhermes PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/MinSizeRel/2r4v3745/obj/x86/libhermes.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +new file mode 100644 +index 0000000..edb6a35 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.79.2) ++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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +new file mode 100644 +index 0000000..623511b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake +@@ -0,0 +1,18 @@ ++if(NOT TARGET react-native-reanimated::reanimated) ++add_library(react-native-reanimated::reanimated SHARED IMPORTED) ++set_target_properties(react-native-reanimated::reanimated PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libreanimated.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/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 SHARED IMPORTED) ++set_target_properties(react-native-reanimated::worklets PROPERTIES ++ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cache-v2-d3cb32865ad7c9d74f26.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cache-v2-d3cb32865ad7c9d74f26.json +new file mode 100644 +index 0000000..d901c3a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cache-v2-d3cb32865ad7c9d74f26.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/chris/Library/Android/sdk/ndk/27.0.12077973" ++ }, ++ { ++ "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_TOOLCHAIN", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "clang" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "RelWithDebInfo" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/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/chris/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "livemarkdown" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni" ++ }, ++ { ++ "name" : "livemarkdown_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86" ++ }, ++ { ++ "name" : "livemarkdown_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "livemarkdown_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "name" : "react-native-reanimated_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for react-native-reanimated." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cmakeFiles-v1-2b023688470c10ef111f.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cmakeFiles-v1-2b023688470c10ef111f.json +new file mode 100644 +index 0000000..c5bf9d9 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cmakeFiles-v1-2b023688470c10ef111f.json +@@ -0,0 +1,827 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/codemodel-v2-156a56d881ebdac7d539.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/codemodel-v2-156a56d881ebdac7d539.json +new file mode 100644 +index 0000000..46d3a11 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/codemodel-v2-156a56d881ebdac7d539.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-RelWithDebInfo-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.13" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "RelWithDebInfo", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "livemarkdown", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "livemarkdown::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-livemarkdown-RelWithDebInfo-89411de6aa8497870c90.json", ++ "name" : "livemarkdown", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/index-2025-06-24T12-22-12-0028.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/index-2025-06-24T12-22-12-0028.json +new file mode 100644 +index 0000000..27bb29c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/index-2025-06-24T12-22-12-0028.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/chris/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-156a56d881ebdac7d539.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-d3cb32865ad7c9d74f26.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-2b023688470c10ef111f.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-d3cb32865ad7c9d74f26.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-2b023688470c10ef111f.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-156a56d881ebdac7d539.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/target-livemarkdown-RelWithDebInfo-89411de6aa8497870c90.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/target-livemarkdown-RelWithDebInfo-89411de6aa8497870c90.json +new file mode 100644 +index 0000000..eba8813 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/target-livemarkdown-RelWithDebInfo-89411de6aa8497870c90.json +@@ -0,0 +1,213 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.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" : 16, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 24, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 7, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 18, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-fvisibility=hidden" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-fexceptions" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "-frtti" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "livemarkdown_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 4, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" ++ } ++ ], ++ "language" : "CXX", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "livemarkdown::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "livemarkdown", ++ "nameOnDisk" : "liblivemarkdown.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "MarkdownParser.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "OnLoad.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeCache.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeCache.txt +new file mode 100644 +index 0000000..49ae651 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeCache.txt +@@ -0,0 +1,416 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 ++# It was generated by CMake: /Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973 ++ ++//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_TOOLCHAIN:UNINITIALIZED=clang ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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=RelWithDebInfo ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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=livemarkdown ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni ++ ++//Value Computed by CMake ++livemarkdown_BINARY_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 ++ ++//Value Computed by CMake ++livemarkdown_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++livemarkdown_SOURCE_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++ ++//The directory containing a CMake configuration file for react-native-reanimated. ++react-native-reanimated_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated ++ ++ ++######################## ++# 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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/chris/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++//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/chris/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..ff82c4e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") ++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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..869e8e6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..be6e9da +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..720dae3 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..512411c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.5.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.5.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..34fd0ba +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..0205464 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeOutput.log b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..929a2ef +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,256 @@ ++The target system is: Android - 1 - i686 ++The host system is: Darwin - 24.5.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c12e6 && [1/2] Building C object CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_c12e6 ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c12e6 && [1/2] Building C object CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_c12e6] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_de043 && [1/2] Building CXX object CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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 CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android ++ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_de043 ++Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: i686-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_de043 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_de043 && [1/2] Building CXX object CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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 CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ++ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_de043] ++ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: i686-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_de043 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_de043] ==> ignore ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_de043.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ++ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/TargetDirectories.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..218013e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/livemarkdown.dir ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/edit_cache.dir ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake +new file mode 100644 +index 0000000..ac5d028 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake +@@ -0,0 +1,25 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by CMake Version 3.22 ++cmake_policy(SET CMP0009 NEW) ++ ++# ANDROID_SRC at CMakeLists.txt:13 (file) ++file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/*.cpp") ++set(OLD_GLOB ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# CPP_SRC at CMakeLists.txt:14 (file) ++file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/*.cpp") ++set(OLD_GLOB ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/MarkdownGlobal.cpp" ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/RuntimeDecorator.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs") ++endif() +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.check_cache b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs +new file mode 100644 +index 0000000..2b38fac +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs +@@ -0,0 +1 @@ ++# This file is generated by CMake for checking of the VerifyGlobs.cmake file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/rules.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..dfab7db +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/rules.ninja +@@ -0,0 +1,73 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: livemarkdown ++# Configurations: RelWithDebInfo ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__livemarkdown_RelWithDebInfo ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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__livemarkdown_RelWithDebInfo ++ command = $PRE_LINK && /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for re-checking globbed directories. ++ ++rule VERIFY_GLOBS ++ command = /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake ++ description = Re-checking globbed directories... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/chris/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/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/additional_project_files.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json +new file mode 100644 +index 0000000..268fc2c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json +@@ -0,0 +1,43 @@ ++{ ++ "buildFiles": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "livemarkdown::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86", ++ "artifactName": "livemarkdown", ++ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so", ++ "runtimeFiles": [ ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build_mini.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build_mini.json +new file mode 100644 +index 0000000..774d0c5 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build_mini.json +@@ -0,0 +1,32 @@ ++{ ++ "buildFiles": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "livemarkdown::@6890427a1f51a3e7e1df": { ++ "artifactName": "livemarkdown", ++ "abi": "x86", ++ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so", ++ "runtimeFiles": [ ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja +new file mode 100644 +index 0000000..06bc969 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja +@@ -0,0 +1,200 @@ ++# 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: livemarkdown ++# Configurations: RelWithDebInfo ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.8 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = RelWithDebInfo ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target livemarkdown ++ ++ ++############################################# ++# Order-only phony target for livemarkdown ++ ++build cmake_object_order_depends_target_livemarkdown: phony || CMakeFiles/livemarkdown.dir ++ ++build CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o: CXX_COMPILER__livemarkdown_RelWithDebInfo /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/OnLoad.cpp.o: CXX_COMPILER__livemarkdown_RelWithDebInfo /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/OnLoad.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o: CXX_COMPILER__livemarkdown_RelWithDebInfo /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb ++ ++build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o: CXX_COMPILER__livemarkdown_RelWithDebInfo /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp || cmake_object_order_depends_target_livemarkdown ++ DEFINES = -Dlivemarkdown_EXPORTS ++ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti ++ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target livemarkdown ++ ++ ++############################################# ++# Link the shared library /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so: CXX_SHARED_LIBRARY_LINKER__livemarkdown_RelWithDebInfo CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o | /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG ++ LINK_FLAGS = -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections ++ LINK_LIBRARIES = /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/livemarkdown.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = liblivemarkdown.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ ++ TARGET_FILE = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so ++ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build liblivemarkdown.so: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so ++ ++build livemarkdown: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 ++ ++build all: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Phony target to force glob verification run. ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake_force: phony ++ ++ ++############################################# ++# Re-run CMake to check if globbed directories changed. ++ ++build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake_force ++ pool = console ++ restat = 1 ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs | /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build_file_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build_file_index.txt +new file mode 100644 +index 0000000..7611c5b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build_file_index.txt +@@ -0,0 +1 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/cmake_install.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/cmake_install.cmake +new file mode 100644 +index 0000000..ac85925 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++ ++# 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 "RelWithDebInfo") ++ 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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json +new file mode 100644 +index 0000000..b49950e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json +@@ -0,0 +1,22 @@ ++[ ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json.bin +new file mode 100644 +index 0000000..7dca004 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json.bin differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/configure_fingerprint.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/configure_fingerprint.bin +new file mode 100644 +index 0000000..5f41588 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/configure_fingerprint.bin +@@ -0,0 +1,34 @@ ++C/C++ Structured Logª ++§ ++¤/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ئšú2  ЊŽú2§ ++¤ ++¡/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json  ئšú2 ÒŠŽú2¬ ++© ++¦/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build_mini.json  ئšú2Ý âŠŽú2™ ++– ++“/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja  ئšú2„Æ °ŠŽú2 ++š ++—/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja.txt  ئšú2¢ ++Ÿ ++œ/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build_file_index.txt  ئšú2‚ 抎ú2£ ++  ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json  Ù¦šú2œ9 °ŠŽú2§ ++¤ ++¡/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json.bin  Ù¦šú2 î °ŠŽú2­ ++ª ++§/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/metadata_generation_command.txt  Ù¦šú2 ++ü 抎ú2  ++ ++š/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/prefab_config.json  Ù¦šú2 î 抎ú2¥ ++¢ ++Ÿ/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/symbol_folder_index.txt  Ù¦šú2 ž 抎ú2ˆ ++… ++‚/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt  Ù¦šú2 š øÝÒ‹ú2Í ++Ê ++Ç/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json  Ù¦šú2Ç ++Ä ++Á/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json  Ù¦šú2Õ ++Ò ++Ï/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json  Ù¦šú2 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/metadata_generation_command.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/metadata_generation_command.txt +new file mode 100644 +index 0000000..d11732a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/metadata_generation_command.txt +@@ -0,0 +1,22 @@ ++ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp ++-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/chris/Library/Android/sdk/ndk/27.0.12077973 ++-DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 ++-DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 ++-DCMAKE_BUILD_TYPE=RelWithDebInfo ++-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab ++-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 ++-GNinja ++-DANDROID_STL=c++_shared ++-DANDROID_TOOLCHAIN=clang ++-DREACT_NATIVE_MINOR_VERSION=79 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/prefab_config.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/prefab_config.json +new file mode 100644 +index 0000000..39e2266 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/prefab_config.json +@@ -0,0 +1,10 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/release/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/release/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/symbol_folder_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/symbol_folder_index.txt +new file mode 100644 +index 0000000..83b3ee8 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..4b99466 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +@@ -0,0 +1,22 @@ ++[ ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/x86/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/x86/compile_commands.json +new file mode 100644 +index 0000000..02ced45 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/x86/compile_commands.json +@@ -0,0 +1,22 @@ ++[ ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/release/x86/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/release/x86/compile_commands.json +new file mode 100644 +index 0000000..b49950e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/release/x86/compile_commands.json +@@ -0,0 +1,22 @@ ++[ ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" ++}, ++{ ++ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", ++ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build.gradle b/node_modules/@expensify/react-native-live-markdown/android/build.gradle +index 01824d2..f96cc6a 100644 +--- a/node_modules/@expensify/react-native-live-markdown/android/build.gradle ++++ b/node_modules/@expensify/react-native-live-markdown/android/build.gradle +@@ -162,6 +162,10 @@ android { + "**/libreact_render*.so", + "**/librrc_root.so", + ] ++ ++ jniLibs { ++ useLegacyPackaging true ++ } + } + } + +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/results.bin b/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/transformed/classes/classes_dex/classes.dex b/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..c5db45d +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/buildConfig/debug/com/expensify/livemarkdown/BuildConfig.java b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/buildConfig/debug/com/expensify/livemarkdown/BuildConfig.java +new file mode 100644 +index 0000000..cbc40c5 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/buildConfig/debug/com/expensify/livemarkdown/BuildConfig.java +@@ -0,0 +1,12 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.expensify.livemarkdown; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.expensify.livemarkdown"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final int REACT_NATIVE_MINOR_VERSION = 79; ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.java b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.java +new file mode 100644 +index 0000000..19fea08 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.java +@@ -0,0 +1,37 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJavaSpec.js ++ * ++ * @nolint ++ */ ++ ++package com.expensify.livemarkdown; ++ ++import com.facebook.proguard.annotations.DoNotStrip; ++import com.facebook.react.bridge.ReactApplicationContext; ++import com.facebook.react.bridge.ReactContextBaseJavaModule; ++import com.facebook.react.bridge.ReactMethod; ++import com.facebook.react.turbomodule.core.interfaces.TurboModule; ++import javax.annotation.Nonnull; ++ ++public abstract class NativeLiveMarkdownModuleSpec extends ReactContextBaseJavaModule implements TurboModule { ++ public static final String NAME = "LiveMarkdownModule"; ++ ++ public NativeLiveMarkdownModuleSpec(ReactApplicationContext reactContext) { ++ super(reactContext); ++ } ++ ++ @Override ++ public @Nonnull String getName() { ++ return NAME; ++ } ++ ++ @ReactMethod(isBlockingSynchronousMethod = true) ++ @DoNotStrip ++ public abstract boolean install(); ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.java b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.java +new file mode 100644 +index 0000000..3870cb7 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.java +@@ -0,0 +1,36 @@ ++/** ++* 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.ReadableMap; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class MarkdownTextInputDecoratorViewManagerDelegate & MarkdownTextInputDecoratorViewManagerInterface> extends BaseViewManagerDelegate { ++ public MarkdownTextInputDecoratorViewManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "markdownStyle": ++ mViewManager.setMarkdownStyle(view, (ReadableMap) value); ++ break; ++ case "parserId": ++ mViewManager.setParserId(view, value == null ? 0 : ((Double) value).intValue()); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.java b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.java +new file mode 100644 +index 0000000..f9496f9 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.java +@@ -0,0 +1,20 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.bridge.ReadableMap; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface MarkdownTextInputDecoratorViewManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setMarkdownStyle(T view, @Nullable ReadableMap value); ++ void setParserId(T view, int value); ++} +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/CMakeLists.txt +new file mode 100644 +index 0000000..418bb30 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/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/RNLiveMarkdownSpec/*.cpp) ++ ++add_library( ++ react_codegen_RNLiveMarkdownSpec ++ OBJECT ++ ${react_codegen_SRCS} ++) ++ ++target_include_directories(react_codegen_RNLiveMarkdownSpec PUBLIC . react/renderer/components/RNLiveMarkdownSpec) ++ ++target_link_libraries( ++ react_codegen_RNLiveMarkdownSpec ++ 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_RNLiveMarkdownSpec ++ PRIVATE ++ -DLOG_TAG=\"ReactNative\" ++ -fexceptions ++ -frtti ++ -std=c++20 ++ -Wall ++) +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec-generated.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec-generated.cpp +new file mode 100644 +index 0000000..60adc7c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec-generated.cpp +@@ -0,0 +1,32 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJniCpp.js ++ */ ++ ++#include "RNLiveMarkdownSpec.h" ++ ++namespace facebook::react { ++ ++static facebook::jsi::Value __hostFunction_NativeLiveMarkdownModuleSpecJSI_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); ++} ++ ++NativeLiveMarkdownModuleSpecJSI::NativeLiveMarkdownModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) ++ : JavaTurboModule(params) { ++ methodMap_["install"] = MethodMetadata {0, __hostFunction_NativeLiveMarkdownModuleSpecJSI_install}; ++} ++ ++std::shared_ptr RNLiveMarkdownSpec_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { ++ if (moduleName == "LiveMarkdownModule") { ++ return std::make_shared(params); ++ } ++ return nullptr; ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec.h +new file mode 100644 +index 0000000..9f4c74b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec.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 'NativeLiveMarkdownModule' ++ */ ++class JSI_EXPORT NativeLiveMarkdownModuleSpecJSI : public JavaTurboModule { ++public: ++ NativeLiveMarkdownModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); ++}; ++ ++ ++JSI_EXPORT ++std::shared_ptr RNLiveMarkdownSpec_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.cpp +new file mode 100644 +index 0000000..0ecddda +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.cpp +@@ -0,0 +1,22 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateComponentDescriptorCpp.js ++ */ ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++void RNLiveMarkdownSpec_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry) { ++ ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.h +new file mode 100644 +index 0000000..f37f98f +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.h +@@ -0,0 +1,24 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateComponentDescriptorH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++void RNLiveMarkdownSpec_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry); ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.cpp +new file mode 100644 +index 0000000..c1a75b6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.cpp +@@ -0,0 +1,16 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateEventEmitterCpp.js ++ */ ++ ++#include ++ ++ ++namespace facebook::react { ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.h +new file mode 100644 +index 0000000..cc1635f +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.h +@@ -0,0 +1,23 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateEventEmitterH.js ++ */ ++#pragma once ++ ++#include ++ ++ ++namespace facebook::react { ++class MarkdownTextInputDecoratorViewEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.cpp +new file mode 100644 +index 0000000..eaef28b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.cpp +@@ -0,0 +1,26 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GeneratePropsCpp.js ++ */ ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++MarkdownTextInputDecoratorViewProps::MarkdownTextInputDecoratorViewProps( ++ const PropsParserContext &context, ++ const MarkdownTextInputDecoratorViewProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ markdownStyle(convertRawProp(context, rawProps, "markdownStyle", sourceProps.markdownStyle, {})), ++ parserId(convertRawProp(context, rawProps, "parserId", sourceProps.parserId, {0})) ++ {} ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.h +new file mode 100644 +index 0000000..a168620 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.h +@@ -0,0 +1,477 @@ ++ ++/** ++ * 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 ++#include ++ ++namespace facebook::react { ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct { ++ SharedColor color{}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_color = map.find("color"); ++ if (tmp_color != map.end()) { ++ fromRawValue(context, tmp_color->second, result.color); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct { ++ Float fontSize{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_fontSize = map.find("fontSize"); ++ if (tmp_fontSize != map.end()) { ++ fromRawValue(context, tmp_fontSize->second, result.fontSize); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct { ++ SharedColor color{}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_color = map.find("color"); ++ if (tmp_color != map.end()) { ++ fromRawValue(context, tmp_color->second, result.color); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleH1Struct { ++ Float fontSize{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleH1Struct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_fontSize = map.find("fontSize"); ++ if (tmp_fontSize != map.end()) { ++ fromRawValue(context, tmp_fontSize->second, result.fontSize); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleH1Struct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleH1Struct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct { ++ SharedColor borderColor{}; ++ Float borderWidth{0.0}; ++ Float marginLeft{0.0}; ++ Float paddingLeft{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_borderColor = map.find("borderColor"); ++ if (tmp_borderColor != map.end()) { ++ fromRawValue(context, tmp_borderColor->second, result.borderColor); ++ } ++ auto tmp_borderWidth = map.find("borderWidth"); ++ if (tmp_borderWidth != map.end()) { ++ fromRawValue(context, tmp_borderWidth->second, result.borderWidth); ++ } ++ auto tmp_marginLeft = map.find("marginLeft"); ++ if (tmp_marginLeft != map.end()) { ++ fromRawValue(context, tmp_marginLeft->second, result.marginLeft); ++ } ++ auto tmp_paddingLeft = map.find("paddingLeft"); ++ if (tmp_paddingLeft != map.end()) { ++ fromRawValue(context, tmp_paddingLeft->second, result.paddingLeft); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct { ++ std::string fontFamily{}; ++ Float fontSize{0.0}; ++ SharedColor color{}; ++ SharedColor backgroundColor{}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_fontFamily = map.find("fontFamily"); ++ if (tmp_fontFamily != map.end()) { ++ fromRawValue(context, tmp_fontFamily->second, result.fontFamily); ++ } ++ auto tmp_fontSize = map.find("fontSize"); ++ if (tmp_fontSize != map.end()) { ++ fromRawValue(context, tmp_fontSize->second, result.fontSize); ++ } ++ auto tmp_color = map.find("color"); ++ if (tmp_color != map.end()) { ++ fromRawValue(context, tmp_color->second, result.color); ++ } ++ auto tmp_backgroundColor = map.find("backgroundColor"); ++ if (tmp_backgroundColor != map.end()) { ++ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStylePreStruct { ++ std::string fontFamily{}; ++ Float fontSize{0.0}; ++ SharedColor color{}; ++ SharedColor backgroundColor{}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStylePreStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_fontFamily = map.find("fontFamily"); ++ if (tmp_fontFamily != map.end()) { ++ fromRawValue(context, tmp_fontFamily->second, result.fontFamily); ++ } ++ auto tmp_fontSize = map.find("fontSize"); ++ if (tmp_fontSize != map.end()) { ++ fromRawValue(context, tmp_fontSize->second, result.fontSize); ++ } ++ auto tmp_color = map.find("color"); ++ if (tmp_color != map.end()) { ++ fromRawValue(context, tmp_color->second, result.color); ++ } ++ auto tmp_backgroundColor = map.find("backgroundColor"); ++ if (tmp_backgroundColor != map.end()) { ++ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStylePreStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStylePreStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct { ++ SharedColor color{}; ++ SharedColor backgroundColor{}; ++ Float borderRadius{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_color = map.find("color"); ++ if (tmp_color != map.end()) { ++ fromRawValue(context, tmp_color->second, result.color); ++ } ++ auto tmp_backgroundColor = map.find("backgroundColor"); ++ if (tmp_backgroundColor != map.end()) { ++ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); ++ } ++ auto tmp_borderRadius = map.find("borderRadius"); ++ if (tmp_borderRadius != map.end()) { ++ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct { ++ SharedColor color{}; ++ SharedColor backgroundColor{}; ++ Float borderRadius{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_color = map.find("color"); ++ if (tmp_color != map.end()) { ++ fromRawValue(context, tmp_color->second, result.color); ++ } ++ auto tmp_backgroundColor = map.find("backgroundColor"); ++ if (tmp_backgroundColor != map.end()) { ++ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); ++ } ++ auto tmp_borderRadius = map.find("borderRadius"); ++ if (tmp_borderRadius != map.end()) { ++ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct { ++ SharedColor color{}; ++ SharedColor backgroundColor{}; ++ Float borderRadius{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_color = map.find("color"); ++ if (tmp_color != map.end()) { ++ fromRawValue(context, tmp_color->second, result.color); ++ } ++ auto tmp_backgroundColor = map.find("backgroundColor"); ++ if (tmp_backgroundColor != map.end()) { ++ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); ++ } ++ auto tmp_borderRadius = map.find("borderRadius"); ++ if (tmp_borderRadius != map.end()) { ++ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct { ++ Float minWidth{0.0}; ++ Float minHeight{0.0}; ++ Float maxWidth{0.0}; ++ Float maxHeight{0.0}; ++ Float marginTop{0.0}; ++ Float marginBottom{0.0}; ++ Float borderRadius{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_minWidth = map.find("minWidth"); ++ if (tmp_minWidth != map.end()) { ++ fromRawValue(context, tmp_minWidth->second, result.minWidth); ++ } ++ auto tmp_minHeight = map.find("minHeight"); ++ if (tmp_minHeight != map.end()) { ++ fromRawValue(context, tmp_minHeight->second, result.minHeight); ++ } ++ auto tmp_maxWidth = map.find("maxWidth"); ++ if (tmp_maxWidth != map.end()) { ++ fromRawValue(context, tmp_maxWidth->second, result.maxWidth); ++ } ++ auto tmp_maxHeight = map.find("maxHeight"); ++ if (tmp_maxHeight != map.end()) { ++ fromRawValue(context, tmp_maxHeight->second, result.maxHeight); ++ } ++ auto tmp_marginTop = map.find("marginTop"); ++ if (tmp_marginTop != map.end()) { ++ fromRawValue(context, tmp_marginTop->second, result.marginTop); ++ } ++ auto tmp_marginBottom = map.find("marginBottom"); ++ if (tmp_marginBottom != map.end()) { ++ fromRawValue(context, tmp_marginBottom->second, result.marginBottom); ++ } ++ auto tmp_borderRadius = map.find("borderRadius"); ++ if (tmp_borderRadius != map.end()) { ++ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct { ++ SharedColor backgroundColor{}; ++ Float borderWidth{0.0}; ++ SharedColor borderColor{}; ++ Float borderRadius{0.0}; ++ Float width{0.0}; ++ Float height{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_backgroundColor = map.find("backgroundColor"); ++ if (tmp_backgroundColor != map.end()) { ++ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); ++ } ++ auto tmp_borderWidth = map.find("borderWidth"); ++ if (tmp_borderWidth != map.end()) { ++ fromRawValue(context, tmp_borderWidth->second, result.borderWidth); ++ } ++ auto tmp_borderColor = map.find("borderColor"); ++ if (tmp_borderColor != map.end()) { ++ fromRawValue(context, tmp_borderColor->second, result.borderColor); ++ } ++ auto tmp_borderRadius = map.find("borderRadius"); ++ if (tmp_borderRadius != map.end()) { ++ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); ++ } ++ auto tmp_width = map.find("width"); ++ if (tmp_width != map.end()) { ++ fromRawValue(context, tmp_width->second, result.width); ++ } ++ auto tmp_height = map.find("height"); ++ if (tmp_height != map.end()) { ++ fromRawValue(context, tmp_height->second, result.height); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct { ++ SharedColor primaryColor{}; ++ SharedColor secondaryColor{}; ++ Float width{0.0}; ++ Float height{0.0}; ++ Float borderWidth{0.0}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_primaryColor = map.find("primaryColor"); ++ if (tmp_primaryColor != map.end()) { ++ fromRawValue(context, tmp_primaryColor->second, result.primaryColor); ++ } ++ auto tmp_secondaryColor = map.find("secondaryColor"); ++ if (tmp_secondaryColor != map.end()) { ++ fromRawValue(context, tmp_secondaryColor->second, result.secondaryColor); ++ } ++ auto tmp_width = map.find("width"); ++ if (tmp_width != map.end()) { ++ fromRawValue(context, tmp_width->second, result.width); ++ } ++ auto tmp_height = map.find("height"); ++ if (tmp_height != map.end()) { ++ fromRawValue(context, tmp_height->second, result.height); ++ } ++ auto tmp_borderWidth = map.find("borderWidth"); ++ if (tmp_borderWidth != map.end()) { ++ fromRawValue(context, tmp_borderWidth->second, result.borderWidth); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct]"; ++} ++ ++struct MarkdownTextInputDecoratorViewMarkdownStyleStruct { ++ MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct syntax{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct emoji{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct link{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleH1Struct h1{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct blockquote{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct code{}; ++ MarkdownTextInputDecoratorViewMarkdownStylePreStruct pre{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct mentionHere{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct mentionUser{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct mentionReport{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct inlineImage{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct loadingIndicatorContainer{}; ++ MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct loadingIndicator{}; ++}; ++ ++static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleStruct &result) { ++ auto map = (std::unordered_map)value; ++ ++ auto tmp_syntax = map.find("syntax"); ++ if (tmp_syntax != map.end()) { ++ fromRawValue(context, tmp_syntax->second, result.syntax); ++ } ++ auto tmp_emoji = map.find("emoji"); ++ if (tmp_emoji != map.end()) { ++ fromRawValue(context, tmp_emoji->second, result.emoji); ++ } ++ auto tmp_link = map.find("link"); ++ if (tmp_link != map.end()) { ++ fromRawValue(context, tmp_link->second, result.link); ++ } ++ auto tmp_h1 = map.find("h1"); ++ if (tmp_h1 != map.end()) { ++ fromRawValue(context, tmp_h1->second, result.h1); ++ } ++ auto tmp_blockquote = map.find("blockquote"); ++ if (tmp_blockquote != map.end()) { ++ fromRawValue(context, tmp_blockquote->second, result.blockquote); ++ } ++ auto tmp_code = map.find("code"); ++ if (tmp_code != map.end()) { ++ fromRawValue(context, tmp_code->second, result.code); ++ } ++ auto tmp_pre = map.find("pre"); ++ if (tmp_pre != map.end()) { ++ fromRawValue(context, tmp_pre->second, result.pre); ++ } ++ auto tmp_mentionHere = map.find("mentionHere"); ++ if (tmp_mentionHere != map.end()) { ++ fromRawValue(context, tmp_mentionHere->second, result.mentionHere); ++ } ++ auto tmp_mentionUser = map.find("mentionUser"); ++ if (tmp_mentionUser != map.end()) { ++ fromRawValue(context, tmp_mentionUser->second, result.mentionUser); ++ } ++ auto tmp_mentionReport = map.find("mentionReport"); ++ if (tmp_mentionReport != map.end()) { ++ fromRawValue(context, tmp_mentionReport->second, result.mentionReport); ++ } ++ auto tmp_inlineImage = map.find("inlineImage"); ++ if (tmp_inlineImage != map.end()) { ++ fromRawValue(context, tmp_inlineImage->second, result.inlineImage); ++ } ++ auto tmp_loadingIndicatorContainer = map.find("loadingIndicatorContainer"); ++ if (tmp_loadingIndicatorContainer != map.end()) { ++ fromRawValue(context, tmp_loadingIndicatorContainer->second, result.loadingIndicatorContainer); ++ } ++ auto tmp_loadingIndicator = map.find("loadingIndicator"); ++ if (tmp_loadingIndicator != map.end()) { ++ fromRawValue(context, tmp_loadingIndicator->second, result.loadingIndicator); ++ } ++} ++ ++static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleStruct &value) { ++ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleStruct]"; ++} ++class MarkdownTextInputDecoratorViewProps final : public ViewProps { ++ public: ++ MarkdownTextInputDecoratorViewProps() = default; ++ MarkdownTextInputDecoratorViewProps(const PropsParserContext& context, const MarkdownTextInputDecoratorViewProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ MarkdownTextInputDecoratorViewMarkdownStyleStruct markdownStyle{}; ++ int parserId{0}; ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI-generated.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI-generated.cpp +new file mode 100644 +index 0000000..f9b0646 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI-generated.cpp +@@ -0,0 +1,26 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleCpp.js ++ */ ++ ++#include "RNLiveMarkdownSpecJSI.h" ++ ++namespace facebook::react { ++ ++static jsi::Value __hostFunction_NativeLiveMarkdownModuleCxxSpecJSI_install(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { ++ return static_cast(&turboModule)->install( ++ rt ++ ); ++} ++ ++NativeLiveMarkdownModuleCxxSpecJSI::NativeLiveMarkdownModuleCxxSpecJSI(std::shared_ptr jsInvoker) ++ : TurboModule("LiveMarkdownModule", jsInvoker) { ++ methodMap_["install"] = MethodMetadata {0, __hostFunction_NativeLiveMarkdownModuleCxxSpecJSI_install}; ++} ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI.h +new file mode 100644 +index 0000000..138fddf +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI.h +@@ -0,0 +1,71 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ class JSI_EXPORT NativeLiveMarkdownModuleCxxSpecJSI : public TurboModule { ++protected: ++ NativeLiveMarkdownModuleCxxSpecJSI(std::shared_ptr jsInvoker); ++ ++public: ++ virtual bool install(jsi::Runtime &rt) = 0; ++ ++}; ++ ++template ++class JSI_EXPORT NativeLiveMarkdownModuleCxxSpec : 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 = "LiveMarkdownModule"; ++ ++protected: ++ NativeLiveMarkdownModuleCxxSpec(std::shared_ptr jsInvoker) ++ : TurboModule(std::string{NativeLiveMarkdownModuleCxxSpec::kModuleName}, jsInvoker), ++ delegate_(reinterpret_cast(this), jsInvoker) {} ++ ++ ++private: ++ class Delegate : public NativeLiveMarkdownModuleCxxSpecJSI { ++ public: ++ Delegate(T *instance, std::shared_ptr jsInvoker) : ++ NativeLiveMarkdownModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { ++ ++ } ++ ++ 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_); ++ } ++ ++ private: ++ friend class NativeLiveMarkdownModuleCxxSpec; ++ T *instance_; ++ }; ++ ++ Delegate delegate_; ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.cpp +new file mode 100644 +index 0000000..8381875 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.cpp +@@ -0,0 +1,17 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateShadowNodeCpp.js ++ */ ++ ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.h +new file mode 100644 +index 0000000..bf7077d +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.h +@@ -0,0 +1,23 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateShadowNodeH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.cpp +new file mode 100644 +index 0000000..0142182 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/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/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.h +new file mode 100644 +index 0000000..c011ed8 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.h +@@ -0,0 +1,19 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateStateH.js ++ */ ++#pragma once ++ ++#ifdef ANDROID ++#include ++#endif ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/schema.json b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/schema.json +new file mode 100644 +index 0000000..eaf006e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/schema.json +@@ -0,0 +1 @@ ++{"modules":{"MarkdownTextInputDecoratorView":{"type":"Component","components":{"MarkdownTextInputDecoratorView":{"interfaceOnly":true,"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"markdownStyle","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"syntax","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}}]}},{"name":"emoji","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"fontSize","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"link","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}}]}},{"name":"h1","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"fontSize","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"blockquote","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"borderColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderWidth","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"marginLeft","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"paddingLeft","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"code","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"fontFamily","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"fontSize","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}}]}},{"name":"pre","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"fontFamily","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"fontSize","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}}]}},{"name":"mentionHere","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderRadius","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"mentionUser","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderRadius","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"mentionReport","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderRadius","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"inlineImage","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"minWidth","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"minHeight","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"maxWidth","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"maxHeight","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"marginTop","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"marginBottom","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"borderRadius","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"loadingIndicatorContainer","optional":true,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"backgroundColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderWidth","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"borderColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderRadius","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"width","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"height","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"loadingIndicator","optional":true,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"primaryColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"secondaryColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"width","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"height","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"borderWidth","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}}]}},{"name":"parserId","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}}],"commands":[]}}},"NativeLiveMarkdownModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"install","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"BooleanTypeAnnotation"},"params":[]}}]},"moduleName":"LiveMarkdownModule"}}} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..647d884 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..054fe6b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/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.expensify.livemarkdown", ++ "variantName": "debug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..19b00ac +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..8cdb310 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..36643ab +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +@@ -0,0 +1,1996 @@ ++int anim abc_fade_in 0x0 ++int anim abc_fade_out 0x0 ++int anim abc_grow_fade_in_from_bottom 0x0 ++int anim abc_popup_enter 0x0 ++int anim abc_popup_exit 0x0 ++int anim abc_shrink_fade_out_from_bottom 0x0 ++int anim abc_slide_in_bottom 0x0 ++int anim abc_slide_in_top 0x0 ++int anim abc_slide_out_bottom 0x0 ++int anim abc_slide_out_top 0x0 ++int anim abc_tooltip_enter 0x0 ++int anim abc_tooltip_exit 0x0 ++int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 ++int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 ++int anim btn_checkbox_to_checked_icon_null_animation 0x0 ++int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 ++int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 ++int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 ++int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 ++int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 ++int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 ++int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 ++int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 ++int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 ++int anim catalyst_fade_in 0x0 ++int anim catalyst_fade_out 0x0 ++int anim catalyst_push_up_in 0x0 ++int anim catalyst_push_up_out 0x0 ++int anim catalyst_slide_down 0x0 ++int anim catalyst_slide_up 0x0 ++int anim fragment_fast_out_extra_slow_in 0x0 ++int animator fragment_close_enter 0x0 ++int animator fragment_close_exit 0x0 ++int animator fragment_fade_enter 0x0 ++int animator fragment_fade_exit 0x0 ++int animator fragment_open_enter 0x0 ++int animator fragment_open_exit 0x0 ++int attr actionBarDivider 0x0 ++int attr actionBarItemBackground 0x0 ++int attr actionBarPopupTheme 0x0 ++int attr actionBarSize 0x0 ++int attr actionBarSplitStyle 0x0 ++int attr actionBarStyle 0x0 ++int attr actionBarTabBarStyle 0x0 ++int attr actionBarTabStyle 0x0 ++int attr actionBarTabTextStyle 0x0 ++int attr actionBarTheme 0x0 ++int attr actionBarWidgetTheme 0x0 ++int attr actionButtonStyle 0x0 ++int attr actionDropDownStyle 0x0 ++int attr actionLayout 0x0 ++int attr actionMenuTextAppearance 0x0 ++int attr actionMenuTextColor 0x0 ++int attr actionModeBackground 0x0 ++int attr actionModeCloseButtonStyle 0x0 ++int attr actionModeCloseContentDescription 0x0 ++int attr actionModeCloseDrawable 0x0 ++int attr actionModeCopyDrawable 0x0 ++int attr actionModeCutDrawable 0x0 ++int attr actionModeFindDrawable 0x0 ++int attr actionModePasteDrawable 0x0 ++int attr actionModePopupWindowStyle 0x0 ++int attr actionModeSelectAllDrawable 0x0 ++int attr actionModeShareDrawable 0x0 ++int attr actionModeSplitBackground 0x0 ++int attr actionModeStyle 0x0 ++int attr actionModeTheme 0x0 ++int attr actionModeWebSearchDrawable 0x0 ++int attr actionOverflowButtonStyle 0x0 ++int attr actionOverflowMenuStyle 0x0 ++int attr actionProviderClass 0x0 ++int attr actionViewClass 0x0 ++int attr activityChooserViewStyle 0x0 ++int attr actualImageResource 0x0 ++int attr actualImageScaleType 0x0 ++int attr actualImageUri 0x0 ++int attr alertDialogButtonGroupStyle 0x0 ++int attr alertDialogCenterButtons 0x0 ++int attr alertDialogStyle 0x0 ++int attr alertDialogTheme 0x0 ++int attr allowStacking 0x0 ++int attr alpha 0x0 ++int attr alphabeticModifiers 0x0 ++int attr arrowHeadLength 0x0 ++int attr arrowShaftLength 0x0 ++int attr autoCompleteTextViewStyle 0x0 ++int attr autoSizeMaxTextSize 0x0 ++int attr autoSizeMinTextSize 0x0 ++int attr autoSizePresetSizes 0x0 ++int attr autoSizeStepGranularity 0x0 ++int attr autoSizeTextType 0x0 ++int attr autofillInlineSuggestionChip 0x0 ++int attr autofillInlineSuggestionEndIconStyle 0x0 ++int attr autofillInlineSuggestionStartIconStyle 0x0 ++int attr autofillInlineSuggestionSubtitle 0x0 ++int attr autofillInlineSuggestionTitle 0x0 ++int attr background 0x0 ++int attr backgroundImage 0x0 ++int attr backgroundSplit 0x0 ++int attr backgroundStacked 0x0 ++int attr backgroundTint 0x0 ++int attr backgroundTintMode 0x0 ++int attr barLength 0x0 ++int attr borderlessButtonStyle 0x0 ++int attr buttonBarButtonStyle 0x0 ++int attr buttonBarNegativeButtonStyle 0x0 ++int attr buttonBarNeutralButtonStyle 0x0 ++int attr buttonBarPositiveButtonStyle 0x0 ++int attr buttonBarStyle 0x0 ++int attr buttonCompat 0x0 ++int attr buttonGravity 0x0 ++int attr buttonIconDimen 0x0 ++int attr buttonPanelSideLayout 0x0 ++int attr buttonStyle 0x0 ++int attr buttonStyleSmall 0x0 ++int attr buttonTint 0x0 ++int attr buttonTintMode 0x0 ++int attr checkMarkCompat 0x0 ++int attr checkMarkTint 0x0 ++int attr checkMarkTintMode 0x0 ++int attr checkboxStyle 0x0 ++int attr checkedTextViewStyle 0x0 ++int attr closeIcon 0x0 ++int attr closeItemLayout 0x0 ++int attr collapseContentDescription 0x0 ++int attr collapseIcon 0x0 ++int attr color 0x0 ++int attr colorAccent 0x0 ++int attr colorBackgroundFloating 0x0 ++int attr colorButtonNormal 0x0 ++int attr colorControlActivated 0x0 ++int attr colorControlHighlight 0x0 ++int attr colorControlNormal 0x0 ++int attr colorError 0x0 ++int attr colorPrimary 0x0 ++int attr colorPrimaryDark 0x0 ++int attr colorSwitchThumbNormal 0x0 ++int attr commitIcon 0x0 ++int attr contentDescription 0x0 ++int attr contentInsetEnd 0x0 ++int attr contentInsetEndWithActions 0x0 ++int attr contentInsetLeft 0x0 ++int attr contentInsetRight 0x0 ++int attr contentInsetStart 0x0 ++int attr contentInsetStartWithNavigation 0x0 ++int attr controlBackground 0x0 ++int attr customNavigationLayout 0x0 ++int attr defaultQueryHint 0x0 ++int attr dialogCornerRadius 0x0 ++int attr dialogPreferredPadding 0x0 ++int attr dialogTheme 0x0 ++int attr displayOptions 0x0 ++int attr divider 0x0 ++int attr dividerHorizontal 0x0 ++int attr dividerPadding 0x0 ++int attr dividerVertical 0x0 ++int attr drawableBottomCompat 0x0 ++int attr drawableEndCompat 0x0 ++int attr drawableLeftCompat 0x0 ++int attr drawableRightCompat 0x0 ++int attr drawableSize 0x0 ++int attr drawableStartCompat 0x0 ++int attr drawableTint 0x0 ++int attr drawableTintMode 0x0 ++int attr drawableTopCompat 0x0 ++int attr drawerArrowStyle 0x0 ++int attr dropDownListViewStyle 0x0 ++int attr dropdownListPreferredItemHeight 0x0 ++int attr editTextBackground 0x0 ++int attr editTextColor 0x0 ++int attr editTextStyle 0x0 ++int attr elevation 0x0 ++int attr emojiCompatEnabled 0x0 ++int attr expandActivityOverflowButtonDrawable 0x0 ++int attr fadeDuration 0x0 ++int attr failureImage 0x0 ++int attr failureImageScaleType 0x0 ++int attr firstBaselineToTopHeight 0x0 ++int attr font 0x0 ++int attr fontFamily 0x0 ++int attr fontProviderAuthority 0x0 ++int attr fontProviderCerts 0x0 ++int attr fontProviderFetchStrategy 0x0 ++int attr fontProviderFetchTimeout 0x0 ++int attr fontProviderPackage 0x0 ++int attr fontProviderQuery 0x0 ++int attr fontProviderSystemFontFamily 0x0 ++int attr fontStyle 0x0 ++int attr fontVariationSettings 0x0 ++int attr fontWeight 0x0 ++int attr gapBetweenBars 0x0 ++int attr goIcon 0x0 ++int attr height 0x0 ++int attr hideOnContentScroll 0x0 ++int attr homeAsUpIndicator 0x0 ++int attr homeLayout 0x0 ++int attr icon 0x0 ++int attr iconTint 0x0 ++int attr iconTintMode 0x0 ++int attr iconifiedByDefault 0x0 ++int attr imageButtonStyle 0x0 ++int attr indeterminateProgressStyle 0x0 ++int attr initialActivityCount 0x0 ++int attr isAutofillInlineSuggestionTheme 0x0 ++int attr isLightTheme 0x0 ++int attr itemPadding 0x0 ++int attr lStar 0x0 ++int attr lastBaselineToBottomHeight 0x0 ++int attr layout 0x0 ++int attr lineHeight 0x0 ++int attr listChoiceBackgroundIndicator 0x0 ++int attr listChoiceIndicatorMultipleAnimated 0x0 ++int attr listChoiceIndicatorSingleAnimated 0x0 ++int attr listDividerAlertDialog 0x0 ++int attr listItemLayout 0x0 ++int attr listLayout 0x0 ++int attr listMenuViewStyle 0x0 ++int attr listPopupWindowStyle 0x0 ++int attr listPreferredItemHeight 0x0 ++int attr listPreferredItemHeightLarge 0x0 ++int attr listPreferredItemHeightSmall 0x0 ++int attr listPreferredItemPaddingEnd 0x0 ++int attr listPreferredItemPaddingLeft 0x0 ++int attr listPreferredItemPaddingRight 0x0 ++int attr listPreferredItemPaddingStart 0x0 ++int attr logo 0x0 ++int attr logoDescription 0x0 ++int attr maxButtonHeight 0x0 ++int attr measureWithLargestChild 0x0 ++int attr menu 0x0 ++int attr multiChoiceItemLayout 0x0 ++int attr navigationContentDescription 0x0 ++int attr navigationIcon 0x0 ++int attr navigationMode 0x0 ++int attr nestedScrollViewStyle 0x0 ++int attr numericModifiers 0x0 ++int attr overlapAnchor 0x0 ++int attr overlayImage 0x0 ++int attr paddingBottomNoButtons 0x0 ++int attr paddingEnd 0x0 ++int attr paddingStart 0x0 ++int attr paddingTopNoTitle 0x0 ++int attr panelBackground 0x0 ++int attr panelMenuListTheme 0x0 ++int attr panelMenuListWidth 0x0 ++int attr placeholderImage 0x0 ++int attr placeholderImageScaleType 0x0 ++int attr popupMenuStyle 0x0 ++int attr popupTheme 0x0 ++int attr popupWindowStyle 0x0 ++int attr preserveIconSpacing 0x0 ++int attr pressedStateOverlayImage 0x0 ++int attr progressBarAutoRotateInterval 0x0 ++int attr progressBarImage 0x0 ++int attr progressBarImageScaleType 0x0 ++int attr progressBarPadding 0x0 ++int attr progressBarStyle 0x0 ++int attr queryBackground 0x0 ++int attr queryHint 0x0 ++int attr queryPatterns 0x0 ++int attr radioButtonStyle 0x0 ++int attr ratingBarStyle 0x0 ++int attr ratingBarStyleIndicator 0x0 ++int attr ratingBarStyleSmall 0x0 ++int attr retryImage 0x0 ++int attr retryImageScaleType 0x0 ++int attr roundAsCircle 0x0 ++int attr roundBottomEnd 0x0 ++int attr roundBottomLeft 0x0 ++int attr roundBottomRight 0x0 ++int attr roundBottomStart 0x0 ++int attr roundTopEnd 0x0 ++int attr roundTopLeft 0x0 ++int attr roundTopRight 0x0 ++int attr roundTopStart 0x0 ++int attr roundWithOverlayColor 0x0 ++int attr roundedCornerRadius 0x0 ++int attr roundingBorderColor 0x0 ++int attr roundingBorderPadding 0x0 ++int attr roundingBorderWidth 0x0 ++int attr searchHintIcon 0x0 ++int attr searchIcon 0x0 ++int attr searchViewStyle 0x0 ++int attr seekBarStyle 0x0 ++int attr selectableItemBackground 0x0 ++int attr selectableItemBackgroundBorderless 0x0 ++int attr shortcutMatchRequired 0x0 ++int attr showAsAction 0x0 ++int attr showDividers 0x0 ++int attr showText 0x0 ++int attr showTitle 0x0 ++int attr singleChoiceItemLayout 0x0 ++int attr spinBars 0x0 ++int attr spinnerDropDownItemStyle 0x0 ++int attr spinnerStyle 0x0 ++int attr splitTrack 0x0 ++int attr srcCompat 0x0 ++int attr state_above_anchor 0x0 ++int attr subMenuArrow 0x0 ++int attr submitBackground 0x0 ++int attr subtitle 0x0 ++int attr subtitleTextAppearance 0x0 ++int attr subtitleTextColor 0x0 ++int attr subtitleTextStyle 0x0 ++int attr suggestionRowLayout 0x0 ++int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 ++int attr switchMinWidth 0x0 ++int attr switchPadding 0x0 ++int attr switchStyle 0x0 ++int attr switchTextAppearance 0x0 ++int attr textAllCaps 0x0 ++int attr textAppearanceLargePopupMenu 0x0 ++int attr textAppearanceListItem 0x0 ++int attr textAppearanceListItemSecondary 0x0 ++int attr textAppearanceListItemSmall 0x0 ++int attr textAppearancePopupMenuHeader 0x0 ++int attr textAppearanceSearchResultSubtitle 0x0 ++int attr textAppearanceSearchResultTitle 0x0 ++int attr textAppearanceSmallPopupMenu 0x0 ++int attr textColorAlertDialogListItem 0x0 ++int attr textColorSearchUrl 0x0 ++int attr textLocale 0x0 ++int attr theme 0x0 ++int attr thickness 0x0 ++int attr thumbTextPadding 0x0 ++int attr thumbTint 0x0 ++int attr thumbTintMode 0x0 ++int attr tickMark 0x0 ++int attr tickMarkTint 0x0 ++int attr tickMarkTintMode 0x0 ++int attr tint 0x0 ++int attr tintMode 0x0 ++int attr title 0x0 ++int attr titleMargin 0x0 ++int attr titleMarginBottom 0x0 ++int attr titleMarginEnd 0x0 ++int attr titleMarginStart 0x0 ++int attr titleMarginTop 0x0 ++int attr titleMargins 0x0 ++int attr titleTextAppearance 0x0 ++int attr titleTextColor 0x0 ++int attr titleTextStyle 0x0 ++int attr toolbarNavigationButtonStyle 0x0 ++int attr toolbarStyle 0x0 ++int attr tooltipForegroundColor 0x0 ++int attr tooltipFrameBackground 0x0 ++int attr tooltipText 0x0 ++int attr track 0x0 ++int attr trackTint 0x0 ++int attr trackTintMode 0x0 ++int attr ttcIndex 0x0 ++int attr viewAspectRatio 0x0 ++int attr viewInflaterClass 0x0 ++int attr voiceIcon 0x0 ++int attr windowActionBar 0x0 ++int attr windowActionBarOverlay 0x0 ++int attr windowActionModeOverlay 0x0 ++int attr windowFixedHeightMajor 0x0 ++int attr windowFixedHeightMinor 0x0 ++int attr windowFixedWidthMajor 0x0 ++int attr windowFixedWidthMinor 0x0 ++int attr windowMinWidthMajor 0x0 ++int attr windowMinWidthMinor 0x0 ++int attr windowNoTitle 0x0 ++int bool abc_action_bar_embed_tabs 0x0 ++int bool abc_config_actionMenuItemAllCaps 0x0 ++int color abc_background_cache_hint_selector_material_dark 0x0 ++int color abc_background_cache_hint_selector_material_light 0x0 ++int color abc_btn_colored_borderless_text_material 0x0 ++int color abc_btn_colored_text_material 0x0 ++int color abc_color_highlight_material 0x0 ++int color abc_decor_view_status_guard 0x0 ++int color abc_decor_view_status_guard_light 0x0 ++int color abc_hint_foreground_material_dark 0x0 ++int color abc_hint_foreground_material_light 0x0 ++int color abc_primary_text_disable_only_material_dark 0x0 ++int color abc_primary_text_disable_only_material_light 0x0 ++int color abc_primary_text_material_dark 0x0 ++int color abc_primary_text_material_light 0x0 ++int color abc_search_url_text 0x0 ++int color abc_search_url_text_normal 0x0 ++int color abc_search_url_text_pressed 0x0 ++int color abc_search_url_text_selected 0x0 ++int color abc_secondary_text_material_dark 0x0 ++int color abc_secondary_text_material_light 0x0 ++int color abc_tint_btn_checkable 0x0 ++int color abc_tint_default 0x0 ++int color abc_tint_edittext 0x0 ++int color abc_tint_seek_thumb 0x0 ++int color abc_tint_spinner 0x0 ++int color abc_tint_switch_track 0x0 ++int color accent_material_dark 0x0 ++int color accent_material_light 0x0 ++int color androidx_core_ripple_material_light 0x0 ++int color androidx_core_secondary_text_default_material_light 0x0 ++int color background_floating_material_dark 0x0 ++int color background_floating_material_light 0x0 ++int color background_material_dark 0x0 ++int color background_material_light 0x0 ++int color bright_foreground_disabled_material_dark 0x0 ++int color bright_foreground_disabled_material_light 0x0 ++int color bright_foreground_inverse_material_dark 0x0 ++int color bright_foreground_inverse_material_light 0x0 ++int color bright_foreground_material_dark 0x0 ++int color bright_foreground_material_light 0x0 ++int color button_material_dark 0x0 ++int color button_material_light 0x0 ++int color call_notification_answer_color 0x0 ++int color call_notification_decline_color 0x0 ++int color catalyst_logbox_background 0x0 ++int color catalyst_redbox_background 0x0 ++int color dim_foreground_disabled_material_dark 0x0 ++int color dim_foreground_disabled_material_light 0x0 ++int color dim_foreground_material_dark 0x0 ++int color dim_foreground_material_light 0x0 ++int color error_color_material_dark 0x0 ++int color error_color_material_light 0x0 ++int color foreground_material_dark 0x0 ++int color foreground_material_light 0x0 ++int color highlighted_text_material_dark 0x0 ++int color highlighted_text_material_light 0x0 ++int color material_blue_grey_800 0x0 ++int color material_blue_grey_900 0x0 ++int color material_blue_grey_950 0x0 ++int color material_deep_teal_200 0x0 ++int color material_deep_teal_500 0x0 ++int color material_grey_100 0x0 ++int color material_grey_300 0x0 ++int color material_grey_50 0x0 ++int color material_grey_600 0x0 ++int color material_grey_800 0x0 ++int color material_grey_850 0x0 ++int color material_grey_900 0x0 ++int color notification_action_color_filter 0x0 ++int color notification_icon_bg_color 0x0 ++int color primary_dark_material_dark 0x0 ++int color primary_dark_material_light 0x0 ++int color primary_material_dark 0x0 ++int color primary_material_light 0x0 ++int color primary_text_default_material_dark 0x0 ++int color primary_text_default_material_light 0x0 ++int color primary_text_disabled_material_dark 0x0 ++int color primary_text_disabled_material_light 0x0 ++int color ripple_material_dark 0x0 ++int color ripple_material_light 0x0 ++int color secondary_text_default_material_dark 0x0 ++int color secondary_text_default_material_light 0x0 ++int color secondary_text_disabled_material_dark 0x0 ++int color secondary_text_disabled_material_light 0x0 ++int color switch_thumb_disabled_material_dark 0x0 ++int color switch_thumb_disabled_material_light 0x0 ++int color switch_thumb_material_dark 0x0 ++int color switch_thumb_material_light 0x0 ++int color switch_thumb_normal_material_dark 0x0 ++int color switch_thumb_normal_material_light 0x0 ++int color tooltip_background_dark 0x0 ++int color tooltip_background_light 0x0 ++int dimen abc_action_bar_content_inset_material 0x0 ++int dimen abc_action_bar_content_inset_with_nav 0x0 ++int dimen abc_action_bar_default_height_material 0x0 ++int dimen abc_action_bar_default_padding_end_material 0x0 ++int dimen abc_action_bar_default_padding_start_material 0x0 ++int dimen abc_action_bar_elevation_material 0x0 ++int dimen abc_action_bar_icon_vertical_padding_material 0x0 ++int dimen abc_action_bar_overflow_padding_end_material 0x0 ++int dimen abc_action_bar_overflow_padding_start_material 0x0 ++int dimen abc_action_bar_stacked_max_height 0x0 ++int dimen abc_action_bar_stacked_tab_max_width 0x0 ++int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 ++int dimen abc_action_bar_subtitle_top_margin_material 0x0 ++int dimen abc_action_button_min_height_material 0x0 ++int dimen abc_action_button_min_width_material 0x0 ++int dimen abc_action_button_min_width_overflow_material 0x0 ++int dimen abc_alert_dialog_button_bar_height 0x0 ++int dimen abc_alert_dialog_button_dimen 0x0 ++int dimen abc_button_inset_horizontal_material 0x0 ++int dimen abc_button_inset_vertical_material 0x0 ++int dimen abc_button_padding_horizontal_material 0x0 ++int dimen abc_button_padding_vertical_material 0x0 ++int dimen abc_cascading_menus_min_smallest_width 0x0 ++int dimen abc_config_prefDialogWidth 0x0 ++int dimen abc_control_corner_material 0x0 ++int dimen abc_control_inset_material 0x0 ++int dimen abc_control_padding_material 0x0 ++int dimen abc_dialog_corner_radius_material 0x0 ++int dimen abc_dialog_fixed_height_major 0x0 ++int dimen abc_dialog_fixed_height_minor 0x0 ++int dimen abc_dialog_fixed_width_major 0x0 ++int dimen abc_dialog_fixed_width_minor 0x0 ++int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 ++int dimen abc_dialog_list_padding_top_no_title 0x0 ++int dimen abc_dialog_min_width_major 0x0 ++int dimen abc_dialog_min_width_minor 0x0 ++int dimen abc_dialog_padding_material 0x0 ++int dimen abc_dialog_padding_top_material 0x0 ++int dimen abc_dialog_title_divider_material 0x0 ++int dimen abc_disabled_alpha_material_dark 0x0 ++int dimen abc_disabled_alpha_material_light 0x0 ++int dimen abc_dropdownitem_icon_width 0x0 ++int dimen abc_dropdownitem_text_padding_left 0x0 ++int dimen abc_dropdownitem_text_padding_right 0x0 ++int dimen abc_edit_text_inset_bottom_material 0x0 ++int dimen abc_edit_text_inset_horizontal_material 0x0 ++int dimen abc_edit_text_inset_top_material 0x0 ++int dimen abc_floating_window_z 0x0 ++int dimen abc_list_item_height_large_material 0x0 ++int dimen abc_list_item_height_material 0x0 ++int dimen abc_list_item_height_small_material 0x0 ++int dimen abc_list_item_padding_horizontal_material 0x0 ++int dimen abc_panel_menu_list_width 0x0 ++int dimen abc_progress_bar_height_material 0x0 ++int dimen abc_search_view_preferred_height 0x0 ++int dimen abc_search_view_preferred_width 0x0 ++int dimen abc_seekbar_track_background_height_material 0x0 ++int dimen abc_seekbar_track_progress_height_material 0x0 ++int dimen abc_select_dialog_padding_start_material 0x0 ++int dimen abc_star_big 0x0 ++int dimen abc_star_medium 0x0 ++int dimen abc_star_small 0x0 ++int dimen abc_switch_padding 0x0 ++int dimen abc_text_size_body_1_material 0x0 ++int dimen abc_text_size_body_2_material 0x0 ++int dimen abc_text_size_button_material 0x0 ++int dimen abc_text_size_caption_material 0x0 ++int dimen abc_text_size_display_1_material 0x0 ++int dimen abc_text_size_display_2_material 0x0 ++int dimen abc_text_size_display_3_material 0x0 ++int dimen abc_text_size_display_4_material 0x0 ++int dimen abc_text_size_headline_material 0x0 ++int dimen abc_text_size_large_material 0x0 ++int dimen abc_text_size_medium_material 0x0 ++int dimen abc_text_size_menu_header_material 0x0 ++int dimen abc_text_size_menu_material 0x0 ++int dimen abc_text_size_small_material 0x0 ++int dimen abc_text_size_subhead_material 0x0 ++int dimen abc_text_size_subtitle_material_toolbar 0x0 ++int dimen abc_text_size_title_material 0x0 ++int dimen abc_text_size_title_material_toolbar 0x0 ++int dimen autofill_inline_suggestion_icon_size 0x0 ++int dimen compat_button_inset_horizontal_material 0x0 ++int dimen compat_button_inset_vertical_material 0x0 ++int dimen compat_button_padding_horizontal_material 0x0 ++int dimen compat_button_padding_vertical_material 0x0 ++int dimen compat_control_corner_material 0x0 ++int dimen compat_notification_large_icon_max_height 0x0 ++int dimen compat_notification_large_icon_max_width 0x0 ++int dimen disabled_alpha_material_dark 0x0 ++int dimen disabled_alpha_material_light 0x0 ++int dimen highlight_alpha_material_colored 0x0 ++int dimen highlight_alpha_material_dark 0x0 ++int dimen highlight_alpha_material_light 0x0 ++int dimen hint_alpha_material_dark 0x0 ++int dimen hint_alpha_material_light 0x0 ++int dimen hint_pressed_alpha_material_dark 0x0 ++int dimen hint_pressed_alpha_material_light 0x0 ++int dimen notification_action_icon_size 0x0 ++int dimen notification_action_text_size 0x0 ++int dimen notification_big_circle_margin 0x0 ++int dimen notification_content_margin_start 0x0 ++int dimen notification_large_icon_height 0x0 ++int dimen notification_large_icon_width 0x0 ++int dimen notification_main_column_padding_top 0x0 ++int dimen notification_media_narrow_margin 0x0 ++int dimen notification_right_icon_size 0x0 ++int dimen notification_right_side_padding_top 0x0 ++int dimen notification_small_icon_background_padding 0x0 ++int dimen notification_small_icon_size_as_large 0x0 ++int dimen notification_subtext_size 0x0 ++int dimen notification_top_pad 0x0 ++int dimen notification_top_pad_large_text 0x0 ++int dimen tooltip_corner_radius 0x0 ++int dimen tooltip_horizontal_padding 0x0 ++int dimen tooltip_margin 0x0 ++int dimen tooltip_precise_anchor_extra_offset 0x0 ++int dimen tooltip_precise_anchor_threshold 0x0 ++int dimen tooltip_vertical_padding 0x0 ++int dimen tooltip_y_offset_non_touch 0x0 ++int dimen tooltip_y_offset_touch 0x0 ++int drawable abc_ab_share_pack_mtrl_alpha 0x0 ++int drawable abc_action_bar_item_background_material 0x0 ++int drawable abc_btn_borderless_material 0x0 ++int drawable abc_btn_check_material 0x0 ++int drawable abc_btn_check_material_anim 0x0 ++int drawable abc_btn_check_to_on_mtrl_000 0x0 ++int drawable abc_btn_check_to_on_mtrl_015 0x0 ++int drawable abc_btn_colored_material 0x0 ++int drawable abc_btn_default_mtrl_shape 0x0 ++int drawable abc_btn_radio_material 0x0 ++int drawable abc_btn_radio_material_anim 0x0 ++int drawable abc_btn_radio_to_on_mtrl_000 0x0 ++int drawable abc_btn_radio_to_on_mtrl_015 0x0 ++int drawable abc_btn_switch_to_on_mtrl_00001 0x0 ++int drawable abc_btn_switch_to_on_mtrl_00012 0x0 ++int drawable abc_cab_background_internal_bg 0x0 ++int drawable abc_cab_background_top_material 0x0 ++int drawable abc_cab_background_top_mtrl_alpha 0x0 ++int drawable abc_control_background_material 0x0 ++int drawable abc_dialog_material_background 0x0 ++int drawable abc_edit_text_material 0x0 ++int drawable abc_ic_ab_back_material 0x0 ++int drawable abc_ic_arrow_drop_right_black_24dp 0x0 ++int drawable abc_ic_clear_material 0x0 ++int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 ++int drawable abc_ic_go_search_api_material 0x0 ++int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 ++int drawable abc_ic_menu_cut_mtrl_alpha 0x0 ++int drawable abc_ic_menu_overflow_material 0x0 ++int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 ++int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 ++int drawable abc_ic_menu_share_mtrl_alpha 0x0 ++int drawable abc_ic_search_api_material 0x0 ++int drawable abc_ic_voice_search_api_material 0x0 ++int drawable abc_item_background_holo_dark 0x0 ++int drawable abc_item_background_holo_light 0x0 ++int drawable abc_list_divider_material 0x0 ++int drawable abc_list_divider_mtrl_alpha 0x0 ++int drawable abc_list_focused_holo 0x0 ++int drawable abc_list_longpressed_holo 0x0 ++int drawable abc_list_pressed_holo_dark 0x0 ++int drawable abc_list_pressed_holo_light 0x0 ++int drawable abc_list_selector_background_transition_holo_dark 0x0 ++int drawable abc_list_selector_background_transition_holo_light 0x0 ++int drawable abc_list_selector_disabled_holo_dark 0x0 ++int drawable abc_list_selector_disabled_holo_light 0x0 ++int drawable abc_list_selector_holo_dark 0x0 ++int drawable abc_list_selector_holo_light 0x0 ++int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 ++int drawable abc_popup_background_mtrl_mult 0x0 ++int drawable abc_ratingbar_indicator_material 0x0 ++int drawable abc_ratingbar_material 0x0 ++int drawable abc_ratingbar_small_material 0x0 ++int drawable abc_scrubber_control_off_mtrl_alpha 0x0 ++int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 ++int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 ++int drawable abc_scrubber_primary_mtrl_alpha 0x0 ++int drawable abc_scrubber_track_mtrl_alpha 0x0 ++int drawable abc_seekbar_thumb_material 0x0 ++int drawable abc_seekbar_tick_mark_material 0x0 ++int drawable abc_seekbar_track_material 0x0 ++int drawable abc_spinner_mtrl_am_alpha 0x0 ++int drawable abc_spinner_textfield_background_material 0x0 ++int drawable abc_star_black_48dp 0x0 ++int drawable abc_star_half_black_48dp 0x0 ++int drawable abc_switch_thumb_material 0x0 ++int drawable abc_switch_track_mtrl_alpha 0x0 ++int drawable abc_tab_indicator_material 0x0 ++int drawable abc_tab_indicator_mtrl_alpha 0x0 ++int drawable abc_text_cursor_material 0x0 ++int drawable abc_text_select_handle_left_mtrl 0x0 ++int drawable abc_text_select_handle_middle_mtrl 0x0 ++int drawable abc_text_select_handle_right_mtrl 0x0 ++int drawable abc_textfield_activated_mtrl_alpha 0x0 ++int drawable abc_textfield_default_mtrl_alpha 0x0 ++int drawable abc_textfield_search_activated_mtrl_alpha 0x0 ++int drawable abc_textfield_search_default_mtrl_alpha 0x0 ++int drawable abc_textfield_search_material 0x0 ++int drawable abc_vector_test 0x0 ++int drawable autofill_inline_suggestion_chip_background 0x0 ++int drawable btn_checkbox_checked_mtrl 0x0 ++int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 ++int drawable btn_checkbox_unchecked_mtrl 0x0 ++int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 ++int drawable btn_radio_off_mtrl 0x0 ++int drawable btn_radio_off_to_on_mtrl_animation 0x0 ++int drawable btn_radio_on_mtrl 0x0 ++int drawable btn_radio_on_to_off_mtrl_animation 0x0 ++int drawable ic_call_answer 0x0 ++int drawable ic_call_answer_low 0x0 ++int drawable ic_call_answer_video 0x0 ++int drawable ic_call_answer_video_low 0x0 ++int drawable ic_call_decline 0x0 ++int drawable ic_call_decline_low 0x0 ++int drawable ic_resume 0x0 ++int drawable notification_action_background 0x0 ++int drawable notification_bg 0x0 ++int drawable notification_bg_low 0x0 ++int drawable notification_bg_low_normal 0x0 ++int drawable notification_bg_low_pressed 0x0 ++int drawable notification_bg_normal 0x0 ++int drawable notification_bg_normal_pressed 0x0 ++int drawable notification_icon_background 0x0 ++int drawable notification_oversize_large_icon_bg 0x0 ++int drawable notification_template_icon_bg 0x0 ++int drawable notification_template_icon_low_bg 0x0 ++int drawable notification_tile_bg 0x0 ++int drawable notify_panel_notification_icon_bg 0x0 ++int drawable paused_in_debugger_background 0x0 ++int drawable paused_in_debugger_dialog_background 0x0 ++int drawable redbox_top_border_background 0x0 ++int drawable ripple_effect 0x0 ++int drawable test_level_drawable 0x0 ++int drawable tooltip_frame_dark 0x0 ++int drawable tooltip_frame_light 0x0 ++int id accessibility_action_clickable_span 0x0 ++int id accessibility_actions 0x0 ++int id accessibility_collection 0x0 ++int id accessibility_collection_item 0x0 ++int id accessibility_custom_action_0 0x0 ++int id accessibility_custom_action_1 0x0 ++int id accessibility_custom_action_10 0x0 ++int id accessibility_custom_action_11 0x0 ++int id accessibility_custom_action_12 0x0 ++int id accessibility_custom_action_13 0x0 ++int id accessibility_custom_action_14 0x0 ++int id accessibility_custom_action_15 0x0 ++int id accessibility_custom_action_16 0x0 ++int id accessibility_custom_action_17 0x0 ++int id accessibility_custom_action_18 0x0 ++int id accessibility_custom_action_19 0x0 ++int id accessibility_custom_action_2 0x0 ++int id accessibility_custom_action_20 0x0 ++int id accessibility_custom_action_21 0x0 ++int id accessibility_custom_action_22 0x0 ++int id accessibility_custom_action_23 0x0 ++int id accessibility_custom_action_24 0x0 ++int id accessibility_custom_action_25 0x0 ++int id accessibility_custom_action_26 0x0 ++int id accessibility_custom_action_27 0x0 ++int id accessibility_custom_action_28 0x0 ++int id accessibility_custom_action_29 0x0 ++int id accessibility_custom_action_3 0x0 ++int id accessibility_custom_action_30 0x0 ++int id accessibility_custom_action_31 0x0 ++int id accessibility_custom_action_4 0x0 ++int id accessibility_custom_action_5 0x0 ++int id accessibility_custom_action_6 0x0 ++int id accessibility_custom_action_7 0x0 ++int id accessibility_custom_action_8 0x0 ++int id accessibility_custom_action_9 0x0 ++int id accessibility_hint 0x0 ++int id accessibility_label 0x0 ++int id accessibility_links 0x0 ++int id accessibility_role 0x0 ++int id accessibility_state 0x0 ++int id accessibility_state_expanded 0x0 ++int id accessibility_value 0x0 ++int id action_bar 0x0 ++int id action_bar_activity_content 0x0 ++int id action_bar_container 0x0 ++int id action_bar_root 0x0 ++int id action_bar_spinner 0x0 ++int id action_bar_subtitle 0x0 ++int id action_bar_title 0x0 ++int id action_container 0x0 ++int id action_context_bar 0x0 ++int id action_divider 0x0 ++int id action_image 0x0 ++int id action_menu_divider 0x0 ++int id action_menu_presenter 0x0 ++int id action_mode_bar 0x0 ++int id action_mode_bar_stub 0x0 ++int id action_mode_close_button 0x0 ++int id action_text 0x0 ++int id actions 0x0 ++int id activity_chooser_view_content 0x0 ++int id add 0x0 ++int id alertTitle 0x0 ++int id alert_title 0x0 ++int id async 0x0 ++int id autofill_inline_suggestion_end_icon 0x0 ++int id autofill_inline_suggestion_start_icon 0x0 ++int id autofill_inline_suggestion_subtitle 0x0 ++int id autofill_inline_suggestion_title 0x0 ++int id blocking 0x0 ++int id button 0x0 ++int id buttonPanel 0x0 ++int id button_text 0x0 ++int id catalyst_redbox_title 0x0 ++int id center 0x0 ++int id centerCrop 0x0 ++int id centerInside 0x0 ++int id checkbox 0x0 ++int id checked 0x0 ++int id chronometer 0x0 ++int id content 0x0 ++int id contentPanel 0x0 ++int id custom 0x0 ++int id customPanel 0x0 ++int id decor_content_parent 0x0 ++int id default_activity_button 0x0 ++int id dialog_button 0x0 ++int id edit_query 0x0 ++int id edit_text_id 0x0 ++int id expand_activities_button 0x0 ++int id expanded_menu 0x0 ++int id filter 0x0 ++int id fitBottomStart 0x0 ++int id fitCenter 0x0 ++int id fitEnd 0x0 ++int id fitStart 0x0 ++int id fitXY 0x0 ++int id focusCrop 0x0 ++int id forever 0x0 ++int id fps_text 0x0 ++int id fragment_container_view_tag 0x0 ++int id ghost_view 0x0 ++int id ghost_view_holder 0x0 ++int id group_divider 0x0 ++int id hide_ime_id 0x0 ++int id home 0x0 ++int id icon 0x0 ++int id icon_group 0x0 ++int id image 0x0 ++int id info 0x0 ++int id invalidate_transform 0x0 ++int id italic 0x0 ++int id labelled_by 0x0 ++int id line1 0x0 ++int id line3 0x0 ++int id listMode 0x0 ++int id list_item 0x0 ++int id message 0x0 ++int id mix_blend_mode 0x0 ++int id multiply 0x0 ++int id none 0x0 ++int id normal 0x0 ++int id notification_background 0x0 ++int id notification_main_column 0x0 ++int id notification_main_column_container 0x0 ++int id off 0x0 ++int id on 0x0 ++int id parentPanel 0x0 ++int id parent_matrix 0x0 ++int id pointer_events 0x0 ++int id progress_circular 0x0 ++int id progress_horizontal 0x0 ++int id radio 0x0 ++int id react_test_id 0x0 ++int id report_drawn 0x0 ++int id right_icon 0x0 ++int id right_side 0x0 ++int id rn_frame_file 0x0 ++int id rn_frame_method 0x0 ++int id rn_redbox_dismiss_button 0x0 ++int id rn_redbox_line_separator 0x0 ++int id rn_redbox_loading_indicator 0x0 ++int id rn_redbox_reload_button 0x0 ++int id rn_redbox_report_button 0x0 ++int id rn_redbox_report_label 0x0 ++int id rn_redbox_stack 0x0 ++int id role 0x0 ++int id save_non_transition_alpha 0x0 ++int id save_overlay_view 0x0 ++int id screen 0x0 ++int id scrollIndicatorDown 0x0 ++int id scrollIndicatorUp 0x0 ++int id scrollView 0x0 ++int id search_badge 0x0 ++int id search_bar 0x0 ++int id search_button 0x0 ++int id search_close_btn 0x0 ++int id search_edit_frame 0x0 ++int id search_go_btn 0x0 ++int id search_mag_icon 0x0 ++int id search_plate 0x0 ++int id search_src_text 0x0 ++int id search_voice_btn 0x0 ++int id select_dialog_listview 0x0 ++int id shortcut 0x0 ++int id spacer 0x0 ++int id special_effects_controller_view_tag 0x0 ++int id split_action_bar 0x0 ++int id src_atop 0x0 ++int id src_in 0x0 ++int id src_over 0x0 ++int id submenuarrow 0x0 ++int id submit_area 0x0 ++int id tabMode 0x0 ++int id tag_accessibility_actions 0x0 ++int id tag_accessibility_clickable_spans 0x0 ++int id tag_accessibility_heading 0x0 ++int id tag_accessibility_pane_title 0x0 ++int id tag_on_apply_window_listener 0x0 ++int id tag_on_receive_content_listener 0x0 ++int id tag_on_receive_content_mime_types 0x0 ++int id tag_screen_reader_focusable 0x0 ++int id tag_state_description 0x0 ++int id tag_transition_group 0x0 ++int id tag_unhandled_key_event_manager 0x0 ++int id tag_unhandled_key_listeners 0x0 ++int id tag_window_insets_animation_callback 0x0 ++int id text 0x0 ++int id text2 0x0 ++int id textSpacerNoButtons 0x0 ++int id textSpacerNoTitle 0x0 ++int id time 0x0 ++int id title 0x0 ++int id titleDividerNoCustom 0x0 ++int id title_template 0x0 ++int id topPanel 0x0 ++int id transform 0x0 ++int id transform_origin 0x0 ++int id transition_current_scene 0x0 ++int id transition_layout_save 0x0 ++int id transition_position 0x0 ++int id transition_scene_layoutid_cache 0x0 ++int id transition_transform 0x0 ++int id unchecked 0x0 ++int id uniform 0x0 ++int id up 0x0 ++int id use_hardware_layer 0x0 ++int id view_clipped 0x0 ++int id view_tag_instance_handle 0x0 ++int id view_tag_native_id 0x0 ++int id view_tree_lifecycle_owner 0x0 ++int id view_tree_on_back_pressed_dispatcher_owner 0x0 ++int id view_tree_saved_state_registry_owner 0x0 ++int id view_tree_view_model_store_owner 0x0 ++int id visible_removing_fragment_view_tag 0x0 ++int id wrap_content 0x0 ++int integer abc_config_activityDefaultDur 0x0 ++int integer abc_config_activityShortDur 0x0 ++int integer cancel_button_image_alpha 0x0 ++int integer config_tooltipAnimTime 0x0 ++int integer react_native_dev_server_port 0x0 ++int integer status_bar_notification_info_maxnum 0x0 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 ++int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 ++int interpolator fast_out_slow_in 0x0 ++int layout abc_action_bar_title_item 0x0 ++int layout abc_action_bar_up_container 0x0 ++int layout abc_action_menu_item_layout 0x0 ++int layout abc_action_menu_layout 0x0 ++int layout abc_action_mode_bar 0x0 ++int layout abc_action_mode_close_item_material 0x0 ++int layout abc_activity_chooser_view 0x0 ++int layout abc_activity_chooser_view_list_item 0x0 ++int layout abc_alert_dialog_button_bar_material 0x0 ++int layout abc_alert_dialog_material 0x0 ++int layout abc_alert_dialog_title_material 0x0 ++int layout abc_cascading_menu_item_layout 0x0 ++int layout abc_dialog_title_material 0x0 ++int layout abc_expanded_menu_layout 0x0 ++int layout abc_list_menu_item_checkbox 0x0 ++int layout abc_list_menu_item_icon 0x0 ++int layout abc_list_menu_item_layout 0x0 ++int layout abc_list_menu_item_radio 0x0 ++int layout abc_popup_menu_header_item_layout 0x0 ++int layout abc_popup_menu_item_layout 0x0 ++int layout abc_screen_content_include 0x0 ++int layout abc_screen_simple 0x0 ++int layout abc_screen_simple_overlay_action_mode 0x0 ++int layout abc_screen_toolbar 0x0 ++int layout abc_search_dropdown_item_icons_2line 0x0 ++int layout abc_search_view 0x0 ++int layout abc_select_dialog_material 0x0 ++int layout abc_tooltip 0x0 ++int layout alert_title_layout 0x0 ++int layout autofill_inline_suggestion 0x0 ++int layout custom_dialog 0x0 ++int layout dev_loading_view 0x0 ++int layout fps_view 0x0 ++int layout ime_base_split_test_activity 0x0 ++int layout ime_secondary_split_test_activity 0x0 ++int layout notification_action 0x0 ++int layout notification_action_tombstone 0x0 ++int layout notification_template_custom_big 0x0 ++int layout notification_template_icon_group 0x0 ++int layout notification_template_part_chronometer 0x0 ++int layout notification_template_part_time 0x0 ++int layout paused_in_debugger_view 0x0 ++int layout redbox_item_frame 0x0 ++int layout redbox_item_title 0x0 ++int layout redbox_view 0x0 ++int layout select_dialog_item_material 0x0 ++int layout select_dialog_multichoice_material 0x0 ++int layout select_dialog_singlechoice_material 0x0 ++int layout support_simple_spinner_dropdown_item 0x0 ++int string abc_action_bar_home_description 0x0 ++int string abc_action_bar_up_description 0x0 ++int string abc_action_menu_overflow_description 0x0 ++int string abc_action_mode_done 0x0 ++int string abc_activity_chooser_view_see_all 0x0 ++int string abc_activitychooserview_choose_application 0x0 ++int string abc_capital_off 0x0 ++int string abc_capital_on 0x0 ++int string abc_menu_alt_shortcut_label 0x0 ++int string abc_menu_ctrl_shortcut_label 0x0 ++int string abc_menu_delete_shortcut_label 0x0 ++int string abc_menu_enter_shortcut_label 0x0 ++int string abc_menu_function_shortcut_label 0x0 ++int string abc_menu_meta_shortcut_label 0x0 ++int string abc_menu_shift_shortcut_label 0x0 ++int string abc_menu_space_shortcut_label 0x0 ++int string abc_menu_sym_shortcut_label 0x0 ++int string abc_prepend_shortcut_label 0x0 ++int string abc_search_hint 0x0 ++int string abc_searchview_description_clear 0x0 ++int string abc_searchview_description_query 0x0 ++int string abc_searchview_description_search 0x0 ++int string abc_searchview_description_submit 0x0 ++int string abc_searchview_description_voice 0x0 ++int string abc_shareactionprovider_share_with 0x0 ++int string abc_shareactionprovider_share_with_application 0x0 ++int string abc_toolbar_collapse_description 0x0 ++int string alert_description 0x0 ++int string call_notification_answer_action 0x0 ++int string call_notification_answer_video_action 0x0 ++int string call_notification_decline_action 0x0 ++int string call_notification_hang_up_action 0x0 ++int string call_notification_incoming_text 0x0 ++int string call_notification_ongoing_text 0x0 ++int string call_notification_screening_text 0x0 ++int string catalyst_change_bundle_location 0x0 ++int string catalyst_copy_button 0x0 ++int string catalyst_debug_connecting 0x0 ++int string catalyst_debug_error 0x0 ++int string catalyst_debug_open 0x0 ++int string catalyst_debug_open_disabled 0x0 ++int string catalyst_dev_menu_header 0x0 ++int string catalyst_dev_menu_sub_header 0x0 ++int string catalyst_dismiss_button 0x0 ++int string catalyst_heap_capture 0x0 ++int string catalyst_hot_reloading 0x0 ++int string catalyst_hot_reloading_auto_disable 0x0 ++int string catalyst_hot_reloading_auto_enable 0x0 ++int string catalyst_hot_reloading_stop 0x0 ++int string catalyst_inspector_toggle 0x0 ++int string catalyst_loading_from_url 0x0 ++int string catalyst_open_debugger_error 0x0 ++int string catalyst_perf_monitor 0x0 ++int string catalyst_perf_monitor_stop 0x0 ++int string catalyst_reload 0x0 ++int string catalyst_reload_button 0x0 ++int string catalyst_reload_error 0x0 ++int string catalyst_report_button 0x0 ++int string catalyst_sample_profiler_toggle 0x0 ++int string catalyst_settings 0x0 ++int string catalyst_settings_title 0x0 ++int string combobox_description 0x0 ++int string header_description 0x0 ++int string image_description 0x0 ++int string imagebutton_description 0x0 ++int string link_description 0x0 ++int string menu_description 0x0 ++int string menubar_description 0x0 ++int string menuitem_description 0x0 ++int string progressbar_description 0x0 ++int string radiogroup_description 0x0 ++int string rn_tab_description 0x0 ++int string scrollbar_description 0x0 ++int string search_menu_title 0x0 ++int string spinbutton_description 0x0 ++int string state_busy_description 0x0 ++int string state_collapsed_description 0x0 ++int string state_expanded_description 0x0 ++int string state_mixed_description 0x0 ++int string state_off_description 0x0 ++int string state_on_description 0x0 ++int string state_unselected_description 0x0 ++int string status_bar_notification_info_overflow 0x0 ++int string summary_description 0x0 ++int string tablist_description 0x0 ++int string timer_description 0x0 ++int string toolbar_description 0x0 ++int style AlertDialog_AppCompat 0x0 ++int style AlertDialog_AppCompat_Light 0x0 ++int style Animation_AppCompat_Dialog 0x0 ++int style Animation_AppCompat_DropDownUp 0x0 ++int style Animation_AppCompat_Tooltip 0x0 ++int style Animation_Catalyst_LogBox 0x0 ++int style Animation_Catalyst_RedBox 0x0 ++int style Base_AlertDialog_AppCompat 0x0 ++int style Base_AlertDialog_AppCompat_Light 0x0 ++int style Base_Animation_AppCompat_Dialog 0x0 ++int style Base_Animation_AppCompat_DropDownUp 0x0 ++int style Base_Animation_AppCompat_Tooltip 0x0 ++int style Base_DialogWindowTitleBackground_AppCompat 0x0 ++int style Base_DialogWindowTitle_AppCompat 0x0 ++int style Base_TextAppearance_AppCompat 0x0 ++int style Base_TextAppearance_AppCompat_Body1 0x0 ++int style Base_TextAppearance_AppCompat_Body2 0x0 ++int style Base_TextAppearance_AppCompat_Button 0x0 ++int style Base_TextAppearance_AppCompat_Caption 0x0 ++int style Base_TextAppearance_AppCompat_Display1 0x0 ++int style Base_TextAppearance_AppCompat_Display2 0x0 ++int style Base_TextAppearance_AppCompat_Display3 0x0 ++int style Base_TextAppearance_AppCompat_Display4 0x0 ++int style Base_TextAppearance_AppCompat_Headline 0x0 ++int style Base_TextAppearance_AppCompat_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Large 0x0 ++int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 ++int style Base_TextAppearance_AppCompat_Medium 0x0 ++int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Menu 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 ++int style Base_TextAppearance_AppCompat_Small 0x0 ++int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Subhead 0x0 ++int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Title 0x0 ++int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Tooltip 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 ++int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 ++int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 ++int style Base_ThemeOverlay_AppCompat 0x0 ++int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 ++int style Base_ThemeOverlay_AppCompat_Dark 0x0 ++int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 ++int style Base_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 ++int style Base_ThemeOverlay_AppCompat_Light 0x0 ++int style Base_Theme_AppCompat 0x0 ++int style Base_Theme_AppCompat_CompactMenu 0x0 ++int style Base_Theme_AppCompat_Dialog 0x0 ++int style Base_Theme_AppCompat_DialogWhenLarge 0x0 ++int style Base_Theme_AppCompat_Dialog_Alert 0x0 ++int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 ++int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 ++int style Base_Theme_AppCompat_Light 0x0 ++int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 ++int style Base_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 ++int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_V21_Theme_AppCompat 0x0 ++int style Base_V21_Theme_AppCompat_Dialog 0x0 ++int style Base_V21_Theme_AppCompat_Light 0x0 ++int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_V22_Theme_AppCompat 0x0 ++int style Base_V22_Theme_AppCompat_Light 0x0 ++int style Base_V23_Theme_AppCompat 0x0 ++int style Base_V23_Theme_AppCompat_Light 0x0 ++int style Base_V26_Theme_AppCompat 0x0 ++int style Base_V26_Theme_AppCompat_Light 0x0 ++int style Base_V26_Widget_AppCompat_Toolbar 0x0 ++int style Base_V28_Theme_AppCompat 0x0 ++int style Base_V28_Theme_AppCompat_Light 0x0 ++int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_V7_Theme_AppCompat 0x0 ++int style Base_V7_Theme_AppCompat_Dialog 0x0 ++int style Base_V7_Theme_AppCompat_Light 0x0 ++int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Base_V7_Widget_AppCompat_EditText 0x0 ++int style Base_V7_Widget_AppCompat_Toolbar 0x0 ++int style Base_Widget_AppCompat_ActionBar 0x0 ++int style Base_Widget_AppCompat_ActionBar_Solid 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabText 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabView 0x0 ++int style Base_Widget_AppCompat_ActionButton 0x0 ++int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 ++int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 ++int style Base_Widget_AppCompat_ActionMode 0x0 ++int style Base_Widget_AppCompat_ActivityChooserView 0x0 ++int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Base_Widget_AppCompat_Button 0x0 ++int style Base_Widget_AppCompat_ButtonBar 0x0 ++int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 ++int style Base_Widget_AppCompat_Button_Borderless 0x0 ++int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 ++int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 ++int style Base_Widget_AppCompat_Button_Colored 0x0 ++int style Base_Widget_AppCompat_Button_Small 0x0 ++int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 ++int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 ++int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 ++int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 ++int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 ++int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 ++int style Base_Widget_AppCompat_EditText 0x0 ++int style Base_Widget_AppCompat_ImageButton 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 ++int style Base_Widget_AppCompat_Light_PopupMenu 0x0 ++int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 ++int style Base_Widget_AppCompat_ListMenuView 0x0 ++int style Base_Widget_AppCompat_ListPopupWindow 0x0 ++int style Base_Widget_AppCompat_ListView 0x0 ++int style Base_Widget_AppCompat_ListView_DropDown 0x0 ++int style Base_Widget_AppCompat_ListView_Menu 0x0 ++int style Base_Widget_AppCompat_PopupMenu 0x0 ++int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 ++int style Base_Widget_AppCompat_PopupWindow 0x0 ++int style Base_Widget_AppCompat_ProgressBar 0x0 ++int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 ++int style Base_Widget_AppCompat_RatingBar 0x0 ++int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 ++int style Base_Widget_AppCompat_RatingBar_Small 0x0 ++int style Base_Widget_AppCompat_SearchView 0x0 ++int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 ++int style Base_Widget_AppCompat_SeekBar 0x0 ++int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 ++int style Base_Widget_AppCompat_Spinner 0x0 ++int style Base_Widget_AppCompat_Spinner_Underlined 0x0 ++int style Base_Widget_AppCompat_TextView 0x0 ++int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 ++int style Base_Widget_AppCompat_Toolbar 0x0 ++int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 ++int style CalendarDatePickerDialog 0x0 ++int style CalendarDatePickerStyle 0x0 ++int style DialogAnimationFade 0x0 ++int style DialogAnimationSlide 0x0 ++int style NoAnimationDialog 0x0 ++int style Platform_AppCompat 0x0 ++int style Platform_AppCompat_Light 0x0 ++int style Platform_ThemeOverlay_AppCompat 0x0 ++int style Platform_ThemeOverlay_AppCompat_Dark 0x0 ++int style Platform_ThemeOverlay_AppCompat_Light 0x0 ++int style Platform_V21_AppCompat 0x0 ++int style Platform_V21_AppCompat_Light 0x0 ++int style Platform_V25_AppCompat 0x0 ++int style Platform_V25_AppCompat_Light 0x0 ++int style Platform_Widget_AppCompat_Spinner 0x0 ++int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 ++int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 ++int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 ++int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 ++int style SpinnerDatePickerDialog 0x0 ++int style SpinnerDatePickerStyle 0x0 ++int style TextAppearance_AppCompat 0x0 ++int style TextAppearance_AppCompat_Body1 0x0 ++int style TextAppearance_AppCompat_Body2 0x0 ++int style TextAppearance_AppCompat_Button 0x0 ++int style TextAppearance_AppCompat_Caption 0x0 ++int style TextAppearance_AppCompat_Display1 0x0 ++int style TextAppearance_AppCompat_Display2 0x0 ++int style TextAppearance_AppCompat_Display3 0x0 ++int style TextAppearance_AppCompat_Display4 0x0 ++int style TextAppearance_AppCompat_Headline 0x0 ++int style TextAppearance_AppCompat_Inverse 0x0 ++int style TextAppearance_AppCompat_Large 0x0 ++int style TextAppearance_AppCompat_Large_Inverse 0x0 ++int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 ++int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 ++int style TextAppearance_AppCompat_Medium 0x0 ++int style TextAppearance_AppCompat_Medium_Inverse 0x0 ++int style TextAppearance_AppCompat_Menu 0x0 ++int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 ++int style TextAppearance_AppCompat_SearchResult_Title 0x0 ++int style TextAppearance_AppCompat_Small 0x0 ++int style TextAppearance_AppCompat_Small_Inverse 0x0 ++int style TextAppearance_AppCompat_Subhead 0x0 ++int style TextAppearance_AppCompat_Subhead_Inverse 0x0 ++int style TextAppearance_AppCompat_Title 0x0 ++int style TextAppearance_AppCompat_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Tooltip 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_Button 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 ++int style TextAppearance_AppCompat_Widget_Switch 0x0 ++int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 ++int style TextAppearance_Compat_Notification 0x0 ++int style TextAppearance_Compat_Notification_Info 0x0 ++int style TextAppearance_Compat_Notification_Line2 0x0 ++int style TextAppearance_Compat_Notification_Time 0x0 ++int style TextAppearance_Compat_Notification_Title 0x0 ++int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 ++int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 ++int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 ++int style Theme 0x0 ++int style ThemeOverlay_AppCompat 0x0 ++int style ThemeOverlay_AppCompat_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_Dark 0x0 ++int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_DayNight 0x0 ++int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_Dialog 0x0 ++int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 ++int style ThemeOverlay_AppCompat_Light 0x0 ++int style Theme_AppCompat 0x0 ++int style Theme_AppCompat_CompactMenu 0x0 ++int style Theme_AppCompat_DayNight 0x0 ++int style Theme_AppCompat_DayNight_DarkActionBar 0x0 ++int style Theme_AppCompat_DayNight_Dialog 0x0 ++int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 ++int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 ++int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_DayNight_NoActionBar 0x0 ++int style Theme_AppCompat_Dialog 0x0 ++int style Theme_AppCompat_DialogWhenLarge 0x0 ++int style Theme_AppCompat_Dialog_Alert 0x0 ++int style Theme_AppCompat_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_Empty 0x0 ++int style Theme_AppCompat_Light 0x0 ++int style Theme_AppCompat_Light_DarkActionBar 0x0 ++int style Theme_AppCompat_Light_Dialog 0x0 ++int style Theme_AppCompat_Light_DialogWhenLarge 0x0 ++int style Theme_AppCompat_Light_Dialog_Alert 0x0 ++int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_Light_NoActionBar 0x0 ++int style Theme_AppCompat_NoActionBar 0x0 ++int style Theme_AutofillInlineSuggestion 0x0 ++int style Theme_Catalyst 0x0 ++int style Theme_Catalyst_LogBox 0x0 ++int style Theme_Catalyst_RedBox 0x0 ++int style Theme_FullScreenDialog 0x0 ++int style Theme_FullScreenDialogAnimatedFade 0x0 ++int style Theme_FullScreenDialogAnimatedSlide 0x0 ++int style Theme_ReactNative_AppCompat_Light 0x0 ++int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0 ++int style Theme_ReactNative_TextInput_DefaultBackground 0x0 ++int style Widget_AppCompat_ActionBar 0x0 ++int style Widget_AppCompat_ActionBar_Solid 0x0 ++int style Widget_AppCompat_ActionBar_TabBar 0x0 ++int style Widget_AppCompat_ActionBar_TabText 0x0 ++int style Widget_AppCompat_ActionBar_TabView 0x0 ++int style Widget_AppCompat_ActionButton 0x0 ++int style Widget_AppCompat_ActionButton_CloseMode 0x0 ++int style Widget_AppCompat_ActionButton_Overflow 0x0 ++int style Widget_AppCompat_ActionMode 0x0 ++int style Widget_AppCompat_ActivityChooserView 0x0 ++int style Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Widget_AppCompat_Button 0x0 ++int style Widget_AppCompat_ButtonBar 0x0 ++int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 ++int style Widget_AppCompat_Button_Borderless 0x0 ++int style Widget_AppCompat_Button_Borderless_Colored 0x0 ++int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 ++int style Widget_AppCompat_Button_Colored 0x0 ++int style Widget_AppCompat_Button_Small 0x0 ++int style Widget_AppCompat_CompoundButton_CheckBox 0x0 ++int style Widget_AppCompat_CompoundButton_RadioButton 0x0 ++int style Widget_AppCompat_CompoundButton_Switch 0x0 ++int style Widget_AppCompat_DrawerArrowToggle 0x0 ++int style Widget_AppCompat_DropDownItem_Spinner 0x0 ++int style Widget_AppCompat_EditText 0x0 ++int style Widget_AppCompat_ImageButton 0x0 ++int style Widget_AppCompat_Light_ActionBar 0x0 ++int style Widget_AppCompat_Light_ActionBar_Solid 0x0 ++int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabText 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabView 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionButton 0x0 ++int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 ++int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 ++int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 ++int style Widget_AppCompat_Light_ActivityChooserView 0x0 ++int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 ++int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 ++int style Widget_AppCompat_Light_ListPopupWindow 0x0 ++int style Widget_AppCompat_Light_ListView_DropDown 0x0 ++int style Widget_AppCompat_Light_PopupMenu 0x0 ++int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 ++int style Widget_AppCompat_Light_SearchView 0x0 ++int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 ++int style Widget_AppCompat_ListMenuView 0x0 ++int style Widget_AppCompat_ListPopupWindow 0x0 ++int style Widget_AppCompat_ListView 0x0 ++int style Widget_AppCompat_ListView_DropDown 0x0 ++int style Widget_AppCompat_ListView_Menu 0x0 ++int style Widget_AppCompat_PopupMenu 0x0 ++int style Widget_AppCompat_PopupMenu_Overflow 0x0 ++int style Widget_AppCompat_PopupWindow 0x0 ++int style Widget_AppCompat_ProgressBar 0x0 ++int style Widget_AppCompat_ProgressBar_Horizontal 0x0 ++int style Widget_AppCompat_RatingBar 0x0 ++int style Widget_AppCompat_RatingBar_Indicator 0x0 ++int style Widget_AppCompat_RatingBar_Small 0x0 ++int style Widget_AppCompat_SearchView 0x0 ++int style Widget_AppCompat_SearchView_ActionBar 0x0 ++int style Widget_AppCompat_SeekBar 0x0 ++int style Widget_AppCompat_SeekBar_Discrete 0x0 ++int style Widget_AppCompat_Spinner 0x0 ++int style Widget_AppCompat_Spinner_DropDown 0x0 ++int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 ++int style Widget_AppCompat_Spinner_Underlined 0x0 ++int style Widget_AppCompat_TextView 0x0 ++int style Widget_AppCompat_TextView_SpinnerItem 0x0 ++int style Widget_AppCompat_Toolbar 0x0 ++int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 ++int style Widget_Autofill 0x0 ++int style Widget_Autofill_InlineSuggestionChip 0x0 ++int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0 ++int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0 ++int style Widget_Autofill_InlineSuggestionSubtitle 0x0 ++int style Widget_Autofill_InlineSuggestionTitle 0x0 ++int style Widget_Compat_NotificationActionContainer 0x0 ++int style Widget_Compat_NotificationActionText 0x0 ++int style redboxButton 0x0 ++int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable ActionBar_background 0 ++int styleable ActionBar_backgroundSplit 1 ++int styleable ActionBar_backgroundStacked 2 ++int styleable ActionBar_contentInsetEnd 3 ++int styleable ActionBar_contentInsetEndWithActions 4 ++int styleable ActionBar_contentInsetLeft 5 ++int styleable ActionBar_contentInsetRight 6 ++int styleable ActionBar_contentInsetStart 7 ++int styleable ActionBar_contentInsetStartWithNavigation 8 ++int styleable ActionBar_customNavigationLayout 9 ++int styleable ActionBar_displayOptions 10 ++int styleable ActionBar_divider 11 ++int styleable ActionBar_elevation 12 ++int styleable ActionBar_height 13 ++int styleable ActionBar_hideOnContentScroll 14 ++int styleable ActionBar_homeAsUpIndicator 15 ++int styleable ActionBar_homeLayout 16 ++int styleable ActionBar_icon 17 ++int styleable ActionBar_indeterminateProgressStyle 18 ++int styleable ActionBar_itemPadding 19 ++int styleable ActionBar_logo 20 ++int styleable ActionBar_navigationMode 21 ++int styleable ActionBar_popupTheme 22 ++int styleable ActionBar_progressBarPadding 23 ++int styleable ActionBar_progressBarStyle 24 ++int styleable ActionBar_subtitle 25 ++int styleable ActionBar_subtitleTextStyle 26 ++int styleable ActionBar_title 27 ++int styleable ActionBar_titleTextStyle 28 ++int[] styleable ActionBarLayout { 0x10100b3 } ++int styleable ActionBarLayout_android_layout_gravity 0 ++int[] styleable ActionMenuItemView { 0x101013f } ++int styleable ActionMenuItemView_android_minWidth 0 ++int[] styleable ActionMenuView { } ++int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable ActionMode_background 0 ++int styleable ActionMode_backgroundSplit 1 ++int styleable ActionMode_closeItemLayout 2 ++int styleable ActionMode_height 3 ++int styleable ActionMode_subtitleTextStyle 4 ++int styleable ActionMode_titleTextStyle 5 ++int[] styleable ActivityChooserView { 0x0, 0x0 } ++int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 ++int styleable ActivityChooserView_initialActivityCount 1 ++int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AlertDialog_android_layout 0 ++int styleable AlertDialog_buttonIconDimen 1 ++int styleable AlertDialog_buttonPanelSideLayout 2 ++int styleable AlertDialog_listItemLayout 3 ++int styleable AlertDialog_listLayout 4 ++int styleable AlertDialog_multiChoiceItemLayout 5 ++int styleable AlertDialog_showTitle 6 ++int styleable AlertDialog_singleChoiceItemLayout 7 ++int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } ++int styleable AnimatedStateListDrawableCompat_android_constantSize 0 ++int styleable AnimatedStateListDrawableCompat_android_dither 1 ++int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 ++int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 ++int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 ++int styleable AnimatedStateListDrawableCompat_android_visible 5 ++int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } ++int styleable AnimatedStateListDrawableItem_android_drawable 0 ++int styleable AnimatedStateListDrawableItem_android_id 1 ++int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } ++int styleable AnimatedStateListDrawableTransition_android_drawable 0 ++int styleable AnimatedStateListDrawableTransition_android_fromId 1 ++int styleable AnimatedStateListDrawableTransition_android_reversible 2 ++int styleable AnimatedStateListDrawableTransition_android_toId 3 ++int[] styleable AppCompatEmojiHelper { } ++int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } ++int styleable AppCompatImageView_android_src 0 ++int styleable AppCompatImageView_srcCompat 1 ++int styleable AppCompatImageView_tint 2 ++int styleable AppCompatImageView_tintMode 3 ++int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } ++int styleable AppCompatSeekBar_android_thumb 0 ++int styleable AppCompatSeekBar_tickMark 1 ++int styleable AppCompatSeekBar_tickMarkTint 2 ++int styleable AppCompatSeekBar_tickMarkTintMode 3 ++int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } ++int styleable AppCompatTextHelper_android_drawableBottom 0 ++int styleable AppCompatTextHelper_android_drawableEnd 1 ++int styleable AppCompatTextHelper_android_drawableLeft 2 ++int styleable AppCompatTextHelper_android_drawableRight 3 ++int styleable AppCompatTextHelper_android_drawableStart 4 ++int styleable AppCompatTextHelper_android_drawableTop 5 ++int styleable AppCompatTextHelper_android_textAppearance 6 ++int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AppCompatTextView_android_textAppearance 0 ++int styleable AppCompatTextView_autoSizeMaxTextSize 1 ++int styleable AppCompatTextView_autoSizeMinTextSize 2 ++int styleable AppCompatTextView_autoSizePresetSizes 3 ++int styleable AppCompatTextView_autoSizeStepGranularity 4 ++int styleable AppCompatTextView_autoSizeTextType 5 ++int styleable AppCompatTextView_drawableBottomCompat 6 ++int styleable AppCompatTextView_drawableEndCompat 7 ++int styleable AppCompatTextView_drawableLeftCompat 8 ++int styleable AppCompatTextView_drawableRightCompat 9 ++int styleable AppCompatTextView_drawableStartCompat 10 ++int styleable AppCompatTextView_drawableTint 11 ++int styleable AppCompatTextView_drawableTintMode 12 ++int styleable AppCompatTextView_drawableTopCompat 13 ++int styleable AppCompatTextView_emojiCompatEnabled 14 ++int styleable AppCompatTextView_firstBaselineToTopHeight 15 ++int styleable AppCompatTextView_fontFamily 16 ++int styleable AppCompatTextView_fontVariationSettings 17 ++int styleable AppCompatTextView_lastBaselineToBottomHeight 18 ++int styleable AppCompatTextView_lineHeight 19 ++int styleable AppCompatTextView_textAllCaps 20 ++int styleable AppCompatTextView_textLocale 21 ++int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AppCompatTheme_actionBarDivider 0 ++int styleable AppCompatTheme_actionBarItemBackground 1 ++int styleable AppCompatTheme_actionBarPopupTheme 2 ++int styleable AppCompatTheme_actionBarSize 3 ++int styleable AppCompatTheme_actionBarSplitStyle 4 ++int styleable AppCompatTheme_actionBarStyle 5 ++int styleable AppCompatTheme_actionBarTabBarStyle 6 ++int styleable AppCompatTheme_actionBarTabStyle 7 ++int styleable AppCompatTheme_actionBarTabTextStyle 8 ++int styleable AppCompatTheme_actionBarTheme 9 ++int styleable AppCompatTheme_actionBarWidgetTheme 10 ++int styleable AppCompatTheme_actionButtonStyle 11 ++int styleable AppCompatTheme_actionDropDownStyle 12 ++int styleable AppCompatTheme_actionMenuTextAppearance 13 ++int styleable AppCompatTheme_actionMenuTextColor 14 ++int styleable AppCompatTheme_actionModeBackground 15 ++int styleable AppCompatTheme_actionModeCloseButtonStyle 16 ++int styleable AppCompatTheme_actionModeCloseContentDescription 17 ++int styleable AppCompatTheme_actionModeCloseDrawable 18 ++int styleable AppCompatTheme_actionModeCopyDrawable 19 ++int styleable AppCompatTheme_actionModeCutDrawable 20 ++int styleable AppCompatTheme_actionModeFindDrawable 21 ++int styleable AppCompatTheme_actionModePasteDrawable 22 ++int styleable AppCompatTheme_actionModePopupWindowStyle 23 ++int styleable AppCompatTheme_actionModeSelectAllDrawable 24 ++int styleable AppCompatTheme_actionModeShareDrawable 25 ++int styleable AppCompatTheme_actionModeSplitBackground 26 ++int styleable AppCompatTheme_actionModeStyle 27 ++int styleable AppCompatTheme_actionModeTheme 28 ++int styleable AppCompatTheme_actionModeWebSearchDrawable 29 ++int styleable AppCompatTheme_actionOverflowButtonStyle 30 ++int styleable AppCompatTheme_actionOverflowMenuStyle 31 ++int styleable AppCompatTheme_activityChooserViewStyle 32 ++int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 ++int styleable AppCompatTheme_alertDialogCenterButtons 34 ++int styleable AppCompatTheme_alertDialogStyle 35 ++int styleable AppCompatTheme_alertDialogTheme 36 ++int styleable AppCompatTheme_android_windowAnimationStyle 37 ++int styleable AppCompatTheme_android_windowIsFloating 38 ++int styleable AppCompatTheme_autoCompleteTextViewStyle 39 ++int styleable AppCompatTheme_borderlessButtonStyle 40 ++int styleable AppCompatTheme_buttonBarButtonStyle 41 ++int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 ++int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 ++int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 ++int styleable AppCompatTheme_buttonBarStyle 45 ++int styleable AppCompatTheme_buttonStyle 46 ++int styleable AppCompatTheme_buttonStyleSmall 47 ++int styleable AppCompatTheme_checkboxStyle 48 ++int styleable AppCompatTheme_checkedTextViewStyle 49 ++int styleable AppCompatTheme_colorAccent 50 ++int styleable AppCompatTheme_colorBackgroundFloating 51 ++int styleable AppCompatTheme_colorButtonNormal 52 ++int styleable AppCompatTheme_colorControlActivated 53 ++int styleable AppCompatTheme_colorControlHighlight 54 ++int styleable AppCompatTheme_colorControlNormal 55 ++int styleable AppCompatTheme_colorError 56 ++int styleable AppCompatTheme_colorPrimary 57 ++int styleable AppCompatTheme_colorPrimaryDark 58 ++int styleable AppCompatTheme_colorSwitchThumbNormal 59 ++int styleable AppCompatTheme_controlBackground 60 ++int styleable AppCompatTheme_dialogCornerRadius 61 ++int styleable AppCompatTheme_dialogPreferredPadding 62 ++int styleable AppCompatTheme_dialogTheme 63 ++int styleable AppCompatTheme_dividerHorizontal 64 ++int styleable AppCompatTheme_dividerVertical 65 ++int styleable AppCompatTheme_dropDownListViewStyle 66 ++int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 ++int styleable AppCompatTheme_editTextBackground 68 ++int styleable AppCompatTheme_editTextColor 69 ++int styleable AppCompatTheme_editTextStyle 70 ++int styleable AppCompatTheme_homeAsUpIndicator 71 ++int styleable AppCompatTheme_imageButtonStyle 72 ++int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 ++int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 ++int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 ++int styleable AppCompatTheme_listDividerAlertDialog 76 ++int styleable AppCompatTheme_listMenuViewStyle 77 ++int styleable AppCompatTheme_listPopupWindowStyle 78 ++int styleable AppCompatTheme_listPreferredItemHeight 79 ++int styleable AppCompatTheme_listPreferredItemHeightLarge 80 ++int styleable AppCompatTheme_listPreferredItemHeightSmall 81 ++int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 ++int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 ++int styleable AppCompatTheme_listPreferredItemPaddingRight 84 ++int styleable AppCompatTheme_listPreferredItemPaddingStart 85 ++int styleable AppCompatTheme_panelBackground 86 ++int styleable AppCompatTheme_panelMenuListTheme 87 ++int styleable AppCompatTheme_panelMenuListWidth 88 ++int styleable AppCompatTheme_popupMenuStyle 89 ++int styleable AppCompatTheme_popupWindowStyle 90 ++int styleable AppCompatTheme_radioButtonStyle 91 ++int styleable AppCompatTheme_ratingBarStyle 92 ++int styleable AppCompatTheme_ratingBarStyleIndicator 93 ++int styleable AppCompatTheme_ratingBarStyleSmall 94 ++int styleable AppCompatTheme_searchViewStyle 95 ++int styleable AppCompatTheme_seekBarStyle 96 ++int styleable AppCompatTheme_selectableItemBackground 97 ++int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 ++int styleable AppCompatTheme_spinnerDropDownItemStyle 99 ++int styleable AppCompatTheme_spinnerStyle 100 ++int styleable AppCompatTheme_switchStyle 101 ++int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 ++int styleable AppCompatTheme_textAppearanceListItem 103 ++int styleable AppCompatTheme_textAppearanceListItemSecondary 104 ++int styleable AppCompatTheme_textAppearanceListItemSmall 105 ++int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 ++int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 ++int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 ++int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 ++int styleable AppCompatTheme_textColorAlertDialogListItem 110 ++int styleable AppCompatTheme_textColorSearchUrl 111 ++int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 ++int styleable AppCompatTheme_toolbarStyle 113 ++int styleable AppCompatTheme_tooltipForegroundColor 114 ++int styleable AppCompatTheme_tooltipFrameBackground 115 ++int styleable AppCompatTheme_viewInflaterClass 116 ++int styleable AppCompatTheme_windowActionBar 117 ++int styleable AppCompatTheme_windowActionBarOverlay 118 ++int styleable AppCompatTheme_windowActionModeOverlay 119 ++int styleable AppCompatTheme_windowFixedHeightMajor 120 ++int styleable AppCompatTheme_windowFixedHeightMinor 121 ++int styleable AppCompatTheme_windowFixedWidthMajor 122 ++int styleable AppCompatTheme_windowFixedWidthMinor 123 ++int styleable AppCompatTheme_windowMinWidthMajor 124 ++int styleable AppCompatTheme_windowMinWidthMinor 125 ++int styleable AppCompatTheme_windowNoTitle 126 ++int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 ++int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 ++int[] styleable ButtonBarLayout { 0x0 } ++int styleable ButtonBarLayout_allowStacking 0 ++int[] styleable Capability { 0x0, 0x0 } ++int styleable Capability_queryPatterns 0 ++int styleable Capability_shortcutMatchRequired 1 ++int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } ++int styleable CheckedTextView_android_checkMark 0 ++int styleable CheckedTextView_checkMarkCompat 1 ++int styleable CheckedTextView_checkMarkTint 2 ++int styleable CheckedTextView_checkMarkTintMode 3 ++int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } ++int styleable ColorStateListItem_alpha 0 ++int styleable ColorStateListItem_android_alpha 1 ++int styleable ColorStateListItem_android_color 2 ++int styleable ColorStateListItem_android_lStar 3 ++int styleable ColorStateListItem_lStar 4 ++int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } ++int styleable CompoundButton_android_button 0 ++int styleable CompoundButton_buttonCompat 1 ++int styleable CompoundButton_buttonTint 2 ++int styleable CompoundButton_buttonTintMode 3 ++int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable DrawerArrowToggle_arrowHeadLength 0 ++int styleable DrawerArrowToggle_arrowShaftLength 1 ++int styleable DrawerArrowToggle_barLength 2 ++int styleable DrawerArrowToggle_color 3 ++int styleable DrawerArrowToggle_drawableSize 4 ++int styleable DrawerArrowToggle_gapBetweenBars 5 ++int styleable DrawerArrowToggle_spinBars 6 ++int styleable DrawerArrowToggle_thickness 7 ++int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable FontFamily_fontProviderAuthority 0 ++int styleable FontFamily_fontProviderCerts 1 ++int styleable FontFamily_fontProviderFetchStrategy 2 ++int styleable FontFamily_fontProviderFetchTimeout 3 ++int styleable FontFamily_fontProviderPackage 4 ++int styleable FontFamily_fontProviderQuery 5 ++int styleable FontFamily_fontProviderSystemFontFamily 6 ++int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable FontFamilyFont_android_font 0 ++int styleable FontFamilyFont_android_fontStyle 1 ++int styleable FontFamilyFont_android_fontVariationSettings 2 ++int styleable FontFamilyFont_android_fontWeight 3 ++int styleable FontFamilyFont_android_ttcIndex 4 ++int styleable FontFamilyFont_font 5 ++int styleable FontFamilyFont_fontStyle 6 ++int styleable FontFamilyFont_fontVariationSettings 7 ++int styleable FontFamilyFont_fontWeight 8 ++int styleable FontFamilyFont_ttcIndex 9 ++int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } ++int styleable Fragment_android_id 0 ++int styleable Fragment_android_name 1 ++int styleable Fragment_android_tag 2 ++int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } ++int styleable FragmentContainerView_android_name 0 ++int styleable FragmentContainerView_android_tag 1 ++int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable GenericDraweeHierarchy_actualImageScaleType 0 ++int styleable GenericDraweeHierarchy_backgroundImage 1 ++int styleable GenericDraweeHierarchy_fadeDuration 2 ++int styleable GenericDraweeHierarchy_failureImage 3 ++int styleable GenericDraweeHierarchy_failureImageScaleType 4 ++int styleable GenericDraweeHierarchy_overlayImage 5 ++int styleable GenericDraweeHierarchy_placeholderImage 6 ++int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 ++int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 ++int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 ++int styleable GenericDraweeHierarchy_progressBarImage 10 ++int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 ++int styleable GenericDraweeHierarchy_retryImage 12 ++int styleable GenericDraweeHierarchy_retryImageScaleType 13 ++int styleable GenericDraweeHierarchy_roundAsCircle 14 ++int styleable GenericDraweeHierarchy_roundBottomEnd 15 ++int styleable GenericDraweeHierarchy_roundBottomLeft 16 ++int styleable GenericDraweeHierarchy_roundBottomRight 17 ++int styleable GenericDraweeHierarchy_roundBottomStart 18 ++int styleable GenericDraweeHierarchy_roundTopEnd 19 ++int styleable GenericDraweeHierarchy_roundTopLeft 20 ++int styleable GenericDraweeHierarchy_roundTopRight 21 ++int styleable GenericDraweeHierarchy_roundTopStart 22 ++int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 ++int styleable GenericDraweeHierarchy_roundedCornerRadius 24 ++int styleable GenericDraweeHierarchy_roundingBorderColor 25 ++int styleable GenericDraweeHierarchy_roundingBorderPadding 26 ++int styleable GenericDraweeHierarchy_roundingBorderWidth 27 ++int styleable GenericDraweeHierarchy_viewAspectRatio 28 ++int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } ++int styleable GradientColor_android_centerColor 0 ++int styleable GradientColor_android_centerX 1 ++int styleable GradientColor_android_centerY 2 ++int styleable GradientColor_android_endColor 3 ++int styleable GradientColor_android_endX 4 ++int styleable GradientColor_android_endY 5 ++int styleable GradientColor_android_gradientRadius 6 ++int styleable GradientColor_android_startColor 7 ++int styleable GradientColor_android_startX 8 ++int styleable GradientColor_android_startY 9 ++int styleable GradientColor_android_tileMode 10 ++int styleable GradientColor_android_type 11 ++int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } ++int styleable GradientColorItem_android_color 0 ++int styleable GradientColorItem_android_offset 1 ++int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } ++int styleable LinearLayoutCompat_android_baselineAligned 0 ++int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 ++int styleable LinearLayoutCompat_android_gravity 2 ++int styleable LinearLayoutCompat_android_orientation 3 ++int styleable LinearLayoutCompat_android_weightSum 4 ++int styleable LinearLayoutCompat_divider 5 ++int styleable LinearLayoutCompat_dividerPadding 6 ++int styleable LinearLayoutCompat_measureWithLargestChild 7 ++int styleable LinearLayoutCompat_showDividers 8 ++int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } ++int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 ++int styleable LinearLayoutCompat_Layout_android_layout_height 1 ++int styleable LinearLayoutCompat_Layout_android_layout_weight 2 ++int styleable LinearLayoutCompat_Layout_android_layout_width 3 ++int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } ++int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 ++int styleable ListPopupWindow_android_dropDownVerticalOffset 1 ++int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } ++int styleable MenuGroup_android_checkableBehavior 0 ++int styleable MenuGroup_android_enabled 1 ++int styleable MenuGroup_android_id 2 ++int styleable MenuGroup_android_menuCategory 3 ++int styleable MenuGroup_android_orderInCategory 4 ++int styleable MenuGroup_android_visible 5 ++int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable MenuItem_actionLayout 0 ++int styleable MenuItem_actionProviderClass 1 ++int styleable MenuItem_actionViewClass 2 ++int styleable MenuItem_alphabeticModifiers 3 ++int styleable MenuItem_android_alphabeticShortcut 4 ++int styleable MenuItem_android_checkable 5 ++int styleable MenuItem_android_checked 6 ++int styleable MenuItem_android_enabled 7 ++int styleable MenuItem_android_icon 8 ++int styleable MenuItem_android_id 9 ++int styleable MenuItem_android_menuCategory 10 ++int styleable MenuItem_android_numericShortcut 11 ++int styleable MenuItem_android_onClick 12 ++int styleable MenuItem_android_orderInCategory 13 ++int styleable MenuItem_android_title 14 ++int styleable MenuItem_android_titleCondensed 15 ++int styleable MenuItem_android_visible 16 ++int styleable MenuItem_contentDescription 17 ++int styleable MenuItem_iconTint 18 ++int styleable MenuItem_iconTintMode 19 ++int styleable MenuItem_numericModifiers 20 ++int styleable MenuItem_showAsAction 21 ++int styleable MenuItem_tooltipText 22 ++int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } ++int styleable MenuView_android_headerBackground 0 ++int styleable MenuView_android_horizontalDivider 1 ++int styleable MenuView_android_itemBackground 2 ++int styleable MenuView_android_itemIconDisabledAlpha 3 ++int styleable MenuView_android_itemTextAppearance 4 ++int styleable MenuView_android_verticalDivider 5 ++int styleable MenuView_android_windowAnimationStyle 6 ++int styleable MenuView_preserveIconSpacing 7 ++int styleable MenuView_subMenuArrow 8 ++int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } ++int styleable PopupWindow_android_popupAnimationStyle 0 ++int styleable PopupWindow_android_popupBackground 1 ++int styleable PopupWindow_overlapAnchor 2 ++int[] styleable PopupWindowBackgroundState { 0x0 } ++int styleable PopupWindowBackgroundState_state_above_anchor 0 ++int[] styleable RecycleListView { 0x0, 0x0 } ++int styleable RecycleListView_paddingBottomNoButtons 0 ++int styleable RecycleListView_paddingTopNoTitle 1 ++int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SearchView_android_focusable 0 ++int styleable SearchView_android_imeOptions 1 ++int styleable SearchView_android_inputType 2 ++int styleable SearchView_android_maxWidth 3 ++int styleable SearchView_closeIcon 4 ++int styleable SearchView_commitIcon 5 ++int styleable SearchView_defaultQueryHint 6 ++int styleable SearchView_goIcon 7 ++int styleable SearchView_iconifiedByDefault 8 ++int styleable SearchView_layout 9 ++int styleable SearchView_queryBackground 10 ++int styleable SearchView_queryHint 11 ++int styleable SearchView_searchHintIcon 12 ++int styleable SearchView_searchIcon 13 ++int styleable SearchView_submitBackground 14 ++int styleable SearchView_suggestionRowLayout 15 ++int styleable SearchView_voiceIcon 16 ++int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SimpleDraweeView_actualImageResource 0 ++int styleable SimpleDraweeView_actualImageUri 1 ++int styleable SimpleDraweeView_backgroundImage 2 ++int styleable SimpleDraweeView_fadeDuration 3 ++int styleable SimpleDraweeView_failureImage 4 ++int styleable SimpleDraweeView_failureImageScaleType 5 ++int styleable SimpleDraweeView_overlayImage 6 ++int styleable SimpleDraweeView_placeholderImage 7 ++int styleable SimpleDraweeView_placeholderImageScaleType 8 ++int styleable SimpleDraweeView_pressedStateOverlayImage 9 ++int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 ++int styleable SimpleDraweeView_progressBarImage 11 ++int styleable SimpleDraweeView_progressBarImageScaleType 12 ++int styleable SimpleDraweeView_retryImage 13 ++int styleable SimpleDraweeView_retryImageScaleType 14 ++int styleable SimpleDraweeView_roundAsCircle 15 ++int styleable SimpleDraweeView_roundBottomEnd 16 ++int styleable SimpleDraweeView_roundBottomLeft 17 ++int styleable SimpleDraweeView_roundBottomRight 18 ++int styleable SimpleDraweeView_roundBottomStart 19 ++int styleable SimpleDraweeView_roundTopEnd 20 ++int styleable SimpleDraweeView_roundTopLeft 21 ++int styleable SimpleDraweeView_roundTopRight 22 ++int styleable SimpleDraweeView_roundTopStart 23 ++int styleable SimpleDraweeView_roundWithOverlayColor 24 ++int styleable SimpleDraweeView_roundedCornerRadius 25 ++int styleable SimpleDraweeView_roundingBorderColor 26 ++int styleable SimpleDraweeView_roundingBorderPadding 27 ++int styleable SimpleDraweeView_roundingBorderWidth 28 ++int styleable SimpleDraweeView_viewAspectRatio 29 ++int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } ++int styleable Spinner_android_dropDownWidth 0 ++int styleable Spinner_android_entries 1 ++int styleable Spinner_android_popupBackground 2 ++int styleable Spinner_android_prompt 3 ++int styleable Spinner_popupTheme 4 ++int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } ++int styleable StateListDrawable_android_constantSize 0 ++int styleable StateListDrawable_android_dither 1 ++int styleable StateListDrawable_android_enterFadeDuration 2 ++int styleable StateListDrawable_android_exitFadeDuration 3 ++int styleable StateListDrawable_android_variablePadding 4 ++int styleable StateListDrawable_android_visible 5 ++int[] styleable StateListDrawableItem { 0x1010199 } ++int styleable StateListDrawableItem_android_drawable 0 ++int[] styleable SwipeRefreshLayout { 0x0 } ++int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 ++int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SwitchCompat_android_textOff 0 ++int styleable SwitchCompat_android_textOn 1 ++int styleable SwitchCompat_android_thumb 2 ++int styleable SwitchCompat_showText 3 ++int styleable SwitchCompat_splitTrack 4 ++int styleable SwitchCompat_switchMinWidth 5 ++int styleable SwitchCompat_switchPadding 6 ++int styleable SwitchCompat_switchTextAppearance 7 ++int styleable SwitchCompat_thumbTextPadding 8 ++int styleable SwitchCompat_thumbTint 9 ++int styleable SwitchCompat_thumbTintMode 10 ++int styleable SwitchCompat_track 11 ++int styleable SwitchCompat_trackTint 12 ++int styleable SwitchCompat_trackTintMode 13 ++int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } ++int styleable TextAppearance_android_fontFamily 0 ++int styleable TextAppearance_android_shadowColor 1 ++int styleable TextAppearance_android_shadowDx 2 ++int styleable TextAppearance_android_shadowDy 3 ++int styleable TextAppearance_android_shadowRadius 4 ++int styleable TextAppearance_android_textColor 5 ++int styleable TextAppearance_android_textColorHint 6 ++int styleable TextAppearance_android_textColorLink 7 ++int styleable TextAppearance_android_textFontWeight 8 ++int styleable TextAppearance_android_textSize 9 ++int styleable TextAppearance_android_textStyle 10 ++int styleable TextAppearance_android_typeface 11 ++int styleable TextAppearance_fontFamily 12 ++int styleable TextAppearance_fontVariationSettings 13 ++int styleable TextAppearance_textAllCaps 14 ++int styleable TextAppearance_textLocale 15 ++int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable Toolbar_android_gravity 0 ++int styleable Toolbar_android_minHeight 1 ++int styleable Toolbar_buttonGravity 2 ++int styleable Toolbar_collapseContentDescription 3 ++int styleable Toolbar_collapseIcon 4 ++int styleable Toolbar_contentInsetEnd 5 ++int styleable Toolbar_contentInsetEndWithActions 6 ++int styleable Toolbar_contentInsetLeft 7 ++int styleable Toolbar_contentInsetRight 8 ++int styleable Toolbar_contentInsetStart 9 ++int styleable Toolbar_contentInsetStartWithNavigation 10 ++int styleable Toolbar_logo 11 ++int styleable Toolbar_logoDescription 12 ++int styleable Toolbar_maxButtonHeight 13 ++int styleable Toolbar_menu 14 ++int styleable Toolbar_navigationContentDescription 15 ++int styleable Toolbar_navigationIcon 16 ++int styleable Toolbar_popupTheme 17 ++int styleable Toolbar_subtitle 18 ++int styleable Toolbar_subtitleTextAppearance 19 ++int styleable Toolbar_subtitleTextColor 20 ++int styleable Toolbar_title 21 ++int styleable Toolbar_titleMargin 22 ++int styleable Toolbar_titleMarginBottom 23 ++int styleable Toolbar_titleMarginEnd 24 ++int styleable Toolbar_titleMarginStart 25 ++int styleable Toolbar_titleMarginTop 26 ++int styleable Toolbar_titleMargins 27 ++int styleable Toolbar_titleTextAppearance 28 ++int styleable Toolbar_titleTextColor 29 ++int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } ++int styleable View_android_focusable 0 ++int styleable View_android_theme 1 ++int styleable View_paddingEnd 2 ++int styleable View_paddingStart 3 ++int styleable View_theme 4 ++int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } ++int styleable ViewBackgroundHelper_android_background 0 ++int styleable ViewBackgroundHelper_backgroundTint 1 ++int styleable ViewBackgroundHelper_backgroundTintMode 2 ++int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } ++int styleable ViewStubCompat_android_id 0 ++int styleable ViewStubCompat_android_inflatedId 1 ++int styleable ViewStubCompat_android_layout 2 ++int xml rn_dev_preferences 0x0 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_command_livemarkdown b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_command_livemarkdown +new file mode 100755 +index 0000000..123bb7e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_command_livemarkdown +@@ -0,0 +1,4 @@ ++/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a \ ++ livemarkdown +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_model.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_model.json +new file mode 100644 +index 0000000..7996153 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_model.json +@@ -0,0 +1,214 @@ ++{ ++ "info": { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "soFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a", ++ "soRepublishFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cmake/debug/obj/arm64-v8a", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx", ++ "intermediatesBaseFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates", ++ "intermediatesFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx", ++ "gradleModulePathName": ":expensify_react-native-live-markdown", ++ "moduleRootFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android", ++ "moduleBuildFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build.gradle", ++ "makeFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "ndkFolderBeforeSymLinking": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "ndkVersion": "27.0.12077973", ++ "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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cmakeVersionFromDsl": "3.22.1" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/Mobile-Expensify/Android", ++ "sdkFolder": "/Users/chris/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "ideBuildTargetAbi": "arm64-v8a", ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "4k2e5u4p3k1v4uu4d642o422io324kw2t5y2j5g2g3719431b292y53173j2k", ++ "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.0.12077973.\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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "configurationArguments": [ ++ "-H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp", ++ "-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/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab", ++ "-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79" ++ ], ++ "stlLibraryFile": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stderr_livemarkdown.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stderr_livemarkdown.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stdout_livemarkdown.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stdout_livemarkdown.txt +new file mode 100644 +index 0000000..716f02f +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stdout_livemarkdown.txt +@@ -0,0 +1,3 @@ ++ninja: Entering directory `/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a' ++[0/2] Re-checking globbed directories... ++ninja: no work to do. +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_command +new file mode 100755 +index 0000000..a81f0fc +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_command +@@ -0,0 +1,21 @@ ++/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp \ ++ -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/chris/Library/Android/sdk/ndk/27.0.12077973 \ ++ -DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab \ ++ -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DANDROID_TOOLCHAIN=clang \ ++ -DREACT_NATIVE_MINOR_VERSION=79 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stdout.txt +new file mode 100644 +index 0000000..1c4d6ce +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.1 ++-- The CXX compiler identification is Clang 18.0.1 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1089_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1089_timing.txt +new file mode 100644 +index 0000000..5e2a36b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1089_timing.txt +@@ -0,0 +1,3 @@ ++# C/C++ build system timings ++generate_cxx_metadata 18ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1284_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1284_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1284_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1473_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1473_timing.txt +new file mode 100644 +index 0000000..6443fc5 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1473_timing.txt +@@ -0,0 +1,3 @@ ++# C/C++ build system timings ++generate_cxx_metadata 14ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1652_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1652_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1652_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1863_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1863_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1863_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_316_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_316_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_316_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_353_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_353_timing.txt +new file mode 100644 +index 0000000..2225dda +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_353_timing.txt +@@ -0,0 +1,17 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ [gap of 53ms] ++ exec-prefab 1660ms ++ [gap of 43ms] ++ generate-prefab-packages completed in 1756ms ++ execute-generate-process ++ exec-configure 4928ms ++ [gap of 23ms] ++ execute-generate-process completed in 4957ms ++ [gap of 26ms] ++ remove-unexpected-so-files 20ms ++ [gap of 76ms] ++ write-metadata-json-to-file 139ms ++generate_cxx_metadata completed in 7007ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_529_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_529_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_529_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_706_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_706_timing.txt +new file mode 100644 +index 0000000..0d22a9b +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_706_timing.txt +@@ -0,0 +1,7 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ [gap of 62ms] ++ create-invalidation-state 43ms ++ [gap of 23ms] ++generate_cxx_metadata completed in 128ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_853_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_853_timing.txt +new file mode 100644 +index 0000000..67efcfd +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_853_timing.txt +@@ -0,0 +1,3 @@ ++# C/C++ build system timings ++generate_cxx_metadata 15ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/metadata_generation_record.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/metadata_generation_record.json +new file mode 100644 +index 0000000..ee43a6d +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON \u0027/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json\u0027 was up-to-date", ++ "file_": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_command +new file mode 100755 +index 0000000..26b5d32 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_command +@@ -0,0 +1,22 @@ ++"/Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java" \ ++ --class-path \ ++ /Users/chris/.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/b1/xj_1nb1j5w9gx10ntjfr6jc40000gn/T/agp-prefab-staging18255998437684026286/staged-cli-output \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123 \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274 \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64 \ ++ /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/build_model.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/build_model.json +new file mode 100644 +index 0000000..069a4a5 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/build_model.json +@@ -0,0 +1,216 @@ ++{ ++ "info": { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "soFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86", ++ "soRepublishFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cmake/debug/obj/x86", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx", ++ "intermediatesBaseFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates", ++ "intermediatesFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx", ++ "gradleModulePathName": ":expensify_react-native-live-markdown", ++ "moduleRootFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android", ++ "moduleBuildFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build.gradle", ++ "makeFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "ndkFolderBeforeSymLinking": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "ndkVersion": "27.0.12077973", ++ "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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cmakeVersionFromDsl": "3.22.1" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/Mobile-Expensify/Android", ++ "sdkFolder": "/Users/chris/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "4k2e5u4p3k1v4uu4d642o422io324kw2t5y2j5g2g3719431b292y53173j2k", ++ "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.0.12077973.\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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "configurationArguments": [ ++ "-H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp", ++ "-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/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab", ++ "-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79" ++ ], ++ "stlLibraryFile": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_command +new file mode 100755 +index 0000000..d7e66f9 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_command +@@ -0,0 +1,21 @@ ++/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp \ ++ -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/chris/Library/Android/sdk/ndk/27.0.12077973 \ ++ -DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab \ ++ -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DANDROID_TOOLCHAIN=clang \ ++ -DREACT_NATIVE_MINOR_VERSION=79 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stdout.txt +new file mode 100644 +index 0000000..c390583 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.1 ++-- The CXX compiler identification is Clang 18.0.1 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_245_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_245_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_245_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_252_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_252_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_252_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_260_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_260_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_260_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_34_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_34_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_34_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_484_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_484_timing.txt +new file mode 100644 +index 0000000..a01da15 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_484_timing.txt +@@ -0,0 +1,3 @@ ++# C/C++ build system timings ++generate_cxx_metadata 17ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_555_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_555_timing.txt +new file mode 100644 +index 0000000..3b12aa9 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_555_timing.txt +@@ -0,0 +1,11 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ [gap of 31ms] ++ exec-prefab 573ms ++ generate-prefab-packages completed in 611ms ++ execute-generate-process ++ exec-configure 668ms ++ execute-generate-process completed in 671ms ++generate_cxx_metadata completed in 1289ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_683_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_683_timing.txt +new file mode 100644 +index 0000000..9708df4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_683_timing.txt +@@ -0,0 +1,2 @@ ++# C/C++ build system timings ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/metadata_generation_record.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/metadata_generation_record.json +new file mode 100644 +index 0000000..47f7553 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", ++ "tag_": "debug|x86", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON \u0027/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json\u0027 was up-to-date", ++ "file_": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_command +new file mode 100755 +index 0000000..fa1fcc0 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_command +@@ -0,0 +1,22 @@ ++"/Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java" \ ++ --class-path \ ++ /Users/chris/.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/b1/xj_1nb1j5w9gx10ntjfr6jc40000gn/T/agp-prefab-staging19864913764767043/staged-cli-output \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3 \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4 \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55 \ ++ /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libc++_shared.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..a80c8b3 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libfbjni.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..aadd325 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libjsi.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libjsi.so +new file mode 100755 +index 0000000..7fe4b18 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so +new file mode 100755 +index 0000000..39b0434 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libreactnative.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libreactnative.so +new file mode 100755 +index 0000000..cd0074f +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libworklets.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libworklets.so +new file mode 100755 +index 0000000..7b3a105 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libworklets.so differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/build_model.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/build_model.json +new file mode 100644 +index 0000000..2c2e08e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/build_model.json +@@ -0,0 +1,216 @@ ++{ ++ "info": { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "soFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86", ++ "soRepublishFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cmake/release/obj/x86", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "release", ++ "isDebuggableEnabled": false, ++ "validAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx", ++ "intermediatesBaseFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates", ++ "intermediatesFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx", ++ "gradleModulePathName": ":expensify_react-native-live-markdown", ++ "moduleRootFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android", ++ "moduleBuildFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build.gradle", ++ "makeFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "ndkFolderBeforeSymLinking": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "ndkVersion": "27.0.12077973", ++ "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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cmakeVersionFromDsl": "3.22.1" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/Mobile-Expensify/Android", ++ "sdkFolder": "/Users/chris/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/release/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/release/prefab", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", ++ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [ ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json", ++ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json" ++ ], ++ "stlType": "c++_shared", ++ "optimizationTag": "RelWithDebInfo" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "33o4e1g2f42t4fl4s2g5txy4f2g1u6512m604o2b4g2i6k575k3x551u5j", ++ "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.0.12077973.\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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dRelWithDebInfo\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/$HASH/prefab/$ABI/prefab\n-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_MINOR_VERSION\u003d79", ++ "configurationArguments": [ ++ "-H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp", ++ "-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/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86", ++ "-DCMAKE_BUILD_TYPE\u003dRelWithDebInfo", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab", ++ "-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d79" ++ ], ++ "stlLibraryFile": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_command +new file mode 100755 +index 0000000..85527c3 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_command +@@ -0,0 +1,21 @@ ++/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp \ ++ -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/chris/Library/Android/sdk/ndk/27.0.12077973 \ ++ -DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 \ ++ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab \ ++ -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DANDROID_TOOLCHAIN=clang \ ++ -DREACT_NATIVE_MINOR_VERSION=79 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stdout.txt +new file mode 100644 +index 0000000..ecce047 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.1 ++-- The CXX compiler identification is Clang 18.0.1 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_251_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_251_timing.txt +new file mode 100644 +index 0000000..3bd9be9 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_251_timing.txt +@@ -0,0 +1,3 @@ ++# C/C++ build system timings ++generate_cxx_metadata 10ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_255_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_255_timing.txt +new file mode 100644 +index 0000000..735b593 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_255_timing.txt +@@ -0,0 +1,13 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ [gap of 12ms] ++ exec-prefab 611ms ++ generate-prefab-packages completed in 628ms ++ execute-generate-process ++ exec-configure 1010ms ++ [gap of 31ms] ++ execute-generate-process completed in 1042ms ++ [gap of 15ms] ++generate_cxx_metadata completed in 1686ms ++ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/metadata_generation_record.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/metadata_generation_record.json +new file mode 100644 +index 0000000..1ac8b8f +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", ++ "tag_": "release|x86", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON \u0027/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json\u0027 was up-to-date", ++ "file_": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", ++ "tag_": "release|x86", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", ++ "tag_": "release|x86", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_command +new file mode 100755 +index 0000000..d10a00f +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_command +@@ -0,0 +1,22 @@ ++/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/chris/.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/b1/xj_1nb1j5w9gx10ntjfr6jc40000gn/T/agp-prefab-staging6631222449705268583/staged-cli-output \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5 \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6 \ ++ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5 \ ++ /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab.json +new file mode 100644 +index 0000000..5688f33 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "ReactAndroid", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.79.2" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab_publication.json +new file mode 100644 +index 0000000..49b3cfc +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab_publication.json +@@ -0,0 +1,72 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":packages:react-native:ReactAndroid", ++ "packageInfo": { ++ "packageName": "ReactAndroid", ++ "packageVersion": "0.79.2", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "hermestooling", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libhermestooling.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/arm64-v8a/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "jsctooling", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsctooling.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/arm64-v8a/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "jsi", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/arm64-v8a/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "reactnative", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/arm64-v8a/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab.json +new file mode 100644 +index 0000000..5688f33 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "ReactAndroid", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.79.2" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab_publication.json +new file mode 100644 +index 0000000..15c8a0d +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab_publication.json +@@ -0,0 +1,72 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":packages:react-native:ReactAndroid", ++ "packageInfo": { ++ "packageName": "ReactAndroid", ++ "packageVersion": "0.79.2", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "hermestooling", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libhermestooling.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/x86/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "jsctooling", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsctooling.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/x86/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "jsi", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/x86/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "reactnative", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/x86/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab.json +new file mode 100644 +index 0000000..5688f33 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "ReactAndroid", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.79.2" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab_publication.json +new file mode 100644 +index 0000000..4aa6b39 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab_publication.json +@@ -0,0 +1,72 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/release/prefab", ++ "gradlePath": ":packages:react-native:ReactAndroid", ++ "packageInfo": { ++ "packageName": "ReactAndroid", ++ "packageVersion": "0.79.2", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "hermestooling", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libhermestooling.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/RelWithDebInfo/5x4pv4p6/x86/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "jsctooling", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsctooling.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/RelWithDebInfo/5x4pv4p6/x86/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "jsi", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/RelWithDebInfo/5x4pv4p6/x86/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "reactnative", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/RelWithDebInfo/5x4pv4p6/x86/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/module.json +new file mode 100644 +index 0000000..4438faf +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/module.json +@@ -0,0 +1,5 @@ ++{ ++ "export_libraries": [], ++ "library_name": "libhermes", ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab.json +new file mode 100644 +index 0000000..b559523 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "hermes-engine", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.79.2" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab_publication.json +new file mode 100644 +index 0000000..5d5f08e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab_publication.json +@@ -0,0 +1,28 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":packages:react-native:ReactAndroid:hermes-engine", ++ "packageInfo": { ++ "packageName": "hermes-engine", ++ "packageVersion": "0.79.2", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "libhermes", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers", ++ "moduleExportLibraries": [], ++ "moduleLibraryName": "libhermes", ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/Release/5o5v6w66/obj/arm64-v8a/libhermes.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/.cxx/Release/5o5v6w66/arm64-v8a/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/module.json +new file mode 100644 +index 0000000..4438faf +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/module.json +@@ -0,0 +1,5 @@ ++{ ++ "export_libraries": [], ++ "library_name": "libhermes", ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab.json +new file mode 100644 +index 0000000..b559523 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "hermes-engine", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.79.2" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab_publication.json +new file mode 100644 +index 0000000..34cc8b8 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab_publication.json +@@ -0,0 +1,28 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/release/prefab", ++ "gradlePath": ":packages:react-native:ReactAndroid:hermes-engine", ++ "packageInfo": { ++ "packageName": "hermes-engine", ++ "packageVersion": "0.79.2", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "libhermes", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers", ++ "moduleExportLibraries": [], ++ "moduleLibraryName": "libhermes", ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/MinSizeRel/2r4v3745/obj/x86/libhermes.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/.cxx/MinSizeRel/2r4v3745/x86/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/module.json +new file mode 100644 +index 0000000..4438faf +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/module.json +@@ -0,0 +1,5 @@ ++{ ++ "export_libraries": [], ++ "library_name": "libhermes", ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab.json +new file mode 100644 +index 0000000..b559523 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab.json +@@ -0,0 +1,6 @@ ++{ ++ "name": "hermes-engine", ++ "schema_version": 2, ++ "dependencies": [], ++ "version": "0.79.2" ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab_publication.json +new file mode 100644 +index 0000000..319c822 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab_publication.json +@@ -0,0 +1,28 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":packages:react-native:ReactAndroid:hermes-engine", ++ "packageInfo": { ++ "packageName": "hermes-engine", ++ "packageVersion": "0.79.2", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "libhermes", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers", ++ "moduleExportLibraries": [], ++ "moduleLibraryName": "libhermes", ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/Release/5o5v6w66/obj/x86/libhermes.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/.cxx/Release/5o5v6w66/x86/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab.json +new file mode 100644 +index 0000000..3551a3a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab_publication.json +new file mode 100644 +index 0000000..b7c6bf0 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab_publication.json +@@ -0,0 +1,42 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", ++ "gradlePath": ":react-native-reanimated", ++ "packageInfo": { ++ "packageName": "react-native-reanimated", ++ "packageVersion": "3.17.1", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "reanimated", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libreanimated.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/RelWithDebInfo/3i3ot5h5/x86/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/RelWithDebInfo/3i3ot5h5/x86/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab.json +new file mode 100644 +index 0000000..3551a3a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab_publication.json +new file mode 100644 +index 0000000..067a43e +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab_publication.json +@@ -0,0 +1,42 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libreanimated.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/Debug/5bc2d5h2/arm64-v8a/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/Debug/5bc2d5h2/arm64-v8a/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/include/placeholder.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/libs/android.x86/abi.json +new file mode 100644 +index 0000000..e37d79c +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/libs/android.x86/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab.json +new file mode 100644 +index 0000000..3551a3a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab_publication.json +new file mode 100644 +index 0000000..49d82c1 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab_publication.json +@@ -0,0 +1,42 @@ ++{ ++ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libreanimated.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/Debug/5bc2d5h2/x86/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "x86", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/Debug/5bc2d5h2/x86/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..9939f51 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Tue Jun 24 13:45:23 CEST 2025 +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..2e0c04a +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..369f79d +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..cf75989 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..19a8a34 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/BuildConfig.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/BuildConfig.class +new file mode 100644 +index 0000000..aac1d38 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/BuildConfig.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomFabricUIManager.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomFabricUIManager.class +new file mode 100644 +index 0000000..020f19a +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomFabricUIManager.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager$1.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager$1.class +new file mode 100644 +index 0000000..bca3262 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager$1.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager.class +new file mode 100644 +index 0000000..890140c +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModule.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModule.class +new file mode 100644 +index 0000000..1a546f6 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModule.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModuleSpec.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModuleSpec.class +new file mode 100644 +index 0000000..b4c79eb +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModuleSpec.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage$1.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage$1.class +new file mode 100644 +index 0000000..f7f099e +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage$1.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage.class +new file mode 100644 +index 0000000..a4d06c7 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownFormatter.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownFormatter.class +new file mode 100644 +index 0000000..d34e5af +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownFormatter.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownParser.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownParser.class +new file mode 100644 +index 0000000..953adca +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownParser.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownRange.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownRange.class +new file mode 100644 +index 0000000..079da17 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownRange.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle$1.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle$1.class +new file mode 100644 +index 0000000..b2e7aa7 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle$1.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle.class +new file mode 100644 +index 0000000..9c4571a +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorView.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorView.class +new file mode 100644 +index 0000000..6bfc7f4 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorView.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManager.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManager.class +new file mode 100644 +index 0000000..38f2716 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManager.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManagerSpec.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManagerSpec.class +new file mode 100644 +index 0000000..074be7b +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManagerSpec.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextWatcher.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextWatcher.class +new file mode 100644 +index 0000000..0cb86d3 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextWatcher.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownUtils.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownUtils.class +new file mode 100644 +index 0000000..c52c7b3 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownUtils.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.class +new file mode 100644 +index 0000000..c07f498 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBackgroundColorSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBackgroundColorSpan.class +new file mode 100644 +index 0000000..c262976 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBackgroundColorSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBlockquoteSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBlockquoteSpan.class +new file mode 100644 +index 0000000..5587e87 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBlockquoteSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBoldSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBoldSpan.class +new file mode 100644 +index 0000000..1772c80 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBoldSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownEmojiSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownEmojiSpan.class +new file mode 100644 +index 0000000..3576baf +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownEmojiSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontFamilySpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontFamilySpan.class +new file mode 100644 +index 0000000..6114373 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontFamilySpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontSizeSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontSizeSpan.class +new file mode 100644 +index 0000000..c316580 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontSizeSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownForegroundColorSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownForegroundColorSpan.class +new file mode 100644 +index 0000000..147fb40 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownForegroundColorSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownItalicSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownItalicSpan.class +new file mode 100644 +index 0000000..2400c0b +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownItalicSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownLineHeightSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownLineHeightSpan.class +new file mode 100644 +index 0000000..b650d27 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownLineHeightSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownSpan.class +new file mode 100644 +index 0000000..880413a +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownStrikethroughSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownStrikethroughSpan.class +new file mode 100644 +index 0000000..9c27ef3 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownStrikethroughSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownUnderlineSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownUnderlineSpan.class +new file mode 100644 +index 0000000..7753002 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownUnderlineSpan.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.class +new file mode 100644 +index 0000000..e3d558e +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.class +new file mode 100644 +index 0000000..391687a +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.class differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/liblivemarkdown.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/liblivemarkdown.so +new file mode 100644 +index 0000000..39b0434 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/liblivemarkdown.so differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..78ac5b8 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..2258aa4 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..647d884 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/liblivemarkdown.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/liblivemarkdown.so +new file mode 100644 +index 0000000..39b0434 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/liblivemarkdown.so differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..3a80e39 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..d110fe0 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1,1489 @@ ++com.expensify.livemarkdown ++anim abc_fade_in ++anim abc_fade_out ++anim abc_grow_fade_in_from_bottom ++anim abc_popup_enter ++anim abc_popup_exit ++anim abc_shrink_fade_out_from_bottom ++anim abc_slide_in_bottom ++anim abc_slide_in_top ++anim abc_slide_out_bottom ++anim abc_slide_out_top ++anim abc_tooltip_enter ++anim abc_tooltip_exit ++anim btn_checkbox_to_checked_box_inner_merged_animation ++anim btn_checkbox_to_checked_box_outer_merged_animation ++anim btn_checkbox_to_checked_icon_null_animation ++anim btn_checkbox_to_unchecked_box_inner_merged_animation ++anim btn_checkbox_to_unchecked_check_path_merged_animation ++anim btn_checkbox_to_unchecked_icon_null_animation ++anim btn_radio_to_off_mtrl_dot_group_animation ++anim btn_radio_to_off_mtrl_ring_outer_animation ++anim btn_radio_to_off_mtrl_ring_outer_path_animation ++anim btn_radio_to_on_mtrl_dot_group_animation ++anim btn_radio_to_on_mtrl_ring_outer_animation ++anim btn_radio_to_on_mtrl_ring_outer_path_animation ++anim catalyst_fade_in ++anim catalyst_fade_out ++anim catalyst_push_up_in ++anim catalyst_push_up_out ++anim catalyst_slide_down ++anim catalyst_slide_up ++anim fragment_fast_out_extra_slow_in ++animator fragment_close_enter ++animator fragment_close_exit ++animator fragment_fade_enter ++animator fragment_fade_exit ++animator fragment_open_enter ++animator fragment_open_exit ++attr actionBarDivider ++attr actionBarItemBackground ++attr actionBarPopupTheme ++attr actionBarSize ++attr actionBarSplitStyle ++attr actionBarStyle ++attr actionBarTabBarStyle ++attr actionBarTabStyle ++attr actionBarTabTextStyle ++attr actionBarTheme ++attr actionBarWidgetTheme ++attr actionButtonStyle ++attr actionDropDownStyle ++attr actionLayout ++attr actionMenuTextAppearance ++attr actionMenuTextColor ++attr actionModeBackground ++attr actionModeCloseButtonStyle ++attr actionModeCloseContentDescription ++attr actionModeCloseDrawable ++attr actionModeCopyDrawable ++attr actionModeCutDrawable ++attr actionModeFindDrawable ++attr actionModePasteDrawable ++attr actionModePopupWindowStyle ++attr actionModeSelectAllDrawable ++attr actionModeShareDrawable ++attr actionModeSplitBackground ++attr actionModeStyle ++attr actionModeTheme ++attr actionModeWebSearchDrawable ++attr actionOverflowButtonStyle ++attr actionOverflowMenuStyle ++attr actionProviderClass ++attr actionViewClass ++attr activityChooserViewStyle ++attr actualImageResource ++attr actualImageScaleType ++attr actualImageUri ++attr alertDialogButtonGroupStyle ++attr alertDialogCenterButtons ++attr alertDialogStyle ++attr alertDialogTheme ++attr allowStacking ++attr alpha ++attr alphabeticModifiers ++attr arrowHeadLength ++attr arrowShaftLength ++attr autoCompleteTextViewStyle ++attr autoSizeMaxTextSize ++attr autoSizeMinTextSize ++attr autoSizePresetSizes ++attr autoSizeStepGranularity ++attr autoSizeTextType ++attr autofillInlineSuggestionChip ++attr autofillInlineSuggestionEndIconStyle ++attr autofillInlineSuggestionStartIconStyle ++attr autofillInlineSuggestionSubtitle ++attr autofillInlineSuggestionTitle ++attr background ++attr backgroundImage ++attr backgroundSplit ++attr backgroundStacked ++attr backgroundTint ++attr backgroundTintMode ++attr barLength ++attr borderlessButtonStyle ++attr buttonBarButtonStyle ++attr buttonBarNegativeButtonStyle ++attr buttonBarNeutralButtonStyle ++attr buttonBarPositiveButtonStyle ++attr buttonBarStyle ++attr buttonCompat ++attr buttonGravity ++attr buttonIconDimen ++attr buttonPanelSideLayout ++attr buttonStyle ++attr buttonStyleSmall ++attr buttonTint ++attr buttonTintMode ++attr checkMarkCompat ++attr checkMarkTint ++attr checkMarkTintMode ++attr checkboxStyle ++attr checkedTextViewStyle ++attr closeIcon ++attr closeItemLayout ++attr collapseContentDescription ++attr collapseIcon ++attr color ++attr colorAccent ++attr colorBackgroundFloating ++attr colorButtonNormal ++attr colorControlActivated ++attr colorControlHighlight ++attr colorControlNormal ++attr colorError ++attr colorPrimary ++attr colorPrimaryDark ++attr colorSwitchThumbNormal ++attr commitIcon ++attr contentDescription ++attr contentInsetEnd ++attr contentInsetEndWithActions ++attr contentInsetLeft ++attr contentInsetRight ++attr contentInsetStart ++attr contentInsetStartWithNavigation ++attr controlBackground ++attr customNavigationLayout ++attr defaultQueryHint ++attr dialogCornerRadius ++attr dialogPreferredPadding ++attr dialogTheme ++attr displayOptions ++attr divider ++attr dividerHorizontal ++attr dividerPadding ++attr dividerVertical ++attr drawableBottomCompat ++attr drawableEndCompat ++attr drawableLeftCompat ++attr drawableRightCompat ++attr drawableSize ++attr drawableStartCompat ++attr drawableTint ++attr drawableTintMode ++attr drawableTopCompat ++attr drawerArrowStyle ++attr dropDownListViewStyle ++attr dropdownListPreferredItemHeight ++attr editTextBackground ++attr editTextColor ++attr editTextStyle ++attr elevation ++attr emojiCompatEnabled ++attr expandActivityOverflowButtonDrawable ++attr fadeDuration ++attr failureImage ++attr failureImageScaleType ++attr firstBaselineToTopHeight ++attr font ++attr fontFamily ++attr fontProviderAuthority ++attr fontProviderCerts ++attr fontProviderFetchStrategy ++attr fontProviderFetchTimeout ++attr fontProviderPackage ++attr fontProviderQuery ++attr fontProviderSystemFontFamily ++attr fontStyle ++attr fontVariationSettings ++attr fontWeight ++attr gapBetweenBars ++attr goIcon ++attr height ++attr hideOnContentScroll ++attr homeAsUpIndicator ++attr homeLayout ++attr icon ++attr iconTint ++attr iconTintMode ++attr iconifiedByDefault ++attr imageButtonStyle ++attr indeterminateProgressStyle ++attr initialActivityCount ++attr isAutofillInlineSuggestionTheme ++attr isLightTheme ++attr itemPadding ++attr lStar ++attr lastBaselineToBottomHeight ++attr layout ++attr lineHeight ++attr listChoiceBackgroundIndicator ++attr listChoiceIndicatorMultipleAnimated ++attr listChoiceIndicatorSingleAnimated ++attr listDividerAlertDialog ++attr listItemLayout ++attr listLayout ++attr listMenuViewStyle ++attr listPopupWindowStyle ++attr listPreferredItemHeight ++attr listPreferredItemHeightLarge ++attr listPreferredItemHeightSmall ++attr listPreferredItemPaddingEnd ++attr listPreferredItemPaddingLeft ++attr listPreferredItemPaddingRight ++attr listPreferredItemPaddingStart ++attr logo ++attr logoDescription ++attr maxButtonHeight ++attr measureWithLargestChild ++attr menu ++attr multiChoiceItemLayout ++attr navigationContentDescription ++attr navigationIcon ++attr navigationMode ++attr nestedScrollViewStyle ++attr numericModifiers ++attr overlapAnchor ++attr overlayImage ++attr paddingBottomNoButtons ++attr paddingEnd ++attr paddingStart ++attr paddingTopNoTitle ++attr panelBackground ++attr panelMenuListTheme ++attr panelMenuListWidth ++attr placeholderImage ++attr placeholderImageScaleType ++attr popupMenuStyle ++attr popupTheme ++attr popupWindowStyle ++attr preserveIconSpacing ++attr pressedStateOverlayImage ++attr progressBarAutoRotateInterval ++attr progressBarImage ++attr progressBarImageScaleType ++attr progressBarPadding ++attr progressBarStyle ++attr queryBackground ++attr queryHint ++attr queryPatterns ++attr radioButtonStyle ++attr ratingBarStyle ++attr ratingBarStyleIndicator ++attr ratingBarStyleSmall ++attr retryImage ++attr retryImageScaleType ++attr roundAsCircle ++attr roundBottomEnd ++attr roundBottomLeft ++attr roundBottomRight ++attr roundBottomStart ++attr roundTopEnd ++attr roundTopLeft ++attr roundTopRight ++attr roundTopStart ++attr roundWithOverlayColor ++attr roundedCornerRadius ++attr roundingBorderColor ++attr roundingBorderPadding ++attr roundingBorderWidth ++attr searchHintIcon ++attr searchIcon ++attr searchViewStyle ++attr seekBarStyle ++attr selectableItemBackground ++attr selectableItemBackgroundBorderless ++attr shortcutMatchRequired ++attr showAsAction ++attr showDividers ++attr showText ++attr showTitle ++attr singleChoiceItemLayout ++attr spinBars ++attr spinnerDropDownItemStyle ++attr spinnerStyle ++attr splitTrack ++attr srcCompat ++attr state_above_anchor ++attr subMenuArrow ++attr submitBackground ++attr subtitle ++attr subtitleTextAppearance ++attr subtitleTextColor ++attr subtitleTextStyle ++attr suggestionRowLayout ++attr swipeRefreshLayoutProgressSpinnerBackgroundColor ++attr switchMinWidth ++attr switchPadding ++attr switchStyle ++attr switchTextAppearance ++attr textAllCaps ++attr textAppearanceLargePopupMenu ++attr textAppearanceListItem ++attr textAppearanceListItemSecondary ++attr textAppearanceListItemSmall ++attr textAppearancePopupMenuHeader ++attr textAppearanceSearchResultSubtitle ++attr textAppearanceSearchResultTitle ++attr textAppearanceSmallPopupMenu ++attr textColorAlertDialogListItem ++attr textColorSearchUrl ++attr textLocale ++attr theme ++attr thickness ++attr thumbTextPadding ++attr thumbTint ++attr thumbTintMode ++attr tickMark ++attr tickMarkTint ++attr tickMarkTintMode ++attr tint ++attr tintMode ++attr title ++attr titleMargin ++attr titleMarginBottom ++attr titleMarginEnd ++attr titleMarginStart ++attr titleMarginTop ++attr titleMargins ++attr titleTextAppearance ++attr titleTextColor ++attr titleTextStyle ++attr toolbarNavigationButtonStyle ++attr toolbarStyle ++attr tooltipForegroundColor ++attr tooltipFrameBackground ++attr tooltipText ++attr track ++attr trackTint ++attr trackTintMode ++attr ttcIndex ++attr viewAspectRatio ++attr viewInflaterClass ++attr voiceIcon ++attr windowActionBar ++attr windowActionBarOverlay ++attr windowActionModeOverlay ++attr windowFixedHeightMajor ++attr windowFixedHeightMinor ++attr windowFixedWidthMajor ++attr windowFixedWidthMinor ++attr windowMinWidthMajor ++attr windowMinWidthMinor ++attr windowNoTitle ++bool abc_action_bar_embed_tabs ++bool abc_config_actionMenuItemAllCaps ++color abc_background_cache_hint_selector_material_dark ++color abc_background_cache_hint_selector_material_light ++color abc_btn_colored_borderless_text_material ++color abc_btn_colored_text_material ++color abc_color_highlight_material ++color abc_decor_view_status_guard ++color abc_decor_view_status_guard_light ++color abc_hint_foreground_material_dark ++color abc_hint_foreground_material_light ++color abc_primary_text_disable_only_material_dark ++color abc_primary_text_disable_only_material_light ++color abc_primary_text_material_dark ++color abc_primary_text_material_light ++color abc_search_url_text ++color abc_search_url_text_normal ++color abc_search_url_text_pressed ++color abc_search_url_text_selected ++color abc_secondary_text_material_dark ++color abc_secondary_text_material_light ++color abc_tint_btn_checkable ++color abc_tint_default ++color abc_tint_edittext ++color abc_tint_seek_thumb ++color abc_tint_spinner ++color abc_tint_switch_track ++color accent_material_dark ++color accent_material_light ++color androidx_core_ripple_material_light ++color androidx_core_secondary_text_default_material_light ++color background_floating_material_dark ++color background_floating_material_light ++color background_material_dark ++color background_material_light ++color bright_foreground_disabled_material_dark ++color bright_foreground_disabled_material_light ++color bright_foreground_inverse_material_dark ++color bright_foreground_inverse_material_light ++color bright_foreground_material_dark ++color bright_foreground_material_light ++color button_material_dark ++color button_material_light ++color call_notification_answer_color ++color call_notification_decline_color ++color catalyst_logbox_background ++color catalyst_redbox_background ++color dim_foreground_disabled_material_dark ++color dim_foreground_disabled_material_light ++color dim_foreground_material_dark ++color dim_foreground_material_light ++color error_color_material_dark ++color error_color_material_light ++color foreground_material_dark ++color foreground_material_light ++color highlighted_text_material_dark ++color highlighted_text_material_light ++color material_blue_grey_800 ++color material_blue_grey_900 ++color material_blue_grey_950 ++color material_deep_teal_200 ++color material_deep_teal_500 ++color material_grey_100 ++color material_grey_300 ++color material_grey_50 ++color material_grey_600 ++color material_grey_800 ++color material_grey_850 ++color material_grey_900 ++color notification_action_color_filter ++color notification_icon_bg_color ++color primary_dark_material_dark ++color primary_dark_material_light ++color primary_material_dark ++color primary_material_light ++color primary_text_default_material_dark ++color primary_text_default_material_light ++color primary_text_disabled_material_dark ++color primary_text_disabled_material_light ++color ripple_material_dark ++color ripple_material_light ++color secondary_text_default_material_dark ++color secondary_text_default_material_light ++color secondary_text_disabled_material_dark ++color secondary_text_disabled_material_light ++color switch_thumb_disabled_material_dark ++color switch_thumb_disabled_material_light ++color switch_thumb_material_dark ++color switch_thumb_material_light ++color switch_thumb_normal_material_dark ++color switch_thumb_normal_material_light ++color tooltip_background_dark ++color tooltip_background_light ++dimen abc_action_bar_content_inset_material ++dimen abc_action_bar_content_inset_with_nav ++dimen abc_action_bar_default_height_material ++dimen abc_action_bar_default_padding_end_material ++dimen abc_action_bar_default_padding_start_material ++dimen abc_action_bar_elevation_material ++dimen abc_action_bar_icon_vertical_padding_material ++dimen abc_action_bar_overflow_padding_end_material ++dimen abc_action_bar_overflow_padding_start_material ++dimen abc_action_bar_stacked_max_height ++dimen abc_action_bar_stacked_tab_max_width ++dimen abc_action_bar_subtitle_bottom_margin_material ++dimen abc_action_bar_subtitle_top_margin_material ++dimen abc_action_button_min_height_material ++dimen abc_action_button_min_width_material ++dimen abc_action_button_min_width_overflow_material ++dimen abc_alert_dialog_button_bar_height ++dimen abc_alert_dialog_button_dimen ++dimen abc_button_inset_horizontal_material ++dimen abc_button_inset_vertical_material ++dimen abc_button_padding_horizontal_material ++dimen abc_button_padding_vertical_material ++dimen abc_cascading_menus_min_smallest_width ++dimen abc_config_prefDialogWidth ++dimen abc_control_corner_material ++dimen abc_control_inset_material ++dimen abc_control_padding_material ++dimen abc_dialog_corner_radius_material ++dimen abc_dialog_fixed_height_major ++dimen abc_dialog_fixed_height_minor ++dimen abc_dialog_fixed_width_major ++dimen abc_dialog_fixed_width_minor ++dimen abc_dialog_list_padding_bottom_no_buttons ++dimen abc_dialog_list_padding_top_no_title ++dimen abc_dialog_min_width_major ++dimen abc_dialog_min_width_minor ++dimen abc_dialog_padding_material ++dimen abc_dialog_padding_top_material ++dimen abc_dialog_title_divider_material ++dimen abc_disabled_alpha_material_dark ++dimen abc_disabled_alpha_material_light ++dimen abc_dropdownitem_icon_width ++dimen abc_dropdownitem_text_padding_left ++dimen abc_dropdownitem_text_padding_right ++dimen abc_edit_text_inset_bottom_material ++dimen abc_edit_text_inset_horizontal_material ++dimen abc_edit_text_inset_top_material ++dimen abc_floating_window_z ++dimen abc_list_item_height_large_material ++dimen abc_list_item_height_material ++dimen abc_list_item_height_small_material ++dimen abc_list_item_padding_horizontal_material ++dimen abc_panel_menu_list_width ++dimen abc_progress_bar_height_material ++dimen abc_search_view_preferred_height ++dimen abc_search_view_preferred_width ++dimen abc_seekbar_track_background_height_material ++dimen abc_seekbar_track_progress_height_material ++dimen abc_select_dialog_padding_start_material ++dimen abc_star_big ++dimen abc_star_medium ++dimen abc_star_small ++dimen abc_switch_padding ++dimen abc_text_size_body_1_material ++dimen abc_text_size_body_2_material ++dimen abc_text_size_button_material ++dimen abc_text_size_caption_material ++dimen abc_text_size_display_1_material ++dimen abc_text_size_display_2_material ++dimen abc_text_size_display_3_material ++dimen abc_text_size_display_4_material ++dimen abc_text_size_headline_material ++dimen abc_text_size_large_material ++dimen abc_text_size_medium_material ++dimen abc_text_size_menu_header_material ++dimen abc_text_size_menu_material ++dimen abc_text_size_small_material ++dimen abc_text_size_subhead_material ++dimen abc_text_size_subtitle_material_toolbar ++dimen abc_text_size_title_material ++dimen abc_text_size_title_material_toolbar ++dimen autofill_inline_suggestion_icon_size ++dimen compat_button_inset_horizontal_material ++dimen compat_button_inset_vertical_material ++dimen compat_button_padding_horizontal_material ++dimen compat_button_padding_vertical_material ++dimen compat_control_corner_material ++dimen compat_notification_large_icon_max_height ++dimen compat_notification_large_icon_max_width ++dimen disabled_alpha_material_dark ++dimen disabled_alpha_material_light ++dimen highlight_alpha_material_colored ++dimen highlight_alpha_material_dark ++dimen highlight_alpha_material_light ++dimen hint_alpha_material_dark ++dimen hint_alpha_material_light ++dimen hint_pressed_alpha_material_dark ++dimen hint_pressed_alpha_material_light ++dimen notification_action_icon_size ++dimen notification_action_text_size ++dimen notification_big_circle_margin ++dimen notification_content_margin_start ++dimen notification_large_icon_height ++dimen notification_large_icon_width ++dimen notification_main_column_padding_top ++dimen notification_media_narrow_margin ++dimen notification_right_icon_size ++dimen notification_right_side_padding_top ++dimen notification_small_icon_background_padding ++dimen notification_small_icon_size_as_large ++dimen notification_subtext_size ++dimen notification_top_pad ++dimen notification_top_pad_large_text ++dimen tooltip_corner_radius ++dimen tooltip_horizontal_padding ++dimen tooltip_margin ++dimen tooltip_precise_anchor_extra_offset ++dimen tooltip_precise_anchor_threshold ++dimen tooltip_vertical_padding ++dimen tooltip_y_offset_non_touch ++dimen tooltip_y_offset_touch ++drawable abc_ab_share_pack_mtrl_alpha ++drawable abc_action_bar_item_background_material ++drawable abc_btn_borderless_material ++drawable abc_btn_check_material ++drawable abc_btn_check_material_anim ++drawable abc_btn_check_to_on_mtrl_000 ++drawable abc_btn_check_to_on_mtrl_015 ++drawable abc_btn_colored_material ++drawable abc_btn_default_mtrl_shape ++drawable abc_btn_radio_material ++drawable abc_btn_radio_material_anim ++drawable abc_btn_radio_to_on_mtrl_000 ++drawable abc_btn_radio_to_on_mtrl_015 ++drawable abc_btn_switch_to_on_mtrl_00001 ++drawable abc_btn_switch_to_on_mtrl_00012 ++drawable abc_cab_background_internal_bg ++drawable abc_cab_background_top_material ++drawable abc_cab_background_top_mtrl_alpha ++drawable abc_control_background_material ++drawable abc_dialog_material_background ++drawable abc_edit_text_material ++drawable abc_ic_ab_back_material ++drawable abc_ic_arrow_drop_right_black_24dp ++drawable abc_ic_clear_material ++drawable abc_ic_commit_search_api_mtrl_alpha ++drawable abc_ic_go_search_api_material ++drawable abc_ic_menu_copy_mtrl_am_alpha ++drawable abc_ic_menu_cut_mtrl_alpha ++drawable abc_ic_menu_overflow_material ++drawable abc_ic_menu_paste_mtrl_am_alpha ++drawable abc_ic_menu_selectall_mtrl_alpha ++drawable abc_ic_menu_share_mtrl_alpha ++drawable abc_ic_search_api_material ++drawable abc_ic_voice_search_api_material ++drawable abc_item_background_holo_dark ++drawable abc_item_background_holo_light ++drawable abc_list_divider_material ++drawable abc_list_divider_mtrl_alpha ++drawable abc_list_focused_holo ++drawable abc_list_longpressed_holo ++drawable abc_list_pressed_holo_dark ++drawable abc_list_pressed_holo_light ++drawable abc_list_selector_background_transition_holo_dark ++drawable abc_list_selector_background_transition_holo_light ++drawable abc_list_selector_disabled_holo_dark ++drawable abc_list_selector_disabled_holo_light ++drawable abc_list_selector_holo_dark ++drawable abc_list_selector_holo_light ++drawable abc_menu_hardkey_panel_mtrl_mult ++drawable abc_popup_background_mtrl_mult ++drawable abc_ratingbar_indicator_material ++drawable abc_ratingbar_material ++drawable abc_ratingbar_small_material ++drawable abc_scrubber_control_off_mtrl_alpha ++drawable abc_scrubber_control_to_pressed_mtrl_000 ++drawable abc_scrubber_control_to_pressed_mtrl_005 ++drawable abc_scrubber_primary_mtrl_alpha ++drawable abc_scrubber_track_mtrl_alpha ++drawable abc_seekbar_thumb_material ++drawable abc_seekbar_tick_mark_material ++drawable abc_seekbar_track_material ++drawable abc_spinner_mtrl_am_alpha ++drawable abc_spinner_textfield_background_material ++drawable abc_star_black_48dp ++drawable abc_star_half_black_48dp ++drawable abc_switch_thumb_material ++drawable abc_switch_track_mtrl_alpha ++drawable abc_tab_indicator_material ++drawable abc_tab_indicator_mtrl_alpha ++drawable abc_text_cursor_material ++drawable abc_text_select_handle_left_mtrl ++drawable abc_text_select_handle_middle_mtrl ++drawable abc_text_select_handle_right_mtrl ++drawable abc_textfield_activated_mtrl_alpha ++drawable abc_textfield_default_mtrl_alpha ++drawable abc_textfield_search_activated_mtrl_alpha ++drawable abc_textfield_search_default_mtrl_alpha ++drawable abc_textfield_search_material ++drawable abc_vector_test ++drawable autofill_inline_suggestion_chip_background ++drawable btn_checkbox_checked_mtrl ++drawable btn_checkbox_checked_to_unchecked_mtrl_animation ++drawable btn_checkbox_unchecked_mtrl ++drawable btn_checkbox_unchecked_to_checked_mtrl_animation ++drawable btn_radio_off_mtrl ++drawable btn_radio_off_to_on_mtrl_animation ++drawable btn_radio_on_mtrl ++drawable btn_radio_on_to_off_mtrl_animation ++drawable ic_call_answer ++drawable ic_call_answer_low ++drawable ic_call_answer_video ++drawable ic_call_answer_video_low ++drawable ic_call_decline ++drawable ic_call_decline_low ++drawable ic_resume ++drawable notification_action_background ++drawable notification_bg ++drawable notification_bg_low ++drawable notification_bg_low_normal ++drawable notification_bg_low_pressed ++drawable notification_bg_normal ++drawable notification_bg_normal_pressed ++drawable notification_icon_background ++drawable notification_oversize_large_icon_bg ++drawable notification_template_icon_bg ++drawable notification_template_icon_low_bg ++drawable notification_tile_bg ++drawable notify_panel_notification_icon_bg ++drawable paused_in_debugger_background ++drawable paused_in_debugger_dialog_background ++drawable redbox_top_border_background ++drawable ripple_effect ++drawable test_level_drawable ++drawable tooltip_frame_dark ++drawable tooltip_frame_light ++id accessibility_action_clickable_span ++id accessibility_actions ++id accessibility_collection ++id accessibility_collection_item ++id accessibility_custom_action_0 ++id accessibility_custom_action_1 ++id accessibility_custom_action_10 ++id accessibility_custom_action_11 ++id accessibility_custom_action_12 ++id accessibility_custom_action_13 ++id accessibility_custom_action_14 ++id accessibility_custom_action_15 ++id accessibility_custom_action_16 ++id accessibility_custom_action_17 ++id accessibility_custom_action_18 ++id accessibility_custom_action_19 ++id accessibility_custom_action_2 ++id accessibility_custom_action_20 ++id accessibility_custom_action_21 ++id accessibility_custom_action_22 ++id accessibility_custom_action_23 ++id accessibility_custom_action_24 ++id accessibility_custom_action_25 ++id accessibility_custom_action_26 ++id accessibility_custom_action_27 ++id accessibility_custom_action_28 ++id accessibility_custom_action_29 ++id accessibility_custom_action_3 ++id accessibility_custom_action_30 ++id accessibility_custom_action_31 ++id accessibility_custom_action_4 ++id accessibility_custom_action_5 ++id accessibility_custom_action_6 ++id accessibility_custom_action_7 ++id accessibility_custom_action_8 ++id accessibility_custom_action_9 ++id accessibility_hint ++id accessibility_label ++id accessibility_links ++id accessibility_role ++id accessibility_state ++id accessibility_state_expanded ++id accessibility_value ++id action_bar ++id action_bar_activity_content ++id action_bar_container ++id action_bar_root ++id action_bar_spinner ++id action_bar_subtitle ++id action_bar_title ++id action_container ++id action_context_bar ++id action_divider ++id action_image ++id action_menu_divider ++id action_menu_presenter ++id action_mode_bar ++id action_mode_bar_stub ++id action_mode_close_button ++id action_text ++id actions ++id activity_chooser_view_content ++id add ++id alertTitle ++id alert_title ++id async ++id autofill_inline_suggestion_end_icon ++id autofill_inline_suggestion_start_icon ++id autofill_inline_suggestion_subtitle ++id autofill_inline_suggestion_title ++id blocking ++id button ++id buttonPanel ++id button_text ++id catalyst_redbox_title ++id center ++id centerCrop ++id centerInside ++id checkbox ++id checked ++id chronometer ++id content ++id contentPanel ++id custom ++id customPanel ++id decor_content_parent ++id default_activity_button ++id dialog_button ++id edit_query ++id edit_text_id ++id expand_activities_button ++id expanded_menu ++id filter ++id fitBottomStart ++id fitCenter ++id fitEnd ++id fitStart ++id fitXY ++id focusCrop ++id forever ++id fps_text ++id fragment_container_view_tag ++id ghost_view ++id ghost_view_holder ++id group_divider ++id hide_ime_id ++id home ++id icon ++id icon_group ++id image ++id info ++id invalidate_transform ++id italic ++id labelled_by ++id line1 ++id line3 ++id listMode ++id list_item ++id message ++id mix_blend_mode ++id multiply ++id none ++id normal ++id notification_background ++id notification_main_column ++id notification_main_column_container ++id off ++id on ++id parentPanel ++id parent_matrix ++id pointer_events ++id progress_circular ++id progress_horizontal ++id radio ++id react_test_id ++id report_drawn ++id right_icon ++id right_side ++id rn_frame_file ++id rn_frame_method ++id rn_redbox_dismiss_button ++id rn_redbox_line_separator ++id rn_redbox_loading_indicator ++id rn_redbox_reload_button ++id rn_redbox_report_button ++id rn_redbox_report_label ++id rn_redbox_stack ++id role ++id save_non_transition_alpha ++id save_overlay_view ++id screen ++id scrollIndicatorDown ++id scrollIndicatorUp ++id scrollView ++id search_badge ++id search_bar ++id search_button ++id search_close_btn ++id search_edit_frame ++id search_go_btn ++id search_mag_icon ++id search_plate ++id search_src_text ++id search_voice_btn ++id select_dialog_listview ++id shortcut ++id spacer ++id special_effects_controller_view_tag ++id split_action_bar ++id src_atop ++id src_in ++id src_over ++id submenuarrow ++id submit_area ++id tabMode ++id tag_accessibility_actions ++id tag_accessibility_clickable_spans ++id tag_accessibility_heading ++id tag_accessibility_pane_title ++id tag_on_apply_window_listener ++id tag_on_receive_content_listener ++id tag_on_receive_content_mime_types ++id tag_screen_reader_focusable ++id tag_state_description ++id tag_transition_group ++id tag_unhandled_key_event_manager ++id tag_unhandled_key_listeners ++id tag_window_insets_animation_callback ++id text ++id text2 ++id textSpacerNoButtons ++id textSpacerNoTitle ++id time ++id title ++id titleDividerNoCustom ++id title_template ++id topPanel ++id transform ++id transform_origin ++id transition_current_scene ++id transition_layout_save ++id transition_position ++id transition_scene_layoutid_cache ++id transition_transform ++id unchecked ++id uniform ++id up ++id use_hardware_layer ++id view_clipped ++id view_tag_instance_handle ++id view_tag_native_id ++id view_tree_lifecycle_owner ++id view_tree_on_back_pressed_dispatcher_owner ++id view_tree_saved_state_registry_owner ++id view_tree_view_model_store_owner ++id visible_removing_fragment_view_tag ++id wrap_content ++integer abc_config_activityDefaultDur ++integer abc_config_activityShortDur ++integer cancel_button_image_alpha ++integer config_tooltipAnimTime ++integer react_native_dev_server_port ++integer status_bar_notification_info_maxnum ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 ++interpolator btn_radio_to_off_mtrl_animation_interpolator_0 ++interpolator btn_radio_to_on_mtrl_animation_interpolator_0 ++interpolator fast_out_slow_in ++layout abc_action_bar_title_item ++layout abc_action_bar_up_container ++layout abc_action_menu_item_layout ++layout abc_action_menu_layout ++layout abc_action_mode_bar ++layout abc_action_mode_close_item_material ++layout abc_activity_chooser_view ++layout abc_activity_chooser_view_list_item ++layout abc_alert_dialog_button_bar_material ++layout abc_alert_dialog_material ++layout abc_alert_dialog_title_material ++layout abc_cascading_menu_item_layout ++layout abc_dialog_title_material ++layout abc_expanded_menu_layout ++layout abc_list_menu_item_checkbox ++layout abc_list_menu_item_icon ++layout abc_list_menu_item_layout ++layout abc_list_menu_item_radio ++layout abc_popup_menu_header_item_layout ++layout abc_popup_menu_item_layout ++layout abc_screen_content_include ++layout abc_screen_simple ++layout abc_screen_simple_overlay_action_mode ++layout abc_screen_toolbar ++layout abc_search_dropdown_item_icons_2line ++layout abc_search_view ++layout abc_select_dialog_material ++layout abc_tooltip ++layout alert_title_layout ++layout autofill_inline_suggestion ++layout custom_dialog ++layout dev_loading_view ++layout fps_view ++layout ime_base_split_test_activity ++layout ime_secondary_split_test_activity ++layout notification_action ++layout notification_action_tombstone ++layout notification_template_custom_big ++layout notification_template_icon_group ++layout notification_template_part_chronometer ++layout notification_template_part_time ++layout paused_in_debugger_view ++layout redbox_item_frame ++layout redbox_item_title ++layout redbox_view ++layout select_dialog_item_material ++layout select_dialog_multichoice_material ++layout select_dialog_singlechoice_material ++layout support_simple_spinner_dropdown_item ++string abc_action_bar_home_description ++string abc_action_bar_up_description ++string abc_action_menu_overflow_description ++string abc_action_mode_done ++string abc_activity_chooser_view_see_all ++string abc_activitychooserview_choose_application ++string abc_capital_off ++string abc_capital_on ++string abc_menu_alt_shortcut_label ++string abc_menu_ctrl_shortcut_label ++string abc_menu_delete_shortcut_label ++string abc_menu_enter_shortcut_label ++string abc_menu_function_shortcut_label ++string abc_menu_meta_shortcut_label ++string abc_menu_shift_shortcut_label ++string abc_menu_space_shortcut_label ++string abc_menu_sym_shortcut_label ++string abc_prepend_shortcut_label ++string abc_search_hint ++string abc_searchview_description_clear ++string abc_searchview_description_query ++string abc_searchview_description_search ++string abc_searchview_description_submit ++string abc_searchview_description_voice ++string abc_shareactionprovider_share_with ++string abc_shareactionprovider_share_with_application ++string abc_toolbar_collapse_description ++string alert_description ++string call_notification_answer_action ++string call_notification_answer_video_action ++string call_notification_decline_action ++string call_notification_hang_up_action ++string call_notification_incoming_text ++string call_notification_ongoing_text ++string call_notification_screening_text ++string catalyst_change_bundle_location ++string catalyst_copy_button ++string catalyst_debug_connecting ++string catalyst_debug_error ++string catalyst_debug_open ++string catalyst_debug_open_disabled ++string catalyst_dev_menu_header ++string catalyst_dev_menu_sub_header ++string catalyst_dismiss_button ++string catalyst_heap_capture ++string catalyst_hot_reloading ++string catalyst_hot_reloading_auto_disable ++string catalyst_hot_reloading_auto_enable ++string catalyst_hot_reloading_stop ++string catalyst_inspector_toggle ++string catalyst_loading_from_url ++string catalyst_open_debugger_error ++string catalyst_perf_monitor ++string catalyst_perf_monitor_stop ++string catalyst_reload ++string catalyst_reload_button ++string catalyst_reload_error ++string catalyst_report_button ++string catalyst_sample_profiler_toggle ++string catalyst_settings ++string catalyst_settings_title ++string combobox_description ++string header_description ++string image_description ++string imagebutton_description ++string link_description ++string menu_description ++string menubar_description ++string menuitem_description ++string progressbar_description ++string radiogroup_description ++string rn_tab_description ++string scrollbar_description ++string search_menu_title ++string spinbutton_description ++string state_busy_description ++string state_collapsed_description ++string state_expanded_description ++string state_mixed_description ++string state_off_description ++string state_on_description ++string state_unselected_description ++string status_bar_notification_info_overflow ++string summary_description ++string tablist_description ++string timer_description ++string toolbar_description ++style AlertDialog_AppCompat ++style AlertDialog_AppCompat_Light ++style Animation_AppCompat_Dialog ++style Animation_AppCompat_DropDownUp ++style Animation_AppCompat_Tooltip ++style Animation_Catalyst_LogBox ++style Animation_Catalyst_RedBox ++style Base_AlertDialog_AppCompat ++style Base_AlertDialog_AppCompat_Light ++style Base_Animation_AppCompat_Dialog ++style Base_Animation_AppCompat_DropDownUp ++style Base_Animation_AppCompat_Tooltip ++style Base_DialogWindowTitleBackground_AppCompat ++style Base_DialogWindowTitle_AppCompat ++style Base_TextAppearance_AppCompat ++style Base_TextAppearance_AppCompat_Body1 ++style Base_TextAppearance_AppCompat_Body2 ++style Base_TextAppearance_AppCompat_Button ++style Base_TextAppearance_AppCompat_Caption ++style Base_TextAppearance_AppCompat_Display1 ++style Base_TextAppearance_AppCompat_Display2 ++style Base_TextAppearance_AppCompat_Display3 ++style Base_TextAppearance_AppCompat_Display4 ++style Base_TextAppearance_AppCompat_Headline ++style Base_TextAppearance_AppCompat_Inverse ++style Base_TextAppearance_AppCompat_Large ++style Base_TextAppearance_AppCompat_Large_Inverse ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Medium ++style Base_TextAppearance_AppCompat_Medium_Inverse ++style Base_TextAppearance_AppCompat_Menu ++style Base_TextAppearance_AppCompat_SearchResult ++style Base_TextAppearance_AppCompat_SearchResult_Subtitle ++style Base_TextAppearance_AppCompat_SearchResult_Title ++style Base_TextAppearance_AppCompat_Small ++style Base_TextAppearance_AppCompat_Small_Inverse ++style Base_TextAppearance_AppCompat_Subhead ++style Base_TextAppearance_AppCompat_Subhead_Inverse ++style Base_TextAppearance_AppCompat_Title ++style Base_TextAppearance_AppCompat_Title_Inverse ++style Base_TextAppearance_AppCompat_Tooltip ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Title ++style Base_TextAppearance_AppCompat_Widget_Button ++style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Inverse ++style Base_TextAppearance_AppCompat_Widget_DropDownItem ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Widget_Switch ++style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Title ++style Base_ThemeOverlay_AppCompat ++style Base_ThemeOverlay_AppCompat_ActionBar ++style Base_ThemeOverlay_AppCompat_Dark ++style Base_ThemeOverlay_AppCompat_Dark_ActionBar ++style Base_ThemeOverlay_AppCompat_Dialog ++style Base_ThemeOverlay_AppCompat_Dialog_Alert ++style Base_ThemeOverlay_AppCompat_Light ++style Base_Theme_AppCompat ++style Base_Theme_AppCompat_CompactMenu ++style Base_Theme_AppCompat_Dialog ++style Base_Theme_AppCompat_DialogWhenLarge ++style Base_Theme_AppCompat_Dialog_Alert ++style Base_Theme_AppCompat_Dialog_FixedSize ++style Base_Theme_AppCompat_Dialog_MinWidth ++style Base_Theme_AppCompat_Light ++style Base_Theme_AppCompat_Light_DarkActionBar ++style Base_Theme_AppCompat_Light_Dialog ++style Base_Theme_AppCompat_Light_DialogWhenLarge ++style Base_Theme_AppCompat_Light_Dialog_Alert ++style Base_Theme_AppCompat_Light_Dialog_FixedSize ++style Base_Theme_AppCompat_Light_Dialog_MinWidth ++style Base_V21_ThemeOverlay_AppCompat_Dialog ++style Base_V21_Theme_AppCompat ++style Base_V21_Theme_AppCompat_Dialog ++style Base_V21_Theme_AppCompat_Light ++style Base_V21_Theme_AppCompat_Light_Dialog ++style Base_V22_Theme_AppCompat ++style Base_V22_Theme_AppCompat_Light ++style Base_V23_Theme_AppCompat ++style Base_V23_Theme_AppCompat_Light ++style Base_V26_Theme_AppCompat ++style Base_V26_Theme_AppCompat_Light ++style Base_V26_Widget_AppCompat_Toolbar ++style Base_V28_Theme_AppCompat ++style Base_V28_Theme_AppCompat_Light ++style Base_V7_ThemeOverlay_AppCompat_Dialog ++style Base_V7_Theme_AppCompat ++style Base_V7_Theme_AppCompat_Dialog ++style Base_V7_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat_Light_Dialog ++style Base_V7_Widget_AppCompat_AutoCompleteTextView ++style Base_V7_Widget_AppCompat_EditText ++style Base_V7_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_ActionBar ++style Base_Widget_AppCompat_ActionBar_Solid ++style Base_Widget_AppCompat_ActionBar_TabBar ++style Base_Widget_AppCompat_ActionBar_TabText ++style Base_Widget_AppCompat_ActionBar_TabView ++style Base_Widget_AppCompat_ActionButton ++style Base_Widget_AppCompat_ActionButton_CloseMode ++style Base_Widget_AppCompat_ActionButton_Overflow ++style Base_Widget_AppCompat_ActionMode ++style Base_Widget_AppCompat_ActivityChooserView ++style Base_Widget_AppCompat_AutoCompleteTextView ++style Base_Widget_AppCompat_Button ++style Base_Widget_AppCompat_ButtonBar ++style Base_Widget_AppCompat_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Borderless ++style Base_Widget_AppCompat_Button_Borderless_Colored ++style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Colored ++style Base_Widget_AppCompat_Button_Small ++style Base_Widget_AppCompat_CompoundButton_CheckBox ++style Base_Widget_AppCompat_CompoundButton_RadioButton ++style Base_Widget_AppCompat_CompoundButton_Switch ++style Base_Widget_AppCompat_DrawerArrowToggle ++style Base_Widget_AppCompat_DrawerArrowToggle_Common ++style Base_Widget_AppCompat_DropDownItem_Spinner ++style Base_Widget_AppCompat_EditText ++style Base_Widget_AppCompat_ImageButton ++style Base_Widget_AppCompat_Light_ActionBar ++style Base_Widget_AppCompat_Light_ActionBar_Solid ++style Base_Widget_AppCompat_Light_ActionBar_TabBar ++style Base_Widget_AppCompat_Light_ActionBar_TabText ++style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Base_Widget_AppCompat_Light_ActionBar_TabView ++style Base_Widget_AppCompat_Light_PopupMenu ++style Base_Widget_AppCompat_Light_PopupMenu_Overflow ++style Base_Widget_AppCompat_ListMenuView ++style Base_Widget_AppCompat_ListPopupWindow ++style Base_Widget_AppCompat_ListView ++style Base_Widget_AppCompat_ListView_DropDown ++style Base_Widget_AppCompat_ListView_Menu ++style Base_Widget_AppCompat_PopupMenu ++style Base_Widget_AppCompat_PopupMenu_Overflow ++style Base_Widget_AppCompat_PopupWindow ++style Base_Widget_AppCompat_ProgressBar ++style Base_Widget_AppCompat_ProgressBar_Horizontal ++style Base_Widget_AppCompat_RatingBar ++style Base_Widget_AppCompat_RatingBar_Indicator ++style Base_Widget_AppCompat_RatingBar_Small ++style Base_Widget_AppCompat_SearchView ++style Base_Widget_AppCompat_SearchView_ActionBar ++style Base_Widget_AppCompat_SeekBar ++style Base_Widget_AppCompat_SeekBar_Discrete ++style Base_Widget_AppCompat_Spinner ++style Base_Widget_AppCompat_Spinner_Underlined ++style Base_Widget_AppCompat_TextView ++style Base_Widget_AppCompat_TextView_SpinnerItem ++style Base_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_Toolbar_Button_Navigation ++style CalendarDatePickerDialog ++style CalendarDatePickerStyle ++style DialogAnimationFade ++style DialogAnimationSlide ++style NoAnimationDialog ++style Platform_AppCompat ++style Platform_AppCompat_Light ++style Platform_ThemeOverlay_AppCompat ++style Platform_ThemeOverlay_AppCompat_Dark ++style Platform_ThemeOverlay_AppCompat_Light ++style Platform_V21_AppCompat ++style Platform_V21_AppCompat_Light ++style Platform_V25_AppCompat ++style Platform_V25_AppCompat_Light ++style Platform_Widget_AppCompat_Spinner ++style RtlOverlay_DialogWindowTitle_AppCompat ++style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem ++style RtlOverlay_Widget_AppCompat_DialogTitle_Icon ++style RtlOverlay_Widget_AppCompat_PopupMenuItem ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title ++style RtlOverlay_Widget_AppCompat_SearchView_MagIcon ++style RtlOverlay_Widget_AppCompat_Search_DropDown ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Query ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Text ++style RtlUnderlay_Widget_AppCompat_ActionButton ++style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow ++style SpinnerDatePickerDialog ++style SpinnerDatePickerStyle ++style TextAppearance_AppCompat ++style TextAppearance_AppCompat_Body1 ++style TextAppearance_AppCompat_Body2 ++style TextAppearance_AppCompat_Button ++style TextAppearance_AppCompat_Caption ++style TextAppearance_AppCompat_Display1 ++style TextAppearance_AppCompat_Display2 ++style TextAppearance_AppCompat_Display3 ++style TextAppearance_AppCompat_Display4 ++style TextAppearance_AppCompat_Headline ++style TextAppearance_AppCompat_Inverse ++style TextAppearance_AppCompat_Large ++style TextAppearance_AppCompat_Large_Inverse ++style TextAppearance_AppCompat_Light_SearchResult_Subtitle ++style TextAppearance_AppCompat_Light_SearchResult_Title ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Medium ++style TextAppearance_AppCompat_Medium_Inverse ++style TextAppearance_AppCompat_Menu ++style TextAppearance_AppCompat_SearchResult_Subtitle ++style TextAppearance_AppCompat_SearchResult_Title ++style TextAppearance_AppCompat_Small ++style TextAppearance_AppCompat_Small_Inverse ++style TextAppearance_AppCompat_Subhead ++style TextAppearance_AppCompat_Subhead_Inverse ++style TextAppearance_AppCompat_Title ++style TextAppearance_AppCompat_Title_Inverse ++style TextAppearance_AppCompat_Tooltip ++style TextAppearance_AppCompat_Widget_ActionBar_Menu ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionBar_Title ++style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Title ++style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse ++style TextAppearance_AppCompat_Widget_Button ++style TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style TextAppearance_AppCompat_Widget_Button_Colored ++style TextAppearance_AppCompat_Widget_Button_Inverse ++style TextAppearance_AppCompat_Widget_DropDownItem ++style TextAppearance_AppCompat_Widget_PopupMenu_Header ++style TextAppearance_AppCompat_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Widget_Switch ++style TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style TextAppearance_Compat_Notification ++style TextAppearance_Compat_Notification_Info ++style TextAppearance_Compat_Notification_Line2 ++style TextAppearance_Compat_Notification_Time ++style TextAppearance_Compat_Notification_Title ++style TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style TextAppearance_Widget_AppCompat_Toolbar_Title ++style Theme ++style ThemeOverlay_AppCompat ++style ThemeOverlay_AppCompat_ActionBar ++style ThemeOverlay_AppCompat_Dark ++style ThemeOverlay_AppCompat_Dark_ActionBar ++style ThemeOverlay_AppCompat_DayNight ++style ThemeOverlay_AppCompat_DayNight_ActionBar ++style ThemeOverlay_AppCompat_Dialog ++style ThemeOverlay_AppCompat_Dialog_Alert ++style ThemeOverlay_AppCompat_Light ++style Theme_AppCompat ++style Theme_AppCompat_CompactMenu ++style Theme_AppCompat_DayNight ++style Theme_AppCompat_DayNight_DarkActionBar ++style Theme_AppCompat_DayNight_Dialog ++style Theme_AppCompat_DayNight_DialogWhenLarge ++style Theme_AppCompat_DayNight_Dialog_Alert ++style Theme_AppCompat_DayNight_Dialog_MinWidth ++style Theme_AppCompat_DayNight_NoActionBar ++style Theme_AppCompat_Dialog ++style Theme_AppCompat_DialogWhenLarge ++style Theme_AppCompat_Dialog_Alert ++style Theme_AppCompat_Dialog_MinWidth ++style Theme_AppCompat_Empty ++style Theme_AppCompat_Light ++style Theme_AppCompat_Light_DarkActionBar ++style Theme_AppCompat_Light_Dialog ++style Theme_AppCompat_Light_DialogWhenLarge ++style Theme_AppCompat_Light_Dialog_Alert ++style Theme_AppCompat_Light_Dialog_MinWidth ++style Theme_AppCompat_Light_NoActionBar ++style Theme_AppCompat_NoActionBar ++style Theme_AutofillInlineSuggestion ++style Theme_Catalyst ++style Theme_Catalyst_LogBox ++style Theme_Catalyst_RedBox ++style Theme_FullScreenDialog ++style Theme_FullScreenDialogAnimatedFade ++style Theme_FullScreenDialogAnimatedSlide ++style Theme_ReactNative_AppCompat_Light ++style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen ++style Theme_ReactNative_TextInput_DefaultBackground ++style Widget_AppCompat_ActionBar ++style Widget_AppCompat_ActionBar_Solid ++style Widget_AppCompat_ActionBar_TabBar ++style Widget_AppCompat_ActionBar_TabText ++style Widget_AppCompat_ActionBar_TabView ++style Widget_AppCompat_ActionButton ++style Widget_AppCompat_ActionButton_CloseMode ++style Widget_AppCompat_ActionButton_Overflow ++style Widget_AppCompat_ActionMode ++style Widget_AppCompat_ActivityChooserView ++style Widget_AppCompat_AutoCompleteTextView ++style Widget_AppCompat_Button ++style Widget_AppCompat_ButtonBar ++style Widget_AppCompat_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Borderless ++style Widget_AppCompat_Button_Borderless_Colored ++style Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Colored ++style Widget_AppCompat_Button_Small ++style Widget_AppCompat_CompoundButton_CheckBox ++style Widget_AppCompat_CompoundButton_RadioButton ++style Widget_AppCompat_CompoundButton_Switch ++style Widget_AppCompat_DrawerArrowToggle ++style Widget_AppCompat_DropDownItem_Spinner ++style Widget_AppCompat_EditText ++style Widget_AppCompat_ImageButton ++style Widget_AppCompat_Light_ActionBar ++style Widget_AppCompat_Light_ActionBar_Solid ++style Widget_AppCompat_Light_ActionBar_Solid_Inverse ++style Widget_AppCompat_Light_ActionBar_TabBar ++style Widget_AppCompat_Light_ActionBar_TabBar_Inverse ++style Widget_AppCompat_Light_ActionBar_TabText ++style Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Widget_AppCompat_Light_ActionBar_TabView ++style Widget_AppCompat_Light_ActionBar_TabView_Inverse ++style Widget_AppCompat_Light_ActionButton ++style Widget_AppCompat_Light_ActionButton_CloseMode ++style Widget_AppCompat_Light_ActionButton_Overflow ++style Widget_AppCompat_Light_ActionMode_Inverse ++style Widget_AppCompat_Light_ActivityChooserView ++style Widget_AppCompat_Light_AutoCompleteTextView ++style Widget_AppCompat_Light_DropDownItem_Spinner ++style Widget_AppCompat_Light_ListPopupWindow ++style Widget_AppCompat_Light_ListView_DropDown ++style Widget_AppCompat_Light_PopupMenu ++style Widget_AppCompat_Light_PopupMenu_Overflow ++style Widget_AppCompat_Light_SearchView ++style Widget_AppCompat_Light_Spinner_DropDown_ActionBar ++style Widget_AppCompat_ListMenuView ++style Widget_AppCompat_ListPopupWindow ++style Widget_AppCompat_ListView ++style Widget_AppCompat_ListView_DropDown ++style Widget_AppCompat_ListView_Menu ++style Widget_AppCompat_PopupMenu ++style Widget_AppCompat_PopupMenu_Overflow ++style Widget_AppCompat_PopupWindow ++style Widget_AppCompat_ProgressBar ++style Widget_AppCompat_ProgressBar_Horizontal ++style Widget_AppCompat_RatingBar ++style Widget_AppCompat_RatingBar_Indicator ++style Widget_AppCompat_RatingBar_Small ++style Widget_AppCompat_SearchView ++style Widget_AppCompat_SearchView_ActionBar ++style Widget_AppCompat_SeekBar ++style Widget_AppCompat_SeekBar_Discrete ++style Widget_AppCompat_Spinner ++style Widget_AppCompat_Spinner_DropDown ++style Widget_AppCompat_Spinner_DropDown_ActionBar ++style Widget_AppCompat_Spinner_Underlined ++style Widget_AppCompat_TextView ++style Widget_AppCompat_TextView_SpinnerItem ++style Widget_AppCompat_Toolbar ++style Widget_AppCompat_Toolbar_Button_Navigation ++style Widget_Autofill ++style Widget_Autofill_InlineSuggestionChip ++style Widget_Autofill_InlineSuggestionEndIconStyle ++style Widget_Autofill_InlineSuggestionStartIconStyle ++style Widget_Autofill_InlineSuggestionSubtitle ++style Widget_Autofill_InlineSuggestionTitle ++style Widget_Compat_NotificationActionContainer ++style Widget_Compat_NotificationActionText ++style redboxButton ++styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle ++styleable ActionBarLayout android_layout_gravity ++styleable ActionMenuItemView android_minWidth ++styleable ActionMenuView ++styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle ++styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount ++styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout ++styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible ++styleable AnimatedStateListDrawableItem android_drawable android_id ++styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId ++styleable AppCompatEmojiHelper ++styleable AppCompatImageView android_src srcCompat tint tintMode ++styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode ++styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance ++styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale ++styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle ++styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme ++styleable ButtonBarLayout allowStacking ++styleable Capability queryPatterns shortcutMatchRequired ++styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode ++styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar ++styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode ++styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness ++styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily ++styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex ++styleable Fragment android_id android_name android_tag ++styleable FragmentContainerView android_name android_tag ++styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type ++styleable GradientColorItem android_color android_offset ++styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers ++styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width ++styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset ++styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible ++styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText ++styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow ++styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor ++styleable PopupWindowBackgroundState state_above_anchor ++styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle ++styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon ++styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme ++styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible ++styleable StateListDrawableItem android_drawable ++styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor ++styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode ++styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale ++styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor ++styleable View android_focusable android_theme paddingEnd paddingStart theme ++styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode ++styleable ViewStubCompat android_id android_inflatedId android_layout ++xml rn_dev_preferences +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@expensify/react-native-live-markdown/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..5cb6505 +--- /dev/null ++++ b/node_modules/@expensify/react-native-live-markdown/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,16 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml:1:1-2:12 ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml:1:1-2:12 ++ package ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml ++ xmlns:android ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml:1:11-69 ++uses-sdk ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml reason: use-sdk injection requested ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml ++ android:targetSdkVersion ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml ++ android:minSdkVersion ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml +diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/@expensify/react-native-live-markdown/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..ce955a0 +Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ From 0ac7a6728961372c259f3bcd434c3476a6208466 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 17:35:11 +0200 Subject: [PATCH 13/50] Update @expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch --- ...d-jni-packaging-for-16kb-memory-page-size.patch | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch index 25a70ad5fcac3..418f432c4c0bc 100644 --- a/patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch +++ b/patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch @@ -18083,10 +18083,20 @@ index 0000000..b49950e +] \ No newline at end of file diff --git a/node_modules/@expensify/react-native-live-markdown/android/build.gradle b/node_modules/@expensify/react-native-live-markdown/android/build.gradle -index 01824d2..f96cc6a 100644 +index 01824d2..a425124 100644 --- a/node_modules/@expensify/react-native-live-markdown/android/build.gradle +++ b/node_modules/@expensify/react-native-live-markdown/android/build.gradle -@@ -162,6 +162,10 @@ android { +@@ -93,7 +93,8 @@ android { + cmake { + arguments "-DANDROID_STL=c++_shared", + "-DANDROID_TOOLCHAIN=clang", +- "-DREACT_NATIVE_MINOR_VERSION=${REACT_NATIVE_MINOR_VERSION}" ++ "-DREACT_NATIVE_MINOR_VERSION=${REACT_NATIVE_MINOR_VERSION}", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" + abiFilters (*reactNativeArchitectures()) + } + } +@@ -162,6 +163,10 @@ android { "**/libreact_render*.so", "**/librrc_root.so", ] From 424638371a139d052c3e8d27bb08f305a93575a7 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 17:44:01 +0200 Subject: [PATCH 14/50] chore: expo-av and expo-modules-core --- ...-packaging-for-16kb-memory-page-size.patch | 25 +++++++++++++++++++ ...-packaging-for-16kb-memory-page-size.patch | 25 +++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 patches/expo-av+15.1.5+001+android-jni-packaging-for-16kb-memory-page-size.patch create mode 100644 patches/expo-modules-core+2.3.12+002+android-jni-packaging-for-16kb-memory-page-size.patch diff --git a/patches/expo-av+15.1.5+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/expo-av+15.1.5+001+android-jni-packaging-for-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..147bae0c33b40 --- /dev/null +++ b/patches/expo-av+15.1.5+001+android-jni-packaging-for-16kb-memory-page-size.patch @@ -0,0 +1,25 @@ +diff --git a/node_modules/expo-av/android/build.gradle b/node_modules/expo-av/android/build.gradle +index 3ecd645..dcdc27c 100644 +--- a/node_modules/expo-av/android/build.gradle ++++ b/node_modules/expo-av/android/build.gradle +@@ -37,7 +37,8 @@ android { + cppFlags "-O2 -frtti -fexceptions -Wall -fstack-protector-all" + abiFilters (*reactNativeArchitectures()) + arguments "-DANDROID_STL=c++_shared", +- "-DREACT_NATIVE_DIR=${REACT_NATIVE_DIR}" ++ "-DREACT_NATIVE_DIR=${REACT_NATIVE_DIR}", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" + } + } + } +@@ -66,6 +67,10 @@ android { + "**/libhermes.so", + "**/libjsi.so", + ] ++ ++ jniLibs { ++ useLegacyPackaging true ++ } + } + + \ No newline at end of file diff --git a/patches/expo-modules-core+2.3.12+002+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/expo-modules-core+2.3.12+002+android-jni-packaging-for-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..b0f74af097a77 --- /dev/null +++ b/patches/expo-modules-core+2.3.12+002+android-jni-packaging-for-16kb-memory-page-size.patch @@ -0,0 +1,25 @@ +diff --git a/node_modules/expo-modules-core/android/build.gradle b/node_modules/expo-modules-core/android/build.gradle +index 9914a74..3f9404f 100644 +--- a/node_modules/expo-modules-core/android/build.gradle ++++ b/node_modules/expo-modules-core/android/build.gradle +@@ -89,7 +89,8 @@ android { + "-DREACT_NATIVE_TARGET_VERSION=${expoModuleExtension.reactNativeVersion.minor}", + "-DUSE_HERMES=${USE_HERMES}", + "-DIS_NEW_ARCHITECTURE_ENABLED=${isNewArchitectureEnabled}", +- "-DUNIT_TEST=${isExpoModulesCoreTests}" ++ "-DUNIT_TEST=${isExpoModulesCoreTests}", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" + } + } + } +@@ -134,6 +135,10 @@ android { + "**/libyoga.so", + ] + ++ jniLibs { ++ useLegacyPackaging true ++ } ++ + // Required or mockk will crash + resources { + excludes += [ \ No newline at end of file From 808ae15080b524bcc508a6b3afa20f34b3048cd4 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 17:48:33 +0200 Subject: [PATCH 15/50] chore: react-native-fs --- ...-packaging-for-16kb-memory-page-size.patch | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 patches/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch diff --git a/patches/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..ca62b32b4b338 --- /dev/null +++ b/patches/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch @@ -0,0 +1,27 @@ +diff --git a/node_modules/react-native-fs/android/build.gradle b/node_modules/react-native-fs/android/build.gradle +index ddef857..7fa789c 100644 +--- a/node_modules/react-native-fs/android/build.gradle ++++ b/node_modules/react-native-fs/android/build.gradle +@@ -23,10 +23,22 @@ android { + targetSdkVersion safeExtGet('targetSdkVersion', 26) + versionCode 1 + versionName "1.0" ++ ++ externalNativeBuild { ++ cmake { ++ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ } ++ } + } + lintOptions { + abortOnError false + } ++ ++ packagingOptions { ++ jniLibs { ++ useLegacyPackaging true ++ } ++ } + } + + dependencies { \ No newline at end of file From 93ea3b3c30ce671e0df326a5e2f810e1449a889e Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 17:51:52 +0200 Subject: [PATCH 16/50] fix: expo-av patch --- ...1.5+003+android-jni-packaging-for-16kb-memory-page-size.patch} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename patches/{expo-av+15.1.5+001+android-jni-packaging-for-16kb-memory-page-size.patch => expo-av+15.1.5+003+android-jni-packaging-for-16kb-memory-page-size.patch} (100%) diff --git a/patches/expo-av+15.1.5+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/expo-av+15.1.5+003+android-jni-packaging-for-16kb-memory-page-size.patch similarity index 100% rename from patches/expo-av+15.1.5+001+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/expo-av+15.1.5+003+android-jni-packaging-for-16kb-memory-page-size.patch From a8f82c27b6bc5b4897c3106876cecdb1c0ee3412 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 17:56:18 +0200 Subject: [PATCH 17/50] Update @react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch --- ...-packaging-for-16kb-memory-page-size.patch | 4068 +---------------- 1 file changed, 15 insertions(+), 4053 deletions(-) diff --git a/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch index 6f2ae98ac7a79..4136a37c28b9d 100644 --- a/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch +++ b/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch @@ -1,8 +1,21 @@ diff --git a/node_modules/@react-native-firebase/crashlytics/android/build.gradle b/node_modules/@react-native-firebase/crashlytics/android/build.gradle -index 9b89ae7..a759181 100644 +index 9b89ae7..36cc020 100644 --- a/node_modules/@react-native-firebase/crashlytics/android/build.gradle +++ b/node_modules/@react-native-firebase/crashlytics/android/build.gradle -@@ -76,6 +76,12 @@ android { +@@ -67,6 +67,12 @@ project.ext { + android { + defaultConfig { + multiDexEnabled true ++ ++ externalNativeBuild { ++ cmake { ++ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ } ++ } + } + lintOptions { + disable 'GradleCompatible' +@@ -76,6 +82,12 @@ android { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } @@ -15,4054 +28,3 @@ index 9b89ae7..a759181 100644 } repositories { -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/results.bin b/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/results.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/results.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/transformed/classes/classes_dex/classes.dex b/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/transformed/classes/classes_dex/classes.dex -new file mode 100644 -index 0000000..467f751 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/.transforms/1c7545bd4f81d39ab8730146a32d6733/transformed/classes/classes_dex/classes.dex differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/generated/source/buildConfig/debug/io/invertase/firebase/crashlytics/BuildConfig.java b/node_modules/@react-native-firebase/crashlytics/android/build/generated/source/buildConfig/debug/io/invertase/firebase/crashlytics/BuildConfig.java -new file mode 100644 -index 0000000..f8d4ce0 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/generated/source/buildConfig/debug/io/invertase/firebase/crashlytics/BuildConfig.java -@@ -0,0 +1,10 @@ -+/** -+ * Automatically generated file. DO NOT MODIFY -+ */ -+package io.invertase.firebase.crashlytics; -+ -+public final class BuildConfig { -+ public static final boolean DEBUG = Boolean.parseBoolean("true"); -+ public static final String LIBRARY_PACKAGE_NAME = "io.invertase.firebase.crashlytics"; -+ public static final String BUILD_TYPE = "debug"; -+} -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -new file mode 100644 -index 0000000..e17ecd6 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json -new file mode 100644 -index 0000000..e4a0684 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/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": "io.invertase.firebase.crashlytics", -+ "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-firebase/crashlytics/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties -new file mode 100644 -index 0000000..1211b1e ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -new file mode 100644 -index 0000000..9e26dfe ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar -new file mode 100644 -index 0000000..5f1e3d8 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar -new file mode 100644 -index 0000000..b5cd559 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -new file mode 100644 -index 0000000..823fef9 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -@@ -0,0 +1,2119 @@ -+int anim abc_fade_in 0x0 -+int anim abc_fade_out 0x0 -+int anim abc_grow_fade_in_from_bottom 0x0 -+int anim abc_popup_enter 0x0 -+int anim abc_popup_exit 0x0 -+int anim abc_shrink_fade_out_from_bottom 0x0 -+int anim abc_slide_in_bottom 0x0 -+int anim abc_slide_in_top 0x0 -+int anim abc_slide_out_bottom 0x0 -+int anim abc_slide_out_top 0x0 -+int anim abc_tooltip_enter 0x0 -+int anim abc_tooltip_exit 0x0 -+int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 -+int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 -+int anim btn_checkbox_to_checked_icon_null_animation 0x0 -+int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 -+int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 -+int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 -+int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 -+int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 -+int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 -+int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 -+int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 -+int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 -+int anim catalyst_fade_in 0x0 -+int anim catalyst_fade_out 0x0 -+int anim catalyst_push_up_in 0x0 -+int anim catalyst_push_up_out 0x0 -+int anim catalyst_slide_down 0x0 -+int anim catalyst_slide_up 0x0 -+int anim fragment_fast_out_extra_slow_in 0x0 -+int animator fragment_close_enter 0x0 -+int animator fragment_close_exit 0x0 -+int animator fragment_fade_enter 0x0 -+int animator fragment_fade_exit 0x0 -+int animator fragment_open_enter 0x0 -+int animator fragment_open_exit 0x0 -+int attr actionBarDivider 0x0 -+int attr actionBarItemBackground 0x0 -+int attr actionBarPopupTheme 0x0 -+int attr actionBarSize 0x0 -+int attr actionBarSplitStyle 0x0 -+int attr actionBarStyle 0x0 -+int attr actionBarTabBarStyle 0x0 -+int attr actionBarTabStyle 0x0 -+int attr actionBarTabTextStyle 0x0 -+int attr actionBarTheme 0x0 -+int attr actionBarWidgetTheme 0x0 -+int attr actionButtonStyle 0x0 -+int attr actionDropDownStyle 0x0 -+int attr actionLayout 0x0 -+int attr actionMenuTextAppearance 0x0 -+int attr actionMenuTextColor 0x0 -+int attr actionModeBackground 0x0 -+int attr actionModeCloseButtonStyle 0x0 -+int attr actionModeCloseContentDescription 0x0 -+int attr actionModeCloseDrawable 0x0 -+int attr actionModeCopyDrawable 0x0 -+int attr actionModeCutDrawable 0x0 -+int attr actionModeFindDrawable 0x0 -+int attr actionModePasteDrawable 0x0 -+int attr actionModePopupWindowStyle 0x0 -+int attr actionModeSelectAllDrawable 0x0 -+int attr actionModeShareDrawable 0x0 -+int attr actionModeSplitBackground 0x0 -+int attr actionModeStyle 0x0 -+int attr actionModeTheme 0x0 -+int attr actionModeWebSearchDrawable 0x0 -+int attr actionOverflowButtonStyle 0x0 -+int attr actionOverflowMenuStyle 0x0 -+int attr actionProviderClass 0x0 -+int attr actionViewClass 0x0 -+int attr activityChooserViewStyle 0x0 -+int attr actualImageResource 0x0 -+int attr actualImageScaleType 0x0 -+int attr actualImageUri 0x0 -+int attr alertDialogButtonGroupStyle 0x0 -+int attr alertDialogCenterButtons 0x0 -+int attr alertDialogStyle 0x0 -+int attr alertDialogTheme 0x0 -+int attr allowStacking 0x0 -+int attr alpha 0x0 -+int attr alphabeticModifiers 0x0 -+int attr arrowHeadLength 0x0 -+int attr arrowShaftLength 0x0 -+int attr autoCompleteTextViewStyle 0x0 -+int attr autoSizeMaxTextSize 0x0 -+int attr autoSizeMinTextSize 0x0 -+int attr autoSizePresetSizes 0x0 -+int attr autoSizeStepGranularity 0x0 -+int attr autoSizeTextType 0x0 -+int attr autofillInlineSuggestionChip 0x0 -+int attr autofillInlineSuggestionEndIconStyle 0x0 -+int attr autofillInlineSuggestionStartIconStyle 0x0 -+int attr autofillInlineSuggestionSubtitle 0x0 -+int attr autofillInlineSuggestionTitle 0x0 -+int attr background 0x0 -+int attr backgroundImage 0x0 -+int attr backgroundSplit 0x0 -+int attr backgroundStacked 0x0 -+int attr backgroundTint 0x0 -+int attr backgroundTintMode 0x0 -+int attr barLength 0x0 -+int attr borderlessButtonStyle 0x0 -+int attr buttonBarButtonStyle 0x0 -+int attr buttonBarNegativeButtonStyle 0x0 -+int attr buttonBarNeutralButtonStyle 0x0 -+int attr buttonBarPositiveButtonStyle 0x0 -+int attr buttonBarStyle 0x0 -+int attr buttonCompat 0x0 -+int attr buttonGravity 0x0 -+int attr buttonIconDimen 0x0 -+int attr buttonPanelSideLayout 0x0 -+int attr buttonSize 0x0 -+int attr buttonStyle 0x0 -+int attr buttonStyleSmall 0x0 -+int attr buttonTint 0x0 -+int attr buttonTintMode 0x0 -+int attr checkMarkCompat 0x0 -+int attr checkMarkTint 0x0 -+int attr checkMarkTintMode 0x0 -+int attr checkboxStyle 0x0 -+int attr checkedTextViewStyle 0x0 -+int attr circleCrop 0x0 -+int attr closeIcon 0x0 -+int attr closeItemLayout 0x0 -+int attr collapseContentDescription 0x0 -+int attr collapseIcon 0x0 -+int attr color 0x0 -+int attr colorAccent 0x0 -+int attr colorBackgroundFloating 0x0 -+int attr colorButtonNormal 0x0 -+int attr colorControlActivated 0x0 -+int attr colorControlHighlight 0x0 -+int attr colorControlNormal 0x0 -+int attr colorError 0x0 -+int attr colorPrimary 0x0 -+int attr colorPrimaryDark 0x0 -+int attr colorScheme 0x0 -+int attr colorSwitchThumbNormal 0x0 -+int attr commitIcon 0x0 -+int attr contentDescription 0x0 -+int attr contentInsetEnd 0x0 -+int attr contentInsetEndWithActions 0x0 -+int attr contentInsetLeft 0x0 -+int attr contentInsetRight 0x0 -+int attr contentInsetStart 0x0 -+int attr contentInsetStartWithNavigation 0x0 -+int attr controlBackground 0x0 -+int attr coordinatorLayoutStyle 0x0 -+int attr customNavigationLayout 0x0 -+int attr defaultQueryHint 0x0 -+int attr dialogCornerRadius 0x0 -+int attr dialogPreferredPadding 0x0 -+int attr dialogTheme 0x0 -+int attr displayOptions 0x0 -+int attr divider 0x0 -+int attr dividerHorizontal 0x0 -+int attr dividerPadding 0x0 -+int attr dividerVertical 0x0 -+int attr drawableBottomCompat 0x0 -+int attr drawableEndCompat 0x0 -+int attr drawableLeftCompat 0x0 -+int attr drawableRightCompat 0x0 -+int attr drawableSize 0x0 -+int attr drawableStartCompat 0x0 -+int attr drawableTint 0x0 -+int attr drawableTintMode 0x0 -+int attr drawableTopCompat 0x0 -+int attr drawerArrowStyle 0x0 -+int attr drawerLayoutStyle 0x0 -+int attr dropDownListViewStyle 0x0 -+int attr dropdownListPreferredItemHeight 0x0 -+int attr editTextBackground 0x0 -+int attr editTextColor 0x0 -+int attr editTextStyle 0x0 -+int attr elevation 0x0 -+int attr emojiCompatEnabled 0x0 -+int attr expandActivityOverflowButtonDrawable 0x0 -+int attr fadeDuration 0x0 -+int attr failureImage 0x0 -+int attr failureImageScaleType 0x0 -+int attr firstBaselineToTopHeight 0x0 -+int attr font 0x0 -+int attr fontFamily 0x0 -+int attr fontProviderAuthority 0x0 -+int attr fontProviderCerts 0x0 -+int attr fontProviderFetchStrategy 0x0 -+int attr fontProviderFetchTimeout 0x0 -+int attr fontProviderPackage 0x0 -+int attr fontProviderQuery 0x0 -+int attr fontProviderSystemFontFamily 0x0 -+int attr fontStyle 0x0 -+int attr fontVariationSettings 0x0 -+int attr fontWeight 0x0 -+int attr gapBetweenBars 0x0 -+int attr goIcon 0x0 -+int attr height 0x0 -+int attr hideOnContentScroll 0x0 -+int attr homeAsUpIndicator 0x0 -+int attr homeLayout 0x0 -+int attr icon 0x0 -+int attr iconTint 0x0 -+int attr iconTintMode 0x0 -+int attr iconifiedByDefault 0x0 -+int attr imageAspectRatio 0x0 -+int attr imageAspectRatioAdjust 0x0 -+int attr imageButtonStyle 0x0 -+int attr indeterminateProgressStyle 0x0 -+int attr initialActivityCount 0x0 -+int attr isAutofillInlineSuggestionTheme 0x0 -+int attr isLightTheme 0x0 -+int attr itemPadding 0x0 -+int attr keylines 0x0 -+int attr lStar 0x0 -+int attr lastBaselineToBottomHeight 0x0 -+int attr layout 0x0 -+int attr layout_anchor 0x0 -+int attr layout_anchorGravity 0x0 -+int attr layout_behavior 0x0 -+int attr layout_dodgeInsetEdges 0x0 -+int attr layout_insetEdge 0x0 -+int attr layout_keyline 0x0 -+int attr lineHeight 0x0 -+int attr listChoiceBackgroundIndicator 0x0 -+int attr listChoiceIndicatorMultipleAnimated 0x0 -+int attr listChoiceIndicatorSingleAnimated 0x0 -+int attr listDividerAlertDialog 0x0 -+int attr listItemLayout 0x0 -+int attr listLayout 0x0 -+int attr listMenuViewStyle 0x0 -+int attr listPopupWindowStyle 0x0 -+int attr listPreferredItemHeight 0x0 -+int attr listPreferredItemHeightLarge 0x0 -+int attr listPreferredItemHeightSmall 0x0 -+int attr listPreferredItemPaddingEnd 0x0 -+int attr listPreferredItemPaddingLeft 0x0 -+int attr listPreferredItemPaddingRight 0x0 -+int attr listPreferredItemPaddingStart 0x0 -+int attr logo 0x0 -+int attr logoDescription 0x0 -+int attr maxButtonHeight 0x0 -+int attr measureWithLargestChild 0x0 -+int attr menu 0x0 -+int attr multiChoiceItemLayout 0x0 -+int attr navigationContentDescription 0x0 -+int attr navigationIcon 0x0 -+int attr navigationMode 0x0 -+int attr nestedScrollViewStyle 0x0 -+int attr numericModifiers 0x0 -+int attr overlapAnchor 0x0 -+int attr overlayImage 0x0 -+int attr paddingBottomNoButtons 0x0 -+int attr paddingEnd 0x0 -+int attr paddingStart 0x0 -+int attr paddingTopNoTitle 0x0 -+int attr panelBackground 0x0 -+int attr panelMenuListTheme 0x0 -+int attr panelMenuListWidth 0x0 -+int attr placeholderImage 0x0 -+int attr placeholderImageScaleType 0x0 -+int attr popupMenuStyle 0x0 -+int attr popupTheme 0x0 -+int attr popupWindowStyle 0x0 -+int attr preserveIconSpacing 0x0 -+int attr pressedStateOverlayImage 0x0 -+int attr progressBarAutoRotateInterval 0x0 -+int attr progressBarImage 0x0 -+int attr progressBarImageScaleType 0x0 -+int attr progressBarPadding 0x0 -+int attr progressBarStyle 0x0 -+int attr queryBackground 0x0 -+int attr queryHint 0x0 -+int attr queryPatterns 0x0 -+int attr radioButtonStyle 0x0 -+int attr ratingBarStyle 0x0 -+int attr ratingBarStyleIndicator 0x0 -+int attr ratingBarStyleSmall 0x0 -+int attr retryImage 0x0 -+int attr retryImageScaleType 0x0 -+int attr roundAsCircle 0x0 -+int attr roundBottomEnd 0x0 -+int attr roundBottomLeft 0x0 -+int attr roundBottomRight 0x0 -+int attr roundBottomStart 0x0 -+int attr roundTopEnd 0x0 -+int attr roundTopLeft 0x0 -+int attr roundTopRight 0x0 -+int attr roundTopStart 0x0 -+int attr roundWithOverlayColor 0x0 -+int attr roundedCornerRadius 0x0 -+int attr roundingBorderColor 0x0 -+int attr roundingBorderPadding 0x0 -+int attr roundingBorderWidth 0x0 -+int attr scopeUris 0x0 -+int attr searchHintIcon 0x0 -+int attr searchIcon 0x0 -+int attr searchViewStyle 0x0 -+int attr seekBarStyle 0x0 -+int attr selectableItemBackground 0x0 -+int attr selectableItemBackgroundBorderless 0x0 -+int attr shortcutMatchRequired 0x0 -+int attr showAsAction 0x0 -+int attr showDividers 0x0 -+int attr showText 0x0 -+int attr showTitle 0x0 -+int attr singleChoiceItemLayout 0x0 -+int attr spinBars 0x0 -+int attr spinnerDropDownItemStyle 0x0 -+int attr spinnerStyle 0x0 -+int attr splitTrack 0x0 -+int attr srcCompat 0x0 -+int attr state_above_anchor 0x0 -+int attr statusBarBackground 0x0 -+int attr subMenuArrow 0x0 -+int attr submitBackground 0x0 -+int attr subtitle 0x0 -+int attr subtitleTextAppearance 0x0 -+int attr subtitleTextColor 0x0 -+int attr subtitleTextStyle 0x0 -+int attr suggestionRowLayout 0x0 -+int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 -+int attr switchMinWidth 0x0 -+int attr switchPadding 0x0 -+int attr switchStyle 0x0 -+int attr switchTextAppearance 0x0 -+int attr textAllCaps 0x0 -+int attr textAppearanceLargePopupMenu 0x0 -+int attr textAppearanceListItem 0x0 -+int attr textAppearanceListItemSecondary 0x0 -+int attr textAppearanceListItemSmall 0x0 -+int attr textAppearancePopupMenuHeader 0x0 -+int attr textAppearanceSearchResultSubtitle 0x0 -+int attr textAppearanceSearchResultTitle 0x0 -+int attr textAppearanceSmallPopupMenu 0x0 -+int attr textColorAlertDialogListItem 0x0 -+int attr textColorSearchUrl 0x0 -+int attr textLocale 0x0 -+int attr theme 0x0 -+int attr thickness 0x0 -+int attr thumbTextPadding 0x0 -+int attr thumbTint 0x0 -+int attr thumbTintMode 0x0 -+int attr tickMark 0x0 -+int attr tickMarkTint 0x0 -+int attr tickMarkTintMode 0x0 -+int attr tint 0x0 -+int attr tintMode 0x0 -+int attr title 0x0 -+int attr titleMargin 0x0 -+int attr titleMarginBottom 0x0 -+int attr titleMarginEnd 0x0 -+int attr titleMarginStart 0x0 -+int attr titleMarginTop 0x0 -+int attr titleMargins 0x0 -+int attr titleTextAppearance 0x0 -+int attr titleTextColor 0x0 -+int attr titleTextStyle 0x0 -+int attr toolbarNavigationButtonStyle 0x0 -+int attr toolbarStyle 0x0 -+int attr tooltipForegroundColor 0x0 -+int attr tooltipFrameBackground 0x0 -+int attr tooltipText 0x0 -+int attr track 0x0 -+int attr trackTint 0x0 -+int attr trackTintMode 0x0 -+int attr ttcIndex 0x0 -+int attr viewAspectRatio 0x0 -+int attr viewInflaterClass 0x0 -+int attr voiceIcon 0x0 -+int attr windowActionBar 0x0 -+int attr windowActionBarOverlay 0x0 -+int attr windowActionModeOverlay 0x0 -+int attr windowFixedHeightMajor 0x0 -+int attr windowFixedHeightMinor 0x0 -+int attr windowFixedWidthMajor 0x0 -+int attr windowFixedWidthMinor 0x0 -+int attr windowMinWidthMajor 0x0 -+int attr windowMinWidthMinor 0x0 -+int attr windowNoTitle 0x0 -+int bool abc_action_bar_embed_tabs 0x0 -+int bool abc_config_actionMenuItemAllCaps 0x0 -+int color abc_background_cache_hint_selector_material_dark 0x0 -+int color abc_background_cache_hint_selector_material_light 0x0 -+int color abc_btn_colored_borderless_text_material 0x0 -+int color abc_btn_colored_text_material 0x0 -+int color abc_color_highlight_material 0x0 -+int color abc_decor_view_status_guard 0x0 -+int color abc_decor_view_status_guard_light 0x0 -+int color abc_hint_foreground_material_dark 0x0 -+int color abc_hint_foreground_material_light 0x0 -+int color abc_primary_text_disable_only_material_dark 0x0 -+int color abc_primary_text_disable_only_material_light 0x0 -+int color abc_primary_text_material_dark 0x0 -+int color abc_primary_text_material_light 0x0 -+int color abc_search_url_text 0x0 -+int color abc_search_url_text_normal 0x0 -+int color abc_search_url_text_pressed 0x0 -+int color abc_search_url_text_selected 0x0 -+int color abc_secondary_text_material_dark 0x0 -+int color abc_secondary_text_material_light 0x0 -+int color abc_tint_btn_checkable 0x0 -+int color abc_tint_default 0x0 -+int color abc_tint_edittext 0x0 -+int color abc_tint_seek_thumb 0x0 -+int color abc_tint_spinner 0x0 -+int color abc_tint_switch_track 0x0 -+int color accent_material_dark 0x0 -+int color accent_material_light 0x0 -+int color androidx_core_ripple_material_light 0x0 -+int color androidx_core_secondary_text_default_material_light 0x0 -+int color background_floating_material_dark 0x0 -+int color background_floating_material_light 0x0 -+int color background_material_dark 0x0 -+int color background_material_light 0x0 -+int color bright_foreground_disabled_material_dark 0x0 -+int color bright_foreground_disabled_material_light 0x0 -+int color bright_foreground_inverse_material_dark 0x0 -+int color bright_foreground_inverse_material_light 0x0 -+int color bright_foreground_material_dark 0x0 -+int color bright_foreground_material_light 0x0 -+int color button_material_dark 0x0 -+int color button_material_light 0x0 -+int color call_notification_answer_color 0x0 -+int color call_notification_decline_color 0x0 -+int color catalyst_logbox_background 0x0 -+int color catalyst_redbox_background 0x0 -+int color common_google_signin_btn_text_dark 0x0 -+int color common_google_signin_btn_text_dark_default 0x0 -+int color common_google_signin_btn_text_dark_disabled 0x0 -+int color common_google_signin_btn_text_dark_focused 0x0 -+int color common_google_signin_btn_text_dark_pressed 0x0 -+int color common_google_signin_btn_text_light 0x0 -+int color common_google_signin_btn_text_light_default 0x0 -+int color common_google_signin_btn_text_light_disabled 0x0 -+int color common_google_signin_btn_text_light_focused 0x0 -+int color common_google_signin_btn_text_light_pressed 0x0 -+int color common_google_signin_btn_tint 0x0 -+int color dim_foreground_disabled_material_dark 0x0 -+int color dim_foreground_disabled_material_light 0x0 -+int color dim_foreground_material_dark 0x0 -+int color dim_foreground_material_light 0x0 -+int color error_color_material_dark 0x0 -+int color error_color_material_light 0x0 -+int color foreground_material_dark 0x0 -+int color foreground_material_light 0x0 -+int color highlighted_text_material_dark 0x0 -+int color highlighted_text_material_light 0x0 -+int color material_blue_grey_800 0x0 -+int color material_blue_grey_900 0x0 -+int color material_blue_grey_950 0x0 -+int color material_deep_teal_200 0x0 -+int color material_deep_teal_500 0x0 -+int color material_grey_100 0x0 -+int color material_grey_300 0x0 -+int color material_grey_50 0x0 -+int color material_grey_600 0x0 -+int color material_grey_800 0x0 -+int color material_grey_850 0x0 -+int color material_grey_900 0x0 -+int color notification_action_color_filter 0x0 -+int color notification_icon_bg_color 0x0 -+int color notification_material_background_media_default_color 0x0 -+int color primary_dark_material_dark 0x0 -+int color primary_dark_material_light 0x0 -+int color primary_material_dark 0x0 -+int color primary_material_light 0x0 -+int color primary_text_default_material_dark 0x0 -+int color primary_text_default_material_light 0x0 -+int color primary_text_disabled_material_dark 0x0 -+int color primary_text_disabled_material_light 0x0 -+int color ripple_material_dark 0x0 -+int color ripple_material_light 0x0 -+int color secondary_text_default_material_dark 0x0 -+int color secondary_text_default_material_light 0x0 -+int color secondary_text_disabled_material_dark 0x0 -+int color secondary_text_disabled_material_light 0x0 -+int color switch_thumb_disabled_material_dark 0x0 -+int color switch_thumb_disabled_material_light 0x0 -+int color switch_thumb_material_dark 0x0 -+int color switch_thumb_material_light 0x0 -+int color switch_thumb_normal_material_dark 0x0 -+int color switch_thumb_normal_material_light 0x0 -+int color tooltip_background_dark 0x0 -+int color tooltip_background_light 0x0 -+int dimen abc_action_bar_content_inset_material 0x0 -+int dimen abc_action_bar_content_inset_with_nav 0x0 -+int dimen abc_action_bar_default_height_material 0x0 -+int dimen abc_action_bar_default_padding_end_material 0x0 -+int dimen abc_action_bar_default_padding_start_material 0x0 -+int dimen abc_action_bar_elevation_material 0x0 -+int dimen abc_action_bar_icon_vertical_padding_material 0x0 -+int dimen abc_action_bar_overflow_padding_end_material 0x0 -+int dimen abc_action_bar_overflow_padding_start_material 0x0 -+int dimen abc_action_bar_stacked_max_height 0x0 -+int dimen abc_action_bar_stacked_tab_max_width 0x0 -+int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 -+int dimen abc_action_bar_subtitle_top_margin_material 0x0 -+int dimen abc_action_button_min_height_material 0x0 -+int dimen abc_action_button_min_width_material 0x0 -+int dimen abc_action_button_min_width_overflow_material 0x0 -+int dimen abc_alert_dialog_button_bar_height 0x0 -+int dimen abc_alert_dialog_button_dimen 0x0 -+int dimen abc_button_inset_horizontal_material 0x0 -+int dimen abc_button_inset_vertical_material 0x0 -+int dimen abc_button_padding_horizontal_material 0x0 -+int dimen abc_button_padding_vertical_material 0x0 -+int dimen abc_cascading_menus_min_smallest_width 0x0 -+int dimen abc_config_prefDialogWidth 0x0 -+int dimen abc_control_corner_material 0x0 -+int dimen abc_control_inset_material 0x0 -+int dimen abc_control_padding_material 0x0 -+int dimen abc_dialog_corner_radius_material 0x0 -+int dimen abc_dialog_fixed_height_major 0x0 -+int dimen abc_dialog_fixed_height_minor 0x0 -+int dimen abc_dialog_fixed_width_major 0x0 -+int dimen abc_dialog_fixed_width_minor 0x0 -+int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 -+int dimen abc_dialog_list_padding_top_no_title 0x0 -+int dimen abc_dialog_min_width_major 0x0 -+int dimen abc_dialog_min_width_minor 0x0 -+int dimen abc_dialog_padding_material 0x0 -+int dimen abc_dialog_padding_top_material 0x0 -+int dimen abc_dialog_title_divider_material 0x0 -+int dimen abc_disabled_alpha_material_dark 0x0 -+int dimen abc_disabled_alpha_material_light 0x0 -+int dimen abc_dropdownitem_icon_width 0x0 -+int dimen abc_dropdownitem_text_padding_left 0x0 -+int dimen abc_dropdownitem_text_padding_right 0x0 -+int dimen abc_edit_text_inset_bottom_material 0x0 -+int dimen abc_edit_text_inset_horizontal_material 0x0 -+int dimen abc_edit_text_inset_top_material 0x0 -+int dimen abc_floating_window_z 0x0 -+int dimen abc_list_item_height_large_material 0x0 -+int dimen abc_list_item_height_material 0x0 -+int dimen abc_list_item_height_small_material 0x0 -+int dimen abc_list_item_padding_horizontal_material 0x0 -+int dimen abc_panel_menu_list_width 0x0 -+int dimen abc_progress_bar_height_material 0x0 -+int dimen abc_search_view_preferred_height 0x0 -+int dimen abc_search_view_preferred_width 0x0 -+int dimen abc_seekbar_track_background_height_material 0x0 -+int dimen abc_seekbar_track_progress_height_material 0x0 -+int dimen abc_select_dialog_padding_start_material 0x0 -+int dimen abc_star_big 0x0 -+int dimen abc_star_medium 0x0 -+int dimen abc_star_small 0x0 -+int dimen abc_switch_padding 0x0 -+int dimen abc_text_size_body_1_material 0x0 -+int dimen abc_text_size_body_2_material 0x0 -+int dimen abc_text_size_button_material 0x0 -+int dimen abc_text_size_caption_material 0x0 -+int dimen abc_text_size_display_1_material 0x0 -+int dimen abc_text_size_display_2_material 0x0 -+int dimen abc_text_size_display_3_material 0x0 -+int dimen abc_text_size_display_4_material 0x0 -+int dimen abc_text_size_headline_material 0x0 -+int dimen abc_text_size_large_material 0x0 -+int dimen abc_text_size_medium_material 0x0 -+int dimen abc_text_size_menu_header_material 0x0 -+int dimen abc_text_size_menu_material 0x0 -+int dimen abc_text_size_small_material 0x0 -+int dimen abc_text_size_subhead_material 0x0 -+int dimen abc_text_size_subtitle_material_toolbar 0x0 -+int dimen abc_text_size_title_material 0x0 -+int dimen abc_text_size_title_material_toolbar 0x0 -+int dimen autofill_inline_suggestion_icon_size 0x0 -+int dimen compat_button_inset_horizontal_material 0x0 -+int dimen compat_button_inset_vertical_material 0x0 -+int dimen compat_button_padding_horizontal_material 0x0 -+int dimen compat_button_padding_vertical_material 0x0 -+int dimen compat_control_corner_material 0x0 -+int dimen compat_notification_large_icon_max_height 0x0 -+int dimen compat_notification_large_icon_max_width 0x0 -+int dimen def_drawer_elevation 0x0 -+int dimen disabled_alpha_material_dark 0x0 -+int dimen disabled_alpha_material_light 0x0 -+int dimen highlight_alpha_material_colored 0x0 -+int dimen highlight_alpha_material_dark 0x0 -+int dimen highlight_alpha_material_light 0x0 -+int dimen hint_alpha_material_dark 0x0 -+int dimen hint_alpha_material_light 0x0 -+int dimen hint_pressed_alpha_material_dark 0x0 -+int dimen hint_pressed_alpha_material_light 0x0 -+int dimen notification_action_icon_size 0x0 -+int dimen notification_action_text_size 0x0 -+int dimen notification_big_circle_margin 0x0 -+int dimen notification_content_margin_start 0x0 -+int dimen notification_large_icon_height 0x0 -+int dimen notification_large_icon_width 0x0 -+int dimen notification_main_column_padding_top 0x0 -+int dimen notification_media_narrow_margin 0x0 -+int dimen notification_right_icon_size 0x0 -+int dimen notification_right_side_padding_top 0x0 -+int dimen notification_small_icon_background_padding 0x0 -+int dimen notification_small_icon_size_as_large 0x0 -+int dimen notification_subtext_size 0x0 -+int dimen notification_top_pad 0x0 -+int dimen notification_top_pad_large_text 0x0 -+int dimen tooltip_corner_radius 0x0 -+int dimen tooltip_horizontal_padding 0x0 -+int dimen tooltip_margin 0x0 -+int dimen tooltip_precise_anchor_extra_offset 0x0 -+int dimen tooltip_precise_anchor_threshold 0x0 -+int dimen tooltip_vertical_padding 0x0 -+int dimen tooltip_y_offset_non_touch 0x0 -+int dimen tooltip_y_offset_touch 0x0 -+int drawable abc_ab_share_pack_mtrl_alpha 0x0 -+int drawable abc_action_bar_item_background_material 0x0 -+int drawable abc_btn_borderless_material 0x0 -+int drawable abc_btn_check_material 0x0 -+int drawable abc_btn_check_material_anim 0x0 -+int drawable abc_btn_check_to_on_mtrl_000 0x0 -+int drawable abc_btn_check_to_on_mtrl_015 0x0 -+int drawable abc_btn_colored_material 0x0 -+int drawable abc_btn_default_mtrl_shape 0x0 -+int drawable abc_btn_radio_material 0x0 -+int drawable abc_btn_radio_material_anim 0x0 -+int drawable abc_btn_radio_to_on_mtrl_000 0x0 -+int drawable abc_btn_radio_to_on_mtrl_015 0x0 -+int drawable abc_btn_switch_to_on_mtrl_00001 0x0 -+int drawable abc_btn_switch_to_on_mtrl_00012 0x0 -+int drawable abc_cab_background_internal_bg 0x0 -+int drawable abc_cab_background_top_material 0x0 -+int drawable abc_cab_background_top_mtrl_alpha 0x0 -+int drawable abc_control_background_material 0x0 -+int drawable abc_dialog_material_background 0x0 -+int drawable abc_edit_text_material 0x0 -+int drawable abc_ic_ab_back_material 0x0 -+int drawable abc_ic_arrow_drop_right_black_24dp 0x0 -+int drawable abc_ic_clear_material 0x0 -+int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 -+int drawable abc_ic_go_search_api_material 0x0 -+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 -+int drawable abc_ic_menu_cut_mtrl_alpha 0x0 -+int drawable abc_ic_menu_overflow_material 0x0 -+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 -+int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 -+int drawable abc_ic_menu_share_mtrl_alpha 0x0 -+int drawable abc_ic_search_api_material 0x0 -+int drawable abc_ic_voice_search_api_material 0x0 -+int drawable abc_item_background_holo_dark 0x0 -+int drawable abc_item_background_holo_light 0x0 -+int drawable abc_list_divider_material 0x0 -+int drawable abc_list_divider_mtrl_alpha 0x0 -+int drawable abc_list_focused_holo 0x0 -+int drawable abc_list_longpressed_holo 0x0 -+int drawable abc_list_pressed_holo_dark 0x0 -+int drawable abc_list_pressed_holo_light 0x0 -+int drawable abc_list_selector_background_transition_holo_dark 0x0 -+int drawable abc_list_selector_background_transition_holo_light 0x0 -+int drawable abc_list_selector_disabled_holo_dark 0x0 -+int drawable abc_list_selector_disabled_holo_light 0x0 -+int drawable abc_list_selector_holo_dark 0x0 -+int drawable abc_list_selector_holo_light 0x0 -+int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 -+int drawable abc_popup_background_mtrl_mult 0x0 -+int drawable abc_ratingbar_indicator_material 0x0 -+int drawable abc_ratingbar_material 0x0 -+int drawable abc_ratingbar_small_material 0x0 -+int drawable abc_scrubber_control_off_mtrl_alpha 0x0 -+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 -+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 -+int drawable abc_scrubber_primary_mtrl_alpha 0x0 -+int drawable abc_scrubber_track_mtrl_alpha 0x0 -+int drawable abc_seekbar_thumb_material 0x0 -+int drawable abc_seekbar_tick_mark_material 0x0 -+int drawable abc_seekbar_track_material 0x0 -+int drawable abc_spinner_mtrl_am_alpha 0x0 -+int drawable abc_spinner_textfield_background_material 0x0 -+int drawable abc_star_black_48dp 0x0 -+int drawable abc_star_half_black_48dp 0x0 -+int drawable abc_switch_thumb_material 0x0 -+int drawable abc_switch_track_mtrl_alpha 0x0 -+int drawable abc_tab_indicator_material 0x0 -+int drawable abc_tab_indicator_mtrl_alpha 0x0 -+int drawable abc_text_cursor_material 0x0 -+int drawable abc_text_select_handle_left_mtrl 0x0 -+int drawable abc_text_select_handle_middle_mtrl 0x0 -+int drawable abc_text_select_handle_right_mtrl 0x0 -+int drawable abc_textfield_activated_mtrl_alpha 0x0 -+int drawable abc_textfield_default_mtrl_alpha 0x0 -+int drawable abc_textfield_search_activated_mtrl_alpha 0x0 -+int drawable abc_textfield_search_default_mtrl_alpha 0x0 -+int drawable abc_textfield_search_material 0x0 -+int drawable abc_vector_test 0x0 -+int drawable autofill_inline_suggestion_chip_background 0x0 -+int drawable btn_checkbox_checked_mtrl 0x0 -+int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 -+int drawable btn_checkbox_unchecked_mtrl 0x0 -+int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 -+int drawable btn_radio_off_mtrl 0x0 -+int drawable btn_radio_off_to_on_mtrl_animation 0x0 -+int drawable btn_radio_on_mtrl 0x0 -+int drawable btn_radio_on_to_off_mtrl_animation 0x0 -+int drawable common_full_open_on_phone 0x0 -+int drawable common_google_signin_btn_icon_dark 0x0 -+int drawable common_google_signin_btn_icon_dark_focused 0x0 -+int drawable common_google_signin_btn_icon_dark_normal 0x0 -+int drawable common_google_signin_btn_icon_dark_normal_background 0x0 -+int drawable common_google_signin_btn_icon_disabled 0x0 -+int drawable common_google_signin_btn_icon_light 0x0 -+int drawable common_google_signin_btn_icon_light_focused 0x0 -+int drawable common_google_signin_btn_icon_light_normal 0x0 -+int drawable common_google_signin_btn_icon_light_normal_background 0x0 -+int drawable common_google_signin_btn_text_dark 0x0 -+int drawable common_google_signin_btn_text_dark_focused 0x0 -+int drawable common_google_signin_btn_text_dark_normal 0x0 -+int drawable common_google_signin_btn_text_dark_normal_background 0x0 -+int drawable common_google_signin_btn_text_disabled 0x0 -+int drawable common_google_signin_btn_text_light 0x0 -+int drawable common_google_signin_btn_text_light_focused 0x0 -+int drawable common_google_signin_btn_text_light_normal 0x0 -+int drawable common_google_signin_btn_text_light_normal_background 0x0 -+int drawable googleg_disabled_color_18 0x0 -+int drawable googleg_standard_color_18 0x0 -+int drawable ic_call_answer 0x0 -+int drawable ic_call_answer_low 0x0 -+int drawable ic_call_answer_video 0x0 -+int drawable ic_call_answer_video_low 0x0 -+int drawable ic_call_decline 0x0 -+int drawable ic_call_decline_low 0x0 -+int drawable ic_resume 0x0 -+int drawable notification_action_background 0x0 -+int drawable notification_bg 0x0 -+int drawable notification_bg_low 0x0 -+int drawable notification_bg_low_normal 0x0 -+int drawable notification_bg_low_pressed 0x0 -+int drawable notification_bg_normal 0x0 -+int drawable notification_bg_normal_pressed 0x0 -+int drawable notification_icon_background 0x0 -+int drawable notification_oversize_large_icon_bg 0x0 -+int drawable notification_template_icon_bg 0x0 -+int drawable notification_template_icon_low_bg 0x0 -+int drawable notification_tile_bg 0x0 -+int drawable notify_panel_notification_icon_bg 0x0 -+int drawable paused_in_debugger_background 0x0 -+int drawable paused_in_debugger_dialog_background 0x0 -+int drawable redbox_top_border_background 0x0 -+int drawable ripple_effect 0x0 -+int drawable test_level_drawable 0x0 -+int drawable tooltip_frame_dark 0x0 -+int drawable tooltip_frame_light 0x0 -+int id accessibility_action_clickable_span 0x0 -+int id accessibility_actions 0x0 -+int id accessibility_collection 0x0 -+int id accessibility_collection_item 0x0 -+int id accessibility_custom_action_0 0x0 -+int id accessibility_custom_action_1 0x0 -+int id accessibility_custom_action_10 0x0 -+int id accessibility_custom_action_11 0x0 -+int id accessibility_custom_action_12 0x0 -+int id accessibility_custom_action_13 0x0 -+int id accessibility_custom_action_14 0x0 -+int id accessibility_custom_action_15 0x0 -+int id accessibility_custom_action_16 0x0 -+int id accessibility_custom_action_17 0x0 -+int id accessibility_custom_action_18 0x0 -+int id accessibility_custom_action_19 0x0 -+int id accessibility_custom_action_2 0x0 -+int id accessibility_custom_action_20 0x0 -+int id accessibility_custom_action_21 0x0 -+int id accessibility_custom_action_22 0x0 -+int id accessibility_custom_action_23 0x0 -+int id accessibility_custom_action_24 0x0 -+int id accessibility_custom_action_25 0x0 -+int id accessibility_custom_action_26 0x0 -+int id accessibility_custom_action_27 0x0 -+int id accessibility_custom_action_28 0x0 -+int id accessibility_custom_action_29 0x0 -+int id accessibility_custom_action_3 0x0 -+int id accessibility_custom_action_30 0x0 -+int id accessibility_custom_action_31 0x0 -+int id accessibility_custom_action_4 0x0 -+int id accessibility_custom_action_5 0x0 -+int id accessibility_custom_action_6 0x0 -+int id accessibility_custom_action_7 0x0 -+int id accessibility_custom_action_8 0x0 -+int id accessibility_custom_action_9 0x0 -+int id accessibility_hint 0x0 -+int id accessibility_label 0x0 -+int id accessibility_links 0x0 -+int id accessibility_role 0x0 -+int id accessibility_state 0x0 -+int id accessibility_state_expanded 0x0 -+int id accessibility_value 0x0 -+int id action0 0x0 -+int id action_bar 0x0 -+int id action_bar_activity_content 0x0 -+int id action_bar_container 0x0 -+int id action_bar_root 0x0 -+int id action_bar_spinner 0x0 -+int id action_bar_subtitle 0x0 -+int id action_bar_title 0x0 -+int id action_container 0x0 -+int id action_context_bar 0x0 -+int id action_divider 0x0 -+int id action_image 0x0 -+int id action_menu_divider 0x0 -+int id action_menu_presenter 0x0 -+int id action_mode_bar 0x0 -+int id action_mode_bar_stub 0x0 -+int id action_mode_close_button 0x0 -+int id action_text 0x0 -+int id actions 0x0 -+int id activity_chooser_view_content 0x0 -+int id add 0x0 -+int id adjust_height 0x0 -+int id adjust_width 0x0 -+int id alertTitle 0x0 -+int id alert_title 0x0 -+int id all 0x0 -+int id async 0x0 -+int id auto 0x0 -+int id autofill_inline_suggestion_end_icon 0x0 -+int id autofill_inline_suggestion_start_icon 0x0 -+int id autofill_inline_suggestion_subtitle 0x0 -+int id autofill_inline_suggestion_title 0x0 -+int id blocking 0x0 -+int id bottom 0x0 -+int id button 0x0 -+int id buttonPanel 0x0 -+int id button_text 0x0 -+int id cancel_action 0x0 -+int id catalyst_redbox_title 0x0 -+int id center 0x0 -+int id centerCrop 0x0 -+int id centerInside 0x0 -+int id center_horizontal 0x0 -+int id center_vertical 0x0 -+int id checkbox 0x0 -+int id checked 0x0 -+int id chronometer 0x0 -+int id clip_horizontal 0x0 -+int id clip_vertical 0x0 -+int id content 0x0 -+int id contentPanel 0x0 -+int id custom 0x0 -+int id customPanel 0x0 -+int id dark 0x0 -+int id decor_content_parent 0x0 -+int id default_activity_button 0x0 -+int id dialog_button 0x0 -+int id edit_query 0x0 -+int id edit_text_id 0x0 -+int id end 0x0 -+int id end_padder 0x0 -+int id expand_activities_button 0x0 -+int id expanded_menu 0x0 -+int id fill 0x0 -+int id fill_horizontal 0x0 -+int id fill_vertical 0x0 -+int id filter 0x0 -+int id fitBottomStart 0x0 -+int id fitCenter 0x0 -+int id fitEnd 0x0 -+int id fitStart 0x0 -+int id fitXY 0x0 -+int id focusCrop 0x0 -+int id forever 0x0 -+int id fps_text 0x0 -+int id fragment_container_view_tag 0x0 -+int id group_divider 0x0 -+int id hide_ime_id 0x0 -+int id home 0x0 -+int id icon 0x0 -+int id icon_group 0x0 -+int id icon_only 0x0 -+int id image 0x0 -+int id info 0x0 -+int id invalidate_transform 0x0 -+int id italic 0x0 -+int id labelled_by 0x0 -+int id left 0x0 -+int id light 0x0 -+int id line1 0x0 -+int id line3 0x0 -+int id listMode 0x0 -+int id list_item 0x0 -+int id media_actions 0x0 -+int id media_controller_compat_view_tag 0x0 -+int id message 0x0 -+int id mix_blend_mode 0x0 -+int id multiply 0x0 -+int id none 0x0 -+int id normal 0x0 -+int id notification_background 0x0 -+int id notification_main_column 0x0 -+int id notification_main_column_container 0x0 -+int id off 0x0 -+int id on 0x0 -+int id parentPanel 0x0 -+int id pointer_events 0x0 -+int id progress_circular 0x0 -+int id progress_horizontal 0x0 -+int id radio 0x0 -+int id react_test_id 0x0 -+int id report_drawn 0x0 -+int id right 0x0 -+int id right_icon 0x0 -+int id right_side 0x0 -+int id rn_frame_file 0x0 -+int id rn_frame_method 0x0 -+int id rn_redbox_dismiss_button 0x0 -+int id rn_redbox_line_separator 0x0 -+int id rn_redbox_loading_indicator 0x0 -+int id rn_redbox_reload_button 0x0 -+int id rn_redbox_report_button 0x0 -+int id rn_redbox_report_label 0x0 -+int id rn_redbox_stack 0x0 -+int id role 0x0 -+int id screen 0x0 -+int id scrollIndicatorDown 0x0 -+int id scrollIndicatorUp 0x0 -+int id scrollView 0x0 -+int id search_badge 0x0 -+int id search_bar 0x0 -+int id search_button 0x0 -+int id search_close_btn 0x0 -+int id search_edit_frame 0x0 -+int id search_go_btn 0x0 -+int id search_mag_icon 0x0 -+int id search_plate 0x0 -+int id search_src_text 0x0 -+int id search_voice_btn 0x0 -+int id select_dialog_listview 0x0 -+int id shortcut 0x0 -+int id spacer 0x0 -+int id special_effects_controller_view_tag 0x0 -+int id split_action_bar 0x0 -+int id src_atop 0x0 -+int id src_in 0x0 -+int id src_over 0x0 -+int id standard 0x0 -+int id start 0x0 -+int id status_bar_latest_event_content 0x0 -+int id submenuarrow 0x0 -+int id submit_area 0x0 -+int id tabMode 0x0 -+int id tag_accessibility_actions 0x0 -+int id tag_accessibility_clickable_spans 0x0 -+int id tag_accessibility_heading 0x0 -+int id tag_accessibility_pane_title 0x0 -+int id tag_on_apply_window_listener 0x0 -+int id tag_on_receive_content_listener 0x0 -+int id tag_on_receive_content_mime_types 0x0 -+int id tag_screen_reader_focusable 0x0 -+int id tag_state_description 0x0 -+int id tag_transition_group 0x0 -+int id tag_unhandled_key_event_manager 0x0 -+int id tag_unhandled_key_listeners 0x0 -+int id tag_window_insets_animation_callback 0x0 -+int id text 0x0 -+int id text2 0x0 -+int id textSpacerNoButtons 0x0 -+int id textSpacerNoTitle 0x0 -+int id time 0x0 -+int id title 0x0 -+int id titleDividerNoCustom 0x0 -+int id title_template 0x0 -+int id top 0x0 -+int id topPanel 0x0 -+int id transform 0x0 -+int id transform_origin 0x0 -+int id unchecked 0x0 -+int id uniform 0x0 -+int id up 0x0 -+int id use_hardware_layer 0x0 -+int id view_clipped 0x0 -+int id view_tag_instance_handle 0x0 -+int id view_tag_native_id 0x0 -+int id view_tree_lifecycle_owner 0x0 -+int id view_tree_on_back_pressed_dispatcher_owner 0x0 -+int id view_tree_saved_state_registry_owner 0x0 -+int id view_tree_view_model_store_owner 0x0 -+int id visible_removing_fragment_view_tag 0x0 -+int id wide 0x0 -+int id wrap_content 0x0 -+int integer abc_config_activityDefaultDur 0x0 -+int integer abc_config_activityShortDur 0x0 -+int integer cancel_button_image_alpha 0x0 -+int integer config_tooltipAnimTime 0x0 -+int integer google_play_services_version 0x0 -+int integer react_native_dev_server_port 0x0 -+int integer status_bar_notification_info_maxnum 0x0 -+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 -+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 -+int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 -+int interpolator fast_out_slow_in 0x0 -+int layout abc_action_bar_title_item 0x0 -+int layout abc_action_bar_up_container 0x0 -+int layout abc_action_menu_item_layout 0x0 -+int layout abc_action_menu_layout 0x0 -+int layout abc_action_mode_bar 0x0 -+int layout abc_action_mode_close_item_material 0x0 -+int layout abc_activity_chooser_view 0x0 -+int layout abc_activity_chooser_view_list_item 0x0 -+int layout abc_alert_dialog_button_bar_material 0x0 -+int layout abc_alert_dialog_material 0x0 -+int layout abc_alert_dialog_title_material 0x0 -+int layout abc_cascading_menu_item_layout 0x0 -+int layout abc_dialog_title_material 0x0 -+int layout abc_expanded_menu_layout 0x0 -+int layout abc_list_menu_item_checkbox 0x0 -+int layout abc_list_menu_item_icon 0x0 -+int layout abc_list_menu_item_layout 0x0 -+int layout abc_list_menu_item_radio 0x0 -+int layout abc_popup_menu_header_item_layout 0x0 -+int layout abc_popup_menu_item_layout 0x0 -+int layout abc_screen_content_include 0x0 -+int layout abc_screen_simple 0x0 -+int layout abc_screen_simple_overlay_action_mode 0x0 -+int layout abc_screen_toolbar 0x0 -+int layout abc_search_dropdown_item_icons_2line 0x0 -+int layout abc_search_view 0x0 -+int layout abc_select_dialog_material 0x0 -+int layout abc_tooltip 0x0 -+int layout alert_title_layout 0x0 -+int layout autofill_inline_suggestion 0x0 -+int layout custom_dialog 0x0 -+int layout dev_loading_view 0x0 -+int layout fps_view 0x0 -+int layout ime_base_split_test_activity 0x0 -+int layout ime_secondary_split_test_activity 0x0 -+int layout notification_action 0x0 -+int layout notification_action_tombstone 0x0 -+int layout notification_media_action 0x0 -+int layout notification_media_cancel_action 0x0 -+int layout notification_template_big_media 0x0 -+int layout notification_template_big_media_custom 0x0 -+int layout notification_template_big_media_narrow 0x0 -+int layout notification_template_big_media_narrow_custom 0x0 -+int layout notification_template_custom_big 0x0 -+int layout notification_template_icon_group 0x0 -+int layout notification_template_lines_media 0x0 -+int layout notification_template_media 0x0 -+int layout notification_template_media_custom 0x0 -+int layout notification_template_part_chronometer 0x0 -+int layout notification_template_part_time 0x0 -+int layout paused_in_debugger_view 0x0 -+int layout redbox_item_frame 0x0 -+int layout redbox_item_title 0x0 -+int layout redbox_view 0x0 -+int layout select_dialog_item_material 0x0 -+int layout select_dialog_multichoice_material 0x0 -+int layout select_dialog_singlechoice_material 0x0 -+int layout support_simple_spinner_dropdown_item 0x0 -+int string abc_action_bar_home_description 0x0 -+int string abc_action_bar_up_description 0x0 -+int string abc_action_menu_overflow_description 0x0 -+int string abc_action_mode_done 0x0 -+int string abc_activity_chooser_view_see_all 0x0 -+int string abc_activitychooserview_choose_application 0x0 -+int string abc_capital_off 0x0 -+int string abc_capital_on 0x0 -+int string abc_menu_alt_shortcut_label 0x0 -+int string abc_menu_ctrl_shortcut_label 0x0 -+int string abc_menu_delete_shortcut_label 0x0 -+int string abc_menu_enter_shortcut_label 0x0 -+int string abc_menu_function_shortcut_label 0x0 -+int string abc_menu_meta_shortcut_label 0x0 -+int string abc_menu_shift_shortcut_label 0x0 -+int string abc_menu_space_shortcut_label 0x0 -+int string abc_menu_sym_shortcut_label 0x0 -+int string abc_prepend_shortcut_label 0x0 -+int string abc_search_hint 0x0 -+int string abc_searchview_description_clear 0x0 -+int string abc_searchview_description_query 0x0 -+int string abc_searchview_description_search 0x0 -+int string abc_searchview_description_submit 0x0 -+int string abc_searchview_description_voice 0x0 -+int string abc_shareactionprovider_share_with 0x0 -+int string abc_shareactionprovider_share_with_application 0x0 -+int string abc_toolbar_collapse_description 0x0 -+int string alert_description 0x0 -+int string call_notification_answer_action 0x0 -+int string call_notification_answer_video_action 0x0 -+int string call_notification_decline_action 0x0 -+int string call_notification_hang_up_action 0x0 -+int string call_notification_incoming_text 0x0 -+int string call_notification_ongoing_text 0x0 -+int string call_notification_screening_text 0x0 -+int string catalyst_change_bundle_location 0x0 -+int string catalyst_copy_button 0x0 -+int string catalyst_debug_connecting 0x0 -+int string catalyst_debug_error 0x0 -+int string catalyst_debug_open 0x0 -+int string catalyst_debug_open_disabled 0x0 -+int string catalyst_dev_menu_header 0x0 -+int string catalyst_dev_menu_sub_header 0x0 -+int string catalyst_dismiss_button 0x0 -+int string catalyst_heap_capture 0x0 -+int string catalyst_hot_reloading 0x0 -+int string catalyst_hot_reloading_auto_disable 0x0 -+int string catalyst_hot_reloading_auto_enable 0x0 -+int string catalyst_hot_reloading_stop 0x0 -+int string catalyst_inspector_toggle 0x0 -+int string catalyst_loading_from_url 0x0 -+int string catalyst_open_debugger_error 0x0 -+int string catalyst_perf_monitor 0x0 -+int string catalyst_perf_monitor_stop 0x0 -+int string catalyst_reload 0x0 -+int string catalyst_reload_button 0x0 -+int string catalyst_reload_error 0x0 -+int string catalyst_report_button 0x0 -+int string catalyst_sample_profiler_toggle 0x0 -+int string catalyst_settings 0x0 -+int string catalyst_settings_title 0x0 -+int string combobox_description 0x0 -+int string common_google_play_services_enable_button 0x0 -+int string common_google_play_services_enable_text 0x0 -+int string common_google_play_services_enable_title 0x0 -+int string common_google_play_services_install_button 0x0 -+int string common_google_play_services_install_text 0x0 -+int string common_google_play_services_install_title 0x0 -+int string common_google_play_services_notification_channel_name 0x0 -+int string common_google_play_services_notification_ticker 0x0 -+int string common_google_play_services_unknown_issue 0x0 -+int string common_google_play_services_unsupported_text 0x0 -+int string common_google_play_services_update_button 0x0 -+int string common_google_play_services_update_text 0x0 -+int string common_google_play_services_update_title 0x0 -+int string common_google_play_services_updating_text 0x0 -+int string common_google_play_services_wear_update_text 0x0 -+int string common_open_on_phone 0x0 -+int string common_signin_button_text 0x0 -+int string common_signin_button_text_long 0x0 -+int string header_description 0x0 -+int string image_description 0x0 -+int string imagebutton_description 0x0 -+int string link_description 0x0 -+int string menu_description 0x0 -+int string menubar_description 0x0 -+int string menuitem_description 0x0 -+int string progressbar_description 0x0 -+int string radiogroup_description 0x0 -+int string rn_tab_description 0x0 -+int string scrollbar_description 0x0 -+int string search_menu_title 0x0 -+int string spinbutton_description 0x0 -+int string state_busy_description 0x0 -+int string state_collapsed_description 0x0 -+int string state_expanded_description 0x0 -+int string state_mixed_description 0x0 -+int string state_off_description 0x0 -+int string state_on_description 0x0 -+int string state_unselected_description 0x0 -+int string status_bar_notification_info_overflow 0x0 -+int string summary_description 0x0 -+int string tablist_description 0x0 -+int string timer_description 0x0 -+int string toolbar_description 0x0 -+int style AlertDialog_AppCompat 0x0 -+int style AlertDialog_AppCompat_Light 0x0 -+int style Animation_AppCompat_Dialog 0x0 -+int style Animation_AppCompat_DropDownUp 0x0 -+int style Animation_AppCompat_Tooltip 0x0 -+int style Animation_Catalyst_LogBox 0x0 -+int style Animation_Catalyst_RedBox 0x0 -+int style Base_AlertDialog_AppCompat 0x0 -+int style Base_AlertDialog_AppCompat_Light 0x0 -+int style Base_Animation_AppCompat_Dialog 0x0 -+int style Base_Animation_AppCompat_DropDownUp 0x0 -+int style Base_Animation_AppCompat_Tooltip 0x0 -+int style Base_DialogWindowTitleBackground_AppCompat 0x0 -+int style Base_DialogWindowTitle_AppCompat 0x0 -+int style Base_TextAppearance_AppCompat 0x0 -+int style Base_TextAppearance_AppCompat_Body1 0x0 -+int style Base_TextAppearance_AppCompat_Body2 0x0 -+int style Base_TextAppearance_AppCompat_Button 0x0 -+int style Base_TextAppearance_AppCompat_Caption 0x0 -+int style Base_TextAppearance_AppCompat_Display1 0x0 -+int style Base_TextAppearance_AppCompat_Display2 0x0 -+int style Base_TextAppearance_AppCompat_Display3 0x0 -+int style Base_TextAppearance_AppCompat_Display4 0x0 -+int style Base_TextAppearance_AppCompat_Headline 0x0 -+int style Base_TextAppearance_AppCompat_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Large 0x0 -+int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -+int style Base_TextAppearance_AppCompat_Medium 0x0 -+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Menu 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 -+int style Base_TextAppearance_AppCompat_Small 0x0 -+int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Subhead 0x0 -+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Title 0x0 -+int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Tooltip 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 -+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -+int style Base_ThemeOverlay_AppCompat 0x0 -+int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 -+int style Base_ThemeOverlay_AppCompat_Dark 0x0 -+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -+int style Base_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 -+int style Base_ThemeOverlay_AppCompat_Light 0x0 -+int style Base_Theme_AppCompat 0x0 -+int style Base_Theme_AppCompat_CompactMenu 0x0 -+int style Base_Theme_AppCompat_Dialog 0x0 -+int style Base_Theme_AppCompat_DialogWhenLarge 0x0 -+int style Base_Theme_AppCompat_Dialog_Alert 0x0 -+int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 -+int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 -+int style Base_Theme_AppCompat_Light 0x0 -+int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 -+int style Base_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 -+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_V21_Theme_AppCompat 0x0 -+int style Base_V21_Theme_AppCompat_Dialog 0x0 -+int style Base_V21_Theme_AppCompat_Light 0x0 -+int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_V22_Theme_AppCompat 0x0 -+int style Base_V22_Theme_AppCompat_Light 0x0 -+int style Base_V23_Theme_AppCompat 0x0 -+int style Base_V23_Theme_AppCompat_Light 0x0 -+int style Base_V26_Theme_AppCompat 0x0 -+int style Base_V26_Theme_AppCompat_Light 0x0 -+int style Base_V26_Widget_AppCompat_Toolbar 0x0 -+int style Base_V28_Theme_AppCompat 0x0 -+int style Base_V28_Theme_AppCompat_Light 0x0 -+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_V7_Theme_AppCompat 0x0 -+int style Base_V7_Theme_AppCompat_Dialog 0x0 -+int style Base_V7_Theme_AppCompat_Light 0x0 -+int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Base_V7_Widget_AppCompat_EditText 0x0 -+int style Base_V7_Widget_AppCompat_Toolbar 0x0 -+int style Base_Widget_AppCompat_ActionBar 0x0 -+int style Base_Widget_AppCompat_ActionBar_Solid 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabText 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabView 0x0 -+int style Base_Widget_AppCompat_ActionButton 0x0 -+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 -+int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 -+int style Base_Widget_AppCompat_ActionMode 0x0 -+int style Base_Widget_AppCompat_ActivityChooserView 0x0 -+int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Base_Widget_AppCompat_Button 0x0 -+int style Base_Widget_AppCompat_ButtonBar 0x0 -+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 -+int style Base_Widget_AppCompat_Button_Borderless 0x0 -+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 -+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -+int style Base_Widget_AppCompat_Button_Colored 0x0 -+int style Base_Widget_AppCompat_Button_Small 0x0 -+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 -+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 -+int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 -+int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 -+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 -+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 -+int style Base_Widget_AppCompat_EditText 0x0 -+int style Base_Widget_AppCompat_ImageButton 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 -+int style Base_Widget_AppCompat_Light_PopupMenu 0x0 -+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -+int style Base_Widget_AppCompat_ListMenuView 0x0 -+int style Base_Widget_AppCompat_ListPopupWindow 0x0 -+int style Base_Widget_AppCompat_ListView 0x0 -+int style Base_Widget_AppCompat_ListView_DropDown 0x0 -+int style Base_Widget_AppCompat_ListView_Menu 0x0 -+int style Base_Widget_AppCompat_PopupMenu 0x0 -+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 -+int style Base_Widget_AppCompat_PopupWindow 0x0 -+int style Base_Widget_AppCompat_ProgressBar 0x0 -+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 -+int style Base_Widget_AppCompat_RatingBar 0x0 -+int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 -+int style Base_Widget_AppCompat_RatingBar_Small 0x0 -+int style Base_Widget_AppCompat_SearchView 0x0 -+int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 -+int style Base_Widget_AppCompat_SeekBar 0x0 -+int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 -+int style Base_Widget_AppCompat_Spinner 0x0 -+int style Base_Widget_AppCompat_Spinner_Underlined 0x0 -+int style Base_Widget_AppCompat_TextView 0x0 -+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 -+int style Base_Widget_AppCompat_Toolbar 0x0 -+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style CalendarDatePickerDialog 0x0 -+int style CalendarDatePickerStyle 0x0 -+int style DialogAnimationFade 0x0 -+int style DialogAnimationSlide 0x0 -+int style NoAnimationDialog 0x0 -+int style Platform_AppCompat 0x0 -+int style Platform_AppCompat_Light 0x0 -+int style Platform_ThemeOverlay_AppCompat 0x0 -+int style Platform_ThemeOverlay_AppCompat_Dark 0x0 -+int style Platform_ThemeOverlay_AppCompat_Light 0x0 -+int style Platform_V21_AppCompat 0x0 -+int style Platform_V21_AppCompat_Light 0x0 -+int style Platform_V25_AppCompat 0x0 -+int style Platform_V25_AppCompat_Light 0x0 -+int style Platform_Widget_AppCompat_Spinner 0x0 -+int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 -+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 -+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 -+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 -+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 -+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 -+int style SpinnerDatePickerDialog 0x0 -+int style SpinnerDatePickerStyle 0x0 -+int style TextAppearance_AppCompat 0x0 -+int style TextAppearance_AppCompat_Body1 0x0 -+int style TextAppearance_AppCompat_Body2 0x0 -+int style TextAppearance_AppCompat_Button 0x0 -+int style TextAppearance_AppCompat_Caption 0x0 -+int style TextAppearance_AppCompat_Display1 0x0 -+int style TextAppearance_AppCompat_Display2 0x0 -+int style TextAppearance_AppCompat_Display3 0x0 -+int style TextAppearance_AppCompat_Display4 0x0 -+int style TextAppearance_AppCompat_Headline 0x0 -+int style TextAppearance_AppCompat_Inverse 0x0 -+int style TextAppearance_AppCompat_Large 0x0 -+int style TextAppearance_AppCompat_Large_Inverse 0x0 -+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 -+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 -+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -+int style TextAppearance_AppCompat_Medium 0x0 -+int style TextAppearance_AppCompat_Medium_Inverse 0x0 -+int style TextAppearance_AppCompat_Menu 0x0 -+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -+int style TextAppearance_AppCompat_SearchResult_Title 0x0 -+int style TextAppearance_AppCompat_Small 0x0 -+int style TextAppearance_AppCompat_Small_Inverse 0x0 -+int style TextAppearance_AppCompat_Subhead 0x0 -+int style TextAppearance_AppCompat_Subhead_Inverse 0x0 -+int style TextAppearance_AppCompat_Title 0x0 -+int style TextAppearance_AppCompat_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Tooltip 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_Button 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -+int style TextAppearance_AppCompat_Widget_Switch 0x0 -+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -+int style TextAppearance_Compat_Notification 0x0 -+int style TextAppearance_Compat_Notification_Info 0x0 -+int style TextAppearance_Compat_Notification_Info_Media 0x0 -+int style TextAppearance_Compat_Notification_Line2 0x0 -+int style TextAppearance_Compat_Notification_Line2_Media 0x0 -+int style TextAppearance_Compat_Notification_Media 0x0 -+int style TextAppearance_Compat_Notification_Time 0x0 -+int style TextAppearance_Compat_Notification_Time_Media 0x0 -+int style TextAppearance_Compat_Notification_Title 0x0 -+int style TextAppearance_Compat_Notification_Title_Media 0x0 -+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -+int style Theme 0x0 -+int style ThemeOverlay_AppCompat 0x0 -+int style ThemeOverlay_AppCompat_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_Dark 0x0 -+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_DayNight 0x0 -+int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_Dialog 0x0 -+int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 -+int style ThemeOverlay_AppCompat_Light 0x0 -+int style Theme_AppCompat 0x0 -+int style Theme_AppCompat_CompactMenu 0x0 -+int style Theme_AppCompat_DayNight 0x0 -+int style Theme_AppCompat_DayNight_DarkActionBar 0x0 -+int style Theme_AppCompat_DayNight_Dialog 0x0 -+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 -+int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 -+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_DayNight_NoActionBar 0x0 -+int style Theme_AppCompat_Dialog 0x0 -+int style Theme_AppCompat_DialogWhenLarge 0x0 -+int style Theme_AppCompat_Dialog_Alert 0x0 -+int style Theme_AppCompat_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_Empty 0x0 -+int style Theme_AppCompat_Light 0x0 -+int style Theme_AppCompat_Light_DarkActionBar 0x0 -+int style Theme_AppCompat_Light_Dialog 0x0 -+int style Theme_AppCompat_Light_DialogWhenLarge 0x0 -+int style Theme_AppCompat_Light_Dialog_Alert 0x0 -+int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_Light_NoActionBar 0x0 -+int style Theme_AppCompat_NoActionBar 0x0 -+int style Theme_AutofillInlineSuggestion 0x0 -+int style Theme_Catalyst 0x0 -+int style Theme_Catalyst_LogBox 0x0 -+int style Theme_Catalyst_RedBox 0x0 -+int style Theme_FullScreenDialog 0x0 -+int style Theme_FullScreenDialogAnimatedFade 0x0 -+int style Theme_FullScreenDialogAnimatedSlide 0x0 -+int style Theme_ReactNative_AppCompat_Light 0x0 -+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0 -+int style Theme_ReactNative_TextInput_DefaultBackground 0x0 -+int style Widget_AppCompat_ActionBar 0x0 -+int style Widget_AppCompat_ActionBar_Solid 0x0 -+int style Widget_AppCompat_ActionBar_TabBar 0x0 -+int style Widget_AppCompat_ActionBar_TabText 0x0 -+int style Widget_AppCompat_ActionBar_TabView 0x0 -+int style Widget_AppCompat_ActionButton 0x0 -+int style Widget_AppCompat_ActionButton_CloseMode 0x0 -+int style Widget_AppCompat_ActionButton_Overflow 0x0 -+int style Widget_AppCompat_ActionMode 0x0 -+int style Widget_AppCompat_ActivityChooserView 0x0 -+int style Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Widget_AppCompat_Button 0x0 -+int style Widget_AppCompat_ButtonBar 0x0 -+int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 -+int style Widget_AppCompat_Button_Borderless 0x0 -+int style Widget_AppCompat_Button_Borderless_Colored 0x0 -+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -+int style Widget_AppCompat_Button_Colored 0x0 -+int style Widget_AppCompat_Button_Small 0x0 -+int style Widget_AppCompat_CompoundButton_CheckBox 0x0 -+int style Widget_AppCompat_CompoundButton_RadioButton 0x0 -+int style Widget_AppCompat_CompoundButton_Switch 0x0 -+int style Widget_AppCompat_DrawerArrowToggle 0x0 -+int style Widget_AppCompat_DropDownItem_Spinner 0x0 -+int style Widget_AppCompat_EditText 0x0 -+int style Widget_AppCompat_ImageButton 0x0 -+int style Widget_AppCompat_Light_ActionBar 0x0 -+int style Widget_AppCompat_Light_ActionBar_Solid 0x0 -+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabText 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabView 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionButton 0x0 -+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 -+int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 -+int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 -+int style Widget_AppCompat_Light_ActivityChooserView 0x0 -+int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 -+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 -+int style Widget_AppCompat_Light_ListPopupWindow 0x0 -+int style Widget_AppCompat_Light_ListView_DropDown 0x0 -+int style Widget_AppCompat_Light_PopupMenu 0x0 -+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -+int style Widget_AppCompat_Light_SearchView 0x0 -+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 -+int style Widget_AppCompat_ListMenuView 0x0 -+int style Widget_AppCompat_ListPopupWindow 0x0 -+int style Widget_AppCompat_ListView 0x0 -+int style Widget_AppCompat_ListView_DropDown 0x0 -+int style Widget_AppCompat_ListView_Menu 0x0 -+int style Widget_AppCompat_PopupMenu 0x0 -+int style Widget_AppCompat_PopupMenu_Overflow 0x0 -+int style Widget_AppCompat_PopupWindow 0x0 -+int style Widget_AppCompat_ProgressBar 0x0 -+int style Widget_AppCompat_ProgressBar_Horizontal 0x0 -+int style Widget_AppCompat_RatingBar 0x0 -+int style Widget_AppCompat_RatingBar_Indicator 0x0 -+int style Widget_AppCompat_RatingBar_Small 0x0 -+int style Widget_AppCompat_SearchView 0x0 -+int style Widget_AppCompat_SearchView_ActionBar 0x0 -+int style Widget_AppCompat_SeekBar 0x0 -+int style Widget_AppCompat_SeekBar_Discrete 0x0 -+int style Widget_AppCompat_Spinner 0x0 -+int style Widget_AppCompat_Spinner_DropDown 0x0 -+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 -+int style Widget_AppCompat_Spinner_Underlined 0x0 -+int style Widget_AppCompat_TextView 0x0 -+int style Widget_AppCompat_TextView_SpinnerItem 0x0 -+int style Widget_AppCompat_Toolbar 0x0 -+int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style Widget_Autofill 0x0 -+int style Widget_Autofill_InlineSuggestionChip 0x0 -+int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0 -+int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0 -+int style Widget_Autofill_InlineSuggestionSubtitle 0x0 -+int style Widget_Autofill_InlineSuggestionTitle 0x0 -+int style Widget_Compat_NotificationActionContainer 0x0 -+int style Widget_Compat_NotificationActionText 0x0 -+int style Widget_Support_CoordinatorLayout 0x0 -+int style redboxButton 0x0 -+int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionBar_background 0 -+int styleable ActionBar_backgroundSplit 1 -+int styleable ActionBar_backgroundStacked 2 -+int styleable ActionBar_contentInsetEnd 3 -+int styleable ActionBar_contentInsetEndWithActions 4 -+int styleable ActionBar_contentInsetLeft 5 -+int styleable ActionBar_contentInsetRight 6 -+int styleable ActionBar_contentInsetStart 7 -+int styleable ActionBar_contentInsetStartWithNavigation 8 -+int styleable ActionBar_customNavigationLayout 9 -+int styleable ActionBar_displayOptions 10 -+int styleable ActionBar_divider 11 -+int styleable ActionBar_elevation 12 -+int styleable ActionBar_height 13 -+int styleable ActionBar_hideOnContentScroll 14 -+int styleable ActionBar_homeAsUpIndicator 15 -+int styleable ActionBar_homeLayout 16 -+int styleable ActionBar_icon 17 -+int styleable ActionBar_indeterminateProgressStyle 18 -+int styleable ActionBar_itemPadding 19 -+int styleable ActionBar_logo 20 -+int styleable ActionBar_navigationMode 21 -+int styleable ActionBar_popupTheme 22 -+int styleable ActionBar_progressBarPadding 23 -+int styleable ActionBar_progressBarStyle 24 -+int styleable ActionBar_subtitle 25 -+int styleable ActionBar_subtitleTextStyle 26 -+int styleable ActionBar_title 27 -+int styleable ActionBar_titleTextStyle 28 -+int[] styleable ActionBarLayout { 0x10100b3 } -+int styleable ActionBarLayout_android_layout_gravity 0 -+int[] styleable ActionMenuItemView { 0x101013f } -+int styleable ActionMenuItemView_android_minWidth 0 -+int[] styleable ActionMenuView { } -+int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionMode_background 0 -+int styleable ActionMode_backgroundSplit 1 -+int styleable ActionMode_closeItemLayout 2 -+int styleable ActionMode_height 3 -+int styleable ActionMode_subtitleTextStyle 4 -+int styleable ActionMode_titleTextStyle 5 -+int[] styleable ActivityChooserView { 0x0, 0x0 } -+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -+int styleable ActivityChooserView_initialActivityCount 1 -+int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AlertDialog_android_layout 0 -+int styleable AlertDialog_buttonIconDimen 1 -+int styleable AlertDialog_buttonPanelSideLayout 2 -+int styleable AlertDialog_listItemLayout 3 -+int styleable AlertDialog_listLayout 4 -+int styleable AlertDialog_multiChoiceItemLayout 5 -+int styleable AlertDialog_showTitle 6 -+int styleable AlertDialog_singleChoiceItemLayout 7 -+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable AnimatedStateListDrawableCompat_android_constantSize 0 -+int styleable AnimatedStateListDrawableCompat_android_dither 1 -+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 -+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 -+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 -+int styleable AnimatedStateListDrawableCompat_android_visible 5 -+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } -+int styleable AnimatedStateListDrawableItem_android_drawable 0 -+int styleable AnimatedStateListDrawableItem_android_id 1 -+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } -+int styleable AnimatedStateListDrawableTransition_android_drawable 0 -+int styleable AnimatedStateListDrawableTransition_android_fromId 1 -+int styleable AnimatedStateListDrawableTransition_android_reversible 2 -+int styleable AnimatedStateListDrawableTransition_android_toId 3 -+int[] styleable AppCompatEmojiHelper { } -+int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } -+int styleable AppCompatImageView_android_src 0 -+int styleable AppCompatImageView_srcCompat 1 -+int styleable AppCompatImageView_tint 2 -+int styleable AppCompatImageView_tintMode 3 -+int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } -+int styleable AppCompatSeekBar_android_thumb 0 -+int styleable AppCompatSeekBar_tickMark 1 -+int styleable AppCompatSeekBar_tickMarkTint 2 -+int styleable AppCompatSeekBar_tickMarkTintMode 3 -+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } -+int styleable AppCompatTextHelper_android_drawableBottom 0 -+int styleable AppCompatTextHelper_android_drawableEnd 1 -+int styleable AppCompatTextHelper_android_drawableLeft 2 -+int styleable AppCompatTextHelper_android_drawableRight 3 -+int styleable AppCompatTextHelper_android_drawableStart 4 -+int styleable AppCompatTextHelper_android_drawableTop 5 -+int styleable AppCompatTextHelper_android_textAppearance 6 -+int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AppCompatTextView_android_textAppearance 0 -+int styleable AppCompatTextView_autoSizeMaxTextSize 1 -+int styleable AppCompatTextView_autoSizeMinTextSize 2 -+int styleable AppCompatTextView_autoSizePresetSizes 3 -+int styleable AppCompatTextView_autoSizeStepGranularity 4 -+int styleable AppCompatTextView_autoSizeTextType 5 -+int styleable AppCompatTextView_drawableBottomCompat 6 -+int styleable AppCompatTextView_drawableEndCompat 7 -+int styleable AppCompatTextView_drawableLeftCompat 8 -+int styleable AppCompatTextView_drawableRightCompat 9 -+int styleable AppCompatTextView_drawableStartCompat 10 -+int styleable AppCompatTextView_drawableTint 11 -+int styleable AppCompatTextView_drawableTintMode 12 -+int styleable AppCompatTextView_drawableTopCompat 13 -+int styleable AppCompatTextView_emojiCompatEnabled 14 -+int styleable AppCompatTextView_firstBaselineToTopHeight 15 -+int styleable AppCompatTextView_fontFamily 16 -+int styleable AppCompatTextView_fontVariationSettings 17 -+int styleable AppCompatTextView_lastBaselineToBottomHeight 18 -+int styleable AppCompatTextView_lineHeight 19 -+int styleable AppCompatTextView_textAllCaps 20 -+int styleable AppCompatTextView_textLocale 21 -+int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AppCompatTheme_actionBarDivider 0 -+int styleable AppCompatTheme_actionBarItemBackground 1 -+int styleable AppCompatTheme_actionBarPopupTheme 2 -+int styleable AppCompatTheme_actionBarSize 3 -+int styleable AppCompatTheme_actionBarSplitStyle 4 -+int styleable AppCompatTheme_actionBarStyle 5 -+int styleable AppCompatTheme_actionBarTabBarStyle 6 -+int styleable AppCompatTheme_actionBarTabStyle 7 -+int styleable AppCompatTheme_actionBarTabTextStyle 8 -+int styleable AppCompatTheme_actionBarTheme 9 -+int styleable AppCompatTheme_actionBarWidgetTheme 10 -+int styleable AppCompatTheme_actionButtonStyle 11 -+int styleable AppCompatTheme_actionDropDownStyle 12 -+int styleable AppCompatTheme_actionMenuTextAppearance 13 -+int styleable AppCompatTheme_actionMenuTextColor 14 -+int styleable AppCompatTheme_actionModeBackground 15 -+int styleable AppCompatTheme_actionModeCloseButtonStyle 16 -+int styleable AppCompatTheme_actionModeCloseContentDescription 17 -+int styleable AppCompatTheme_actionModeCloseDrawable 18 -+int styleable AppCompatTheme_actionModeCopyDrawable 19 -+int styleable AppCompatTheme_actionModeCutDrawable 20 -+int styleable AppCompatTheme_actionModeFindDrawable 21 -+int styleable AppCompatTheme_actionModePasteDrawable 22 -+int styleable AppCompatTheme_actionModePopupWindowStyle 23 -+int styleable AppCompatTheme_actionModeSelectAllDrawable 24 -+int styleable AppCompatTheme_actionModeShareDrawable 25 -+int styleable AppCompatTheme_actionModeSplitBackground 26 -+int styleable AppCompatTheme_actionModeStyle 27 -+int styleable AppCompatTheme_actionModeTheme 28 -+int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -+int styleable AppCompatTheme_actionOverflowButtonStyle 30 -+int styleable AppCompatTheme_actionOverflowMenuStyle 31 -+int styleable AppCompatTheme_activityChooserViewStyle 32 -+int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -+int styleable AppCompatTheme_alertDialogCenterButtons 34 -+int styleable AppCompatTheme_alertDialogStyle 35 -+int styleable AppCompatTheme_alertDialogTheme 36 -+int styleable AppCompatTheme_android_windowAnimationStyle 37 -+int styleable AppCompatTheme_android_windowIsFloating 38 -+int styleable AppCompatTheme_autoCompleteTextViewStyle 39 -+int styleable AppCompatTheme_borderlessButtonStyle 40 -+int styleable AppCompatTheme_buttonBarButtonStyle 41 -+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 -+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 -+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 -+int styleable AppCompatTheme_buttonBarStyle 45 -+int styleable AppCompatTheme_buttonStyle 46 -+int styleable AppCompatTheme_buttonStyleSmall 47 -+int styleable AppCompatTheme_checkboxStyle 48 -+int styleable AppCompatTheme_checkedTextViewStyle 49 -+int styleable AppCompatTheme_colorAccent 50 -+int styleable AppCompatTheme_colorBackgroundFloating 51 -+int styleable AppCompatTheme_colorButtonNormal 52 -+int styleable AppCompatTheme_colorControlActivated 53 -+int styleable AppCompatTheme_colorControlHighlight 54 -+int styleable AppCompatTheme_colorControlNormal 55 -+int styleable AppCompatTheme_colorError 56 -+int styleable AppCompatTheme_colorPrimary 57 -+int styleable AppCompatTheme_colorPrimaryDark 58 -+int styleable AppCompatTheme_colorSwitchThumbNormal 59 -+int styleable AppCompatTheme_controlBackground 60 -+int styleable AppCompatTheme_dialogCornerRadius 61 -+int styleable AppCompatTheme_dialogPreferredPadding 62 -+int styleable AppCompatTheme_dialogTheme 63 -+int styleable AppCompatTheme_dividerHorizontal 64 -+int styleable AppCompatTheme_dividerVertical 65 -+int styleable AppCompatTheme_dropDownListViewStyle 66 -+int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 -+int styleable AppCompatTheme_editTextBackground 68 -+int styleable AppCompatTheme_editTextColor 69 -+int styleable AppCompatTheme_editTextStyle 70 -+int styleable AppCompatTheme_homeAsUpIndicator 71 -+int styleable AppCompatTheme_imageButtonStyle 72 -+int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 -+int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 -+int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 -+int styleable AppCompatTheme_listDividerAlertDialog 76 -+int styleable AppCompatTheme_listMenuViewStyle 77 -+int styleable AppCompatTheme_listPopupWindowStyle 78 -+int styleable AppCompatTheme_listPreferredItemHeight 79 -+int styleable AppCompatTheme_listPreferredItemHeightLarge 80 -+int styleable AppCompatTheme_listPreferredItemHeightSmall 81 -+int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 -+int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 -+int styleable AppCompatTheme_listPreferredItemPaddingRight 84 -+int styleable AppCompatTheme_listPreferredItemPaddingStart 85 -+int styleable AppCompatTheme_panelBackground 86 -+int styleable AppCompatTheme_panelMenuListTheme 87 -+int styleable AppCompatTheme_panelMenuListWidth 88 -+int styleable AppCompatTheme_popupMenuStyle 89 -+int styleable AppCompatTheme_popupWindowStyle 90 -+int styleable AppCompatTheme_radioButtonStyle 91 -+int styleable AppCompatTheme_ratingBarStyle 92 -+int styleable AppCompatTheme_ratingBarStyleIndicator 93 -+int styleable AppCompatTheme_ratingBarStyleSmall 94 -+int styleable AppCompatTheme_searchViewStyle 95 -+int styleable AppCompatTheme_seekBarStyle 96 -+int styleable AppCompatTheme_selectableItemBackground 97 -+int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 -+int styleable AppCompatTheme_spinnerDropDownItemStyle 99 -+int styleable AppCompatTheme_spinnerStyle 100 -+int styleable AppCompatTheme_switchStyle 101 -+int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 -+int styleable AppCompatTheme_textAppearanceListItem 103 -+int styleable AppCompatTheme_textAppearanceListItemSecondary 104 -+int styleable AppCompatTheme_textAppearanceListItemSmall 105 -+int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 -+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 -+int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 -+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 -+int styleable AppCompatTheme_textColorAlertDialogListItem 110 -+int styleable AppCompatTheme_textColorSearchUrl 111 -+int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 -+int styleable AppCompatTheme_toolbarStyle 113 -+int styleable AppCompatTheme_tooltipForegroundColor 114 -+int styleable AppCompatTheme_tooltipFrameBackground 115 -+int styleable AppCompatTheme_viewInflaterClass 116 -+int styleable AppCompatTheme_windowActionBar 117 -+int styleable AppCompatTheme_windowActionBarOverlay 118 -+int styleable AppCompatTheme_windowActionModeOverlay 119 -+int styleable AppCompatTheme_windowFixedHeightMajor 120 -+int styleable AppCompatTheme_windowFixedHeightMinor 121 -+int styleable AppCompatTheme_windowFixedWidthMajor 122 -+int styleable AppCompatTheme_windowFixedWidthMinor 123 -+int styleable AppCompatTheme_windowMinWidthMajor 124 -+int styleable AppCompatTheme_windowMinWidthMinor 125 -+int styleable AppCompatTheme_windowNoTitle 126 -+int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 -+int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 -+int[] styleable ButtonBarLayout { 0x0 } -+int styleable ButtonBarLayout_allowStacking 0 -+int[] styleable Capability { 0x0, 0x0 } -+int styleable Capability_queryPatterns 0 -+int styleable Capability_shortcutMatchRequired 1 -+int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } -+int styleable CheckedTextView_android_checkMark 0 -+int styleable CheckedTextView_checkMarkCompat 1 -+int styleable CheckedTextView_checkMarkTint 2 -+int styleable CheckedTextView_checkMarkTintMode 3 -+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } -+int styleable ColorStateListItem_alpha 0 -+int styleable ColorStateListItem_android_alpha 1 -+int styleable ColorStateListItem_android_color 2 -+int styleable ColorStateListItem_android_lStar 3 -+int styleable ColorStateListItem_lStar 4 -+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } -+int styleable CompoundButton_android_button 0 -+int styleable CompoundButton_buttonCompat 1 -+int styleable CompoundButton_buttonTint 2 -+int styleable CompoundButton_buttonTintMode 3 -+int[] styleable CoordinatorLayout { 0x0, 0x0 } -+int styleable CoordinatorLayout_keylines 0 -+int styleable CoordinatorLayout_statusBarBackground 1 -+int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable CoordinatorLayout_Layout_android_layout_gravity 0 -+int styleable CoordinatorLayout_Layout_layout_anchor 1 -+int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 -+int styleable CoordinatorLayout_Layout_layout_behavior 3 -+int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 -+int styleable CoordinatorLayout_Layout_layout_insetEdge 5 -+int styleable CoordinatorLayout_Layout_layout_keyline 6 -+int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable DrawerArrowToggle_arrowHeadLength 0 -+int styleable DrawerArrowToggle_arrowShaftLength 1 -+int styleable DrawerArrowToggle_barLength 2 -+int styleable DrawerArrowToggle_color 3 -+int styleable DrawerArrowToggle_drawableSize 4 -+int styleable DrawerArrowToggle_gapBetweenBars 5 -+int styleable DrawerArrowToggle_spinBars 6 -+int styleable DrawerArrowToggle_thickness 7 -+int[] styleable DrawerLayout { 0x0 } -+int styleable DrawerLayout_elevation 0 -+int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable FontFamily_fontProviderAuthority 0 -+int styleable FontFamily_fontProviderCerts 1 -+int styleable FontFamily_fontProviderFetchStrategy 2 -+int styleable FontFamily_fontProviderFetchTimeout 3 -+int styleable FontFamily_fontProviderPackage 4 -+int styleable FontFamily_fontProviderQuery 5 -+int styleable FontFamily_fontProviderSystemFontFamily 6 -+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable FontFamilyFont_android_font 0 -+int styleable FontFamilyFont_android_fontStyle 1 -+int styleable FontFamilyFont_android_fontVariationSettings 2 -+int styleable FontFamilyFont_android_fontWeight 3 -+int styleable FontFamilyFont_android_ttcIndex 4 -+int styleable FontFamilyFont_font 5 -+int styleable FontFamilyFont_fontStyle 6 -+int styleable FontFamilyFont_fontVariationSettings 7 -+int styleable FontFamilyFont_fontWeight 8 -+int styleable FontFamilyFont_ttcIndex 9 -+int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } -+int styleable Fragment_android_id 0 -+int styleable Fragment_android_name 1 -+int styleable Fragment_android_tag 2 -+int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } -+int styleable FragmentContainerView_android_name 0 -+int styleable FragmentContainerView_android_tag 1 -+int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable GenericDraweeHierarchy_actualImageScaleType 0 -+int styleable GenericDraweeHierarchy_backgroundImage 1 -+int styleable GenericDraweeHierarchy_fadeDuration 2 -+int styleable GenericDraweeHierarchy_failureImage 3 -+int styleable GenericDraweeHierarchy_failureImageScaleType 4 -+int styleable GenericDraweeHierarchy_overlayImage 5 -+int styleable GenericDraweeHierarchy_placeholderImage 6 -+int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 -+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 -+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 -+int styleable GenericDraweeHierarchy_progressBarImage 10 -+int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 -+int styleable GenericDraweeHierarchy_retryImage 12 -+int styleable GenericDraweeHierarchy_retryImageScaleType 13 -+int styleable GenericDraweeHierarchy_roundAsCircle 14 -+int styleable GenericDraweeHierarchy_roundBottomEnd 15 -+int styleable GenericDraweeHierarchy_roundBottomLeft 16 -+int styleable GenericDraweeHierarchy_roundBottomRight 17 -+int styleable GenericDraweeHierarchy_roundBottomStart 18 -+int styleable GenericDraweeHierarchy_roundTopEnd 19 -+int styleable GenericDraweeHierarchy_roundTopLeft 20 -+int styleable GenericDraweeHierarchy_roundTopRight 21 -+int styleable GenericDraweeHierarchy_roundTopStart 22 -+int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 -+int styleable GenericDraweeHierarchy_roundedCornerRadius 24 -+int styleable GenericDraweeHierarchy_roundingBorderColor 25 -+int styleable GenericDraweeHierarchy_roundingBorderPadding 26 -+int styleable GenericDraweeHierarchy_roundingBorderWidth 27 -+int styleable GenericDraweeHierarchy_viewAspectRatio 28 -+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } -+int styleable GradientColor_android_centerColor 0 -+int styleable GradientColor_android_centerX 1 -+int styleable GradientColor_android_centerY 2 -+int styleable GradientColor_android_endColor 3 -+int styleable GradientColor_android_endX 4 -+int styleable GradientColor_android_endY 5 -+int styleable GradientColor_android_gradientRadius 6 -+int styleable GradientColor_android_startColor 7 -+int styleable GradientColor_android_startX 8 -+int styleable GradientColor_android_startY 9 -+int styleable GradientColor_android_tileMode 10 -+int styleable GradientColor_android_type 11 -+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } -+int styleable GradientColorItem_android_color 0 -+int styleable GradientColorItem_android_offset 1 -+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } -+int styleable LinearLayoutCompat_android_baselineAligned 0 -+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 -+int styleable LinearLayoutCompat_android_gravity 2 -+int styleable LinearLayoutCompat_android_orientation 3 -+int styleable LinearLayoutCompat_android_weightSum 4 -+int styleable LinearLayoutCompat_divider 5 -+int styleable LinearLayoutCompat_dividerPadding 6 -+int styleable LinearLayoutCompat_measureWithLargestChild 7 -+int styleable LinearLayoutCompat_showDividers 8 -+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } -+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -+int styleable LinearLayoutCompat_Layout_android_layout_height 1 -+int styleable LinearLayoutCompat_Layout_android_layout_weight 2 -+int styleable LinearLayoutCompat_Layout_android_layout_width 3 -+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } -+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -+int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -+int[] styleable LoadingImageView { 0x0, 0x0, 0x0 } -+int styleable LoadingImageView_circleCrop 0 -+int styleable LoadingImageView_imageAspectRatio 1 -+int styleable LoadingImageView_imageAspectRatioAdjust 2 -+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } -+int styleable MenuGroup_android_checkableBehavior 0 -+int styleable MenuGroup_android_enabled 1 -+int styleable MenuGroup_android_id 2 -+int styleable MenuGroup_android_menuCategory 3 -+int styleable MenuGroup_android_orderInCategory 4 -+int styleable MenuGroup_android_visible 5 -+int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable MenuItem_actionLayout 0 -+int styleable MenuItem_actionProviderClass 1 -+int styleable MenuItem_actionViewClass 2 -+int styleable MenuItem_alphabeticModifiers 3 -+int styleable MenuItem_android_alphabeticShortcut 4 -+int styleable MenuItem_android_checkable 5 -+int styleable MenuItem_android_checked 6 -+int styleable MenuItem_android_enabled 7 -+int styleable MenuItem_android_icon 8 -+int styleable MenuItem_android_id 9 -+int styleable MenuItem_android_menuCategory 10 -+int styleable MenuItem_android_numericShortcut 11 -+int styleable MenuItem_android_onClick 12 -+int styleable MenuItem_android_orderInCategory 13 -+int styleable MenuItem_android_title 14 -+int styleable MenuItem_android_titleCondensed 15 -+int styleable MenuItem_android_visible 16 -+int styleable MenuItem_contentDescription 17 -+int styleable MenuItem_iconTint 18 -+int styleable MenuItem_iconTintMode 19 -+int styleable MenuItem_numericModifiers 20 -+int styleable MenuItem_showAsAction 21 -+int styleable MenuItem_tooltipText 22 -+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } -+int styleable MenuView_android_headerBackground 0 -+int styleable MenuView_android_horizontalDivider 1 -+int styleable MenuView_android_itemBackground 2 -+int styleable MenuView_android_itemIconDisabledAlpha 3 -+int styleable MenuView_android_itemTextAppearance 4 -+int styleable MenuView_android_verticalDivider 5 -+int styleable MenuView_android_windowAnimationStyle 6 -+int styleable MenuView_preserveIconSpacing 7 -+int styleable MenuView_subMenuArrow 8 -+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } -+int styleable PopupWindow_android_popupAnimationStyle 0 -+int styleable PopupWindow_android_popupBackground 1 -+int styleable PopupWindow_overlapAnchor 2 -+int[] styleable PopupWindowBackgroundState { 0x0 } -+int styleable PopupWindowBackgroundState_state_above_anchor 0 -+int[] styleable RecycleListView { 0x0, 0x0 } -+int styleable RecycleListView_paddingBottomNoButtons 0 -+int styleable RecycleListView_paddingTopNoTitle 1 -+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SearchView_android_focusable 0 -+int styleable SearchView_android_imeOptions 1 -+int styleable SearchView_android_inputType 2 -+int styleable SearchView_android_maxWidth 3 -+int styleable SearchView_closeIcon 4 -+int styleable SearchView_commitIcon 5 -+int styleable SearchView_defaultQueryHint 6 -+int styleable SearchView_goIcon 7 -+int styleable SearchView_iconifiedByDefault 8 -+int styleable SearchView_layout 9 -+int styleable SearchView_queryBackground 10 -+int styleable SearchView_queryHint 11 -+int styleable SearchView_searchHintIcon 12 -+int styleable SearchView_searchIcon 13 -+int styleable SearchView_submitBackground 14 -+int styleable SearchView_suggestionRowLayout 15 -+int styleable SearchView_voiceIcon 16 -+int[] styleable SignInButton { 0x0, 0x0, 0x0 } -+int styleable SignInButton_buttonSize 0 -+int styleable SignInButton_colorScheme 1 -+int styleable SignInButton_scopeUris 2 -+int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SimpleDraweeView_actualImageResource 0 -+int styleable SimpleDraweeView_actualImageUri 1 -+int styleable SimpleDraweeView_backgroundImage 2 -+int styleable SimpleDraweeView_fadeDuration 3 -+int styleable SimpleDraweeView_failureImage 4 -+int styleable SimpleDraweeView_failureImageScaleType 5 -+int styleable SimpleDraweeView_overlayImage 6 -+int styleable SimpleDraweeView_placeholderImage 7 -+int styleable SimpleDraweeView_placeholderImageScaleType 8 -+int styleable SimpleDraweeView_pressedStateOverlayImage 9 -+int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 -+int styleable SimpleDraweeView_progressBarImage 11 -+int styleable SimpleDraweeView_progressBarImageScaleType 12 -+int styleable SimpleDraweeView_retryImage 13 -+int styleable SimpleDraweeView_retryImageScaleType 14 -+int styleable SimpleDraweeView_roundAsCircle 15 -+int styleable SimpleDraweeView_roundBottomEnd 16 -+int styleable SimpleDraweeView_roundBottomLeft 17 -+int styleable SimpleDraweeView_roundBottomRight 18 -+int styleable SimpleDraweeView_roundBottomStart 19 -+int styleable SimpleDraweeView_roundTopEnd 20 -+int styleable SimpleDraweeView_roundTopLeft 21 -+int styleable SimpleDraweeView_roundTopRight 22 -+int styleable SimpleDraweeView_roundTopStart 23 -+int styleable SimpleDraweeView_roundWithOverlayColor 24 -+int styleable SimpleDraweeView_roundedCornerRadius 25 -+int styleable SimpleDraweeView_roundingBorderColor 26 -+int styleable SimpleDraweeView_roundingBorderPadding 27 -+int styleable SimpleDraweeView_roundingBorderWidth 28 -+int styleable SimpleDraweeView_viewAspectRatio 29 -+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } -+int styleable Spinner_android_dropDownWidth 0 -+int styleable Spinner_android_entries 1 -+int styleable Spinner_android_popupBackground 2 -+int styleable Spinner_android_prompt 3 -+int styleable Spinner_popupTheme 4 -+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable StateListDrawable_android_constantSize 0 -+int styleable StateListDrawable_android_dither 1 -+int styleable StateListDrawable_android_enterFadeDuration 2 -+int styleable StateListDrawable_android_exitFadeDuration 3 -+int styleable StateListDrawable_android_variablePadding 4 -+int styleable StateListDrawable_android_visible 5 -+int[] styleable StateListDrawableItem { 0x1010199 } -+int styleable StateListDrawableItem_android_drawable 0 -+int[] styleable SwipeRefreshLayout { 0x0 } -+int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 -+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SwitchCompat_android_textOff 0 -+int styleable SwitchCompat_android_textOn 1 -+int styleable SwitchCompat_android_thumb 2 -+int styleable SwitchCompat_showText 3 -+int styleable SwitchCompat_splitTrack 4 -+int styleable SwitchCompat_switchMinWidth 5 -+int styleable SwitchCompat_switchPadding 6 -+int styleable SwitchCompat_switchTextAppearance 7 -+int styleable SwitchCompat_thumbTextPadding 8 -+int styleable SwitchCompat_thumbTint 9 -+int styleable SwitchCompat_thumbTintMode 10 -+int styleable SwitchCompat_track 11 -+int styleable SwitchCompat_trackTint 12 -+int styleable SwitchCompat_trackTintMode 13 -+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } -+int styleable TextAppearance_android_fontFamily 0 -+int styleable TextAppearance_android_shadowColor 1 -+int styleable TextAppearance_android_shadowDx 2 -+int styleable TextAppearance_android_shadowDy 3 -+int styleable TextAppearance_android_shadowRadius 4 -+int styleable TextAppearance_android_textColor 5 -+int styleable TextAppearance_android_textColorHint 6 -+int styleable TextAppearance_android_textColorLink 7 -+int styleable TextAppearance_android_textFontWeight 8 -+int styleable TextAppearance_android_textSize 9 -+int styleable TextAppearance_android_textStyle 10 -+int styleable TextAppearance_android_typeface 11 -+int styleable TextAppearance_fontFamily 12 -+int styleable TextAppearance_fontVariationSettings 13 -+int styleable TextAppearance_textAllCaps 14 -+int styleable TextAppearance_textLocale 15 -+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable Toolbar_android_gravity 0 -+int styleable Toolbar_android_minHeight 1 -+int styleable Toolbar_buttonGravity 2 -+int styleable Toolbar_collapseContentDescription 3 -+int styleable Toolbar_collapseIcon 4 -+int styleable Toolbar_contentInsetEnd 5 -+int styleable Toolbar_contentInsetEndWithActions 6 -+int styleable Toolbar_contentInsetLeft 7 -+int styleable Toolbar_contentInsetRight 8 -+int styleable Toolbar_contentInsetStart 9 -+int styleable Toolbar_contentInsetStartWithNavigation 10 -+int styleable Toolbar_logo 11 -+int styleable Toolbar_logoDescription 12 -+int styleable Toolbar_maxButtonHeight 13 -+int styleable Toolbar_menu 14 -+int styleable Toolbar_navigationContentDescription 15 -+int styleable Toolbar_navigationIcon 16 -+int styleable Toolbar_popupTheme 17 -+int styleable Toolbar_subtitle 18 -+int styleable Toolbar_subtitleTextAppearance 19 -+int styleable Toolbar_subtitleTextColor 20 -+int styleable Toolbar_title 21 -+int styleable Toolbar_titleMargin 22 -+int styleable Toolbar_titleMarginBottom 23 -+int styleable Toolbar_titleMarginEnd 24 -+int styleable Toolbar_titleMarginStart 25 -+int styleable Toolbar_titleMarginTop 26 -+int styleable Toolbar_titleMargins 27 -+int styleable Toolbar_titleTextAppearance 28 -+int styleable Toolbar_titleTextColor 29 -+int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } -+int styleable View_android_focusable 0 -+int styleable View_android_theme 1 -+int styleable View_paddingEnd 2 -+int styleable View_paddingStart 3 -+int styleable View_theme 4 -+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } -+int styleable ViewBackgroundHelper_android_background 0 -+int styleable ViewBackgroundHelper_backgroundTint 1 -+int styleable ViewBackgroundHelper_backgroundTintMode 2 -+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } -+int styleable ViewStubCompat_android_id 0 -+int styleable ViewStubCompat_android_inflatedId 1 -+int styleable ViewStubCompat_android_layout 2 -+int xml rn_dev_preferences 0x0 -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -new file mode 100644 -index 0000000..98cadcb ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -@@ -0,0 +1 @@ -+#Tue Jun 24 13:45:24 CEST 2025 -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -new file mode 100644 -index 0000000..391353c ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -new file mode 100644 -index 0000000..ad1bbec ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -new file mode 100644 -index 0000000..a738929 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/packageDebugAssets/merger.xml -new file mode 100644 -index 0000000..3efb395 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/incremental/packageDebugAssets/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/BuildConfig.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/BuildConfig.class -new file mode 100644 -index 0000000..67969ad -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/BuildConfig.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/Constants.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/Constants.class -new file mode 100644 -index 0000000..a7b59e3 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/Constants.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/JavaScriptError.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/JavaScriptError.class -new file mode 100644 -index 0000000..2ad7dc6 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/JavaScriptError.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsInitProvider.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsInitProvider.class -new file mode 100644 -index 0000000..e074ea3 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsInitProvider.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule$1.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule$1.class -new file mode 100644 -index 0000000..5a98390 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule$1.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule.class -new file mode 100644 -index 0000000..5f9de55 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsNativeHelper.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsNativeHelper.class -new file mode 100644 -index 0000000..ce43851 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsNativeHelper.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsPackage.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsPackage.class -new file mode 100644 -index 0000000..d029104 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsPackage.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/UnhandledPromiseRejection.class b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/UnhandledPromiseRejection.class -new file mode 100644 -index 0000000..0a51ae4 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/invertase/firebase/crashlytics/UnhandledPromiseRejection.class differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -new file mode 100644 -index 0000000..5916528 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -@@ -0,0 +1,30 @@ -+1 -+2 -+4 -+5 -+6 -+7 -+7-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:4:3-14:17 -+8 -+9 -+10 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:6:5-8:31 -+11 android:name="firebase_crashlytics_collection_enabled" -+11-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:7:7-61 -+12 android:value="false" /> -+12-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:8:7-28 -+13 -+14 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:9:5-13:32 -+15 android:name="io.invertase.firebase.crashlytics.ReactNativeFirebaseCrashlyticsInitProvider" -+15-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:10:7-98 -+16 android:authorities="${applicationId}.reactnativefirebasecrashlyticsinitprovider" -+16-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:11:7-88 -+17 android:exported="false" -+17-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:12:7-31 -+18 android:initOrder="98" /> -+18-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:13:7-29 -+19 -+20 -+21 -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -new file mode 100644 -index 0000000..4e827a6 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -new file mode 100644 -index 0000000..0637a08 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/@react-native-firebase/crashlytics/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-firebase/crashlytics/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-firebase/crashlytics/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar -new file mode 100644 -index 0000000..fc9a220 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -new file mode 100644 -index 0000000..0b0b6f1 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -@@ -0,0 +1,1596 @@ -+io.invertase.firebase.crashlytics -+anim abc_fade_in -+anim abc_fade_out -+anim abc_grow_fade_in_from_bottom -+anim abc_popup_enter -+anim abc_popup_exit -+anim abc_shrink_fade_out_from_bottom -+anim abc_slide_in_bottom -+anim abc_slide_in_top -+anim abc_slide_out_bottom -+anim abc_slide_out_top -+anim abc_tooltip_enter -+anim abc_tooltip_exit -+anim btn_checkbox_to_checked_box_inner_merged_animation -+anim btn_checkbox_to_checked_box_outer_merged_animation -+anim btn_checkbox_to_checked_icon_null_animation -+anim btn_checkbox_to_unchecked_box_inner_merged_animation -+anim btn_checkbox_to_unchecked_check_path_merged_animation -+anim btn_checkbox_to_unchecked_icon_null_animation -+anim btn_radio_to_off_mtrl_dot_group_animation -+anim btn_radio_to_off_mtrl_ring_outer_animation -+anim btn_radio_to_off_mtrl_ring_outer_path_animation -+anim btn_radio_to_on_mtrl_dot_group_animation -+anim btn_radio_to_on_mtrl_ring_outer_animation -+anim btn_radio_to_on_mtrl_ring_outer_path_animation -+anim catalyst_fade_in -+anim catalyst_fade_out -+anim catalyst_push_up_in -+anim catalyst_push_up_out -+anim catalyst_slide_down -+anim catalyst_slide_up -+anim fragment_fast_out_extra_slow_in -+animator fragment_close_enter -+animator fragment_close_exit -+animator fragment_fade_enter -+animator fragment_fade_exit -+animator fragment_open_enter -+animator fragment_open_exit -+attr actionBarDivider -+attr actionBarItemBackground -+attr actionBarPopupTheme -+attr actionBarSize -+attr actionBarSplitStyle -+attr actionBarStyle -+attr actionBarTabBarStyle -+attr actionBarTabStyle -+attr actionBarTabTextStyle -+attr actionBarTheme -+attr actionBarWidgetTheme -+attr actionButtonStyle -+attr actionDropDownStyle -+attr actionLayout -+attr actionMenuTextAppearance -+attr actionMenuTextColor -+attr actionModeBackground -+attr actionModeCloseButtonStyle -+attr actionModeCloseContentDescription -+attr actionModeCloseDrawable -+attr actionModeCopyDrawable -+attr actionModeCutDrawable -+attr actionModeFindDrawable -+attr actionModePasteDrawable -+attr actionModePopupWindowStyle -+attr actionModeSelectAllDrawable -+attr actionModeShareDrawable -+attr actionModeSplitBackground -+attr actionModeStyle -+attr actionModeTheme -+attr actionModeWebSearchDrawable -+attr actionOverflowButtonStyle -+attr actionOverflowMenuStyle -+attr actionProviderClass -+attr actionViewClass -+attr activityChooserViewStyle -+attr actualImageResource -+attr actualImageScaleType -+attr actualImageUri -+attr alertDialogButtonGroupStyle -+attr alertDialogCenterButtons -+attr alertDialogStyle -+attr alertDialogTheme -+attr allowStacking -+attr alpha -+attr alphabeticModifiers -+attr arrowHeadLength -+attr arrowShaftLength -+attr autoCompleteTextViewStyle -+attr autoSizeMaxTextSize -+attr autoSizeMinTextSize -+attr autoSizePresetSizes -+attr autoSizeStepGranularity -+attr autoSizeTextType -+attr autofillInlineSuggestionChip -+attr autofillInlineSuggestionEndIconStyle -+attr autofillInlineSuggestionStartIconStyle -+attr autofillInlineSuggestionSubtitle -+attr autofillInlineSuggestionTitle -+attr background -+attr backgroundImage -+attr backgroundSplit -+attr backgroundStacked -+attr backgroundTint -+attr backgroundTintMode -+attr barLength -+attr borderlessButtonStyle -+attr buttonBarButtonStyle -+attr buttonBarNegativeButtonStyle -+attr buttonBarNeutralButtonStyle -+attr buttonBarPositiveButtonStyle -+attr buttonBarStyle -+attr buttonCompat -+attr buttonGravity -+attr buttonIconDimen -+attr buttonPanelSideLayout -+attr buttonSize -+attr buttonStyle -+attr buttonStyleSmall -+attr buttonTint -+attr buttonTintMode -+attr checkMarkCompat -+attr checkMarkTint -+attr checkMarkTintMode -+attr checkboxStyle -+attr checkedTextViewStyle -+attr circleCrop -+attr closeIcon -+attr closeItemLayout -+attr collapseContentDescription -+attr collapseIcon -+attr color -+attr colorAccent -+attr colorBackgroundFloating -+attr colorButtonNormal -+attr colorControlActivated -+attr colorControlHighlight -+attr colorControlNormal -+attr colorError -+attr colorPrimary -+attr colorPrimaryDark -+attr colorScheme -+attr colorSwitchThumbNormal -+attr commitIcon -+attr contentDescription -+attr contentInsetEnd -+attr contentInsetEndWithActions -+attr contentInsetLeft -+attr contentInsetRight -+attr contentInsetStart -+attr contentInsetStartWithNavigation -+attr controlBackground -+attr coordinatorLayoutStyle -+attr customNavigationLayout -+attr defaultQueryHint -+attr dialogCornerRadius -+attr dialogPreferredPadding -+attr dialogTheme -+attr displayOptions -+attr divider -+attr dividerHorizontal -+attr dividerPadding -+attr dividerVertical -+attr drawableBottomCompat -+attr drawableEndCompat -+attr drawableLeftCompat -+attr drawableRightCompat -+attr drawableSize -+attr drawableStartCompat -+attr drawableTint -+attr drawableTintMode -+attr drawableTopCompat -+attr drawerArrowStyle -+attr drawerLayoutStyle -+attr dropDownListViewStyle -+attr dropdownListPreferredItemHeight -+attr editTextBackground -+attr editTextColor -+attr editTextStyle -+attr elevation -+attr emojiCompatEnabled -+attr expandActivityOverflowButtonDrawable -+attr fadeDuration -+attr failureImage -+attr failureImageScaleType -+attr firstBaselineToTopHeight -+attr font -+attr fontFamily -+attr fontProviderAuthority -+attr fontProviderCerts -+attr fontProviderFetchStrategy -+attr fontProviderFetchTimeout -+attr fontProviderPackage -+attr fontProviderQuery -+attr fontProviderSystemFontFamily -+attr fontStyle -+attr fontVariationSettings -+attr fontWeight -+attr gapBetweenBars -+attr goIcon -+attr height -+attr hideOnContentScroll -+attr homeAsUpIndicator -+attr homeLayout -+attr icon -+attr iconTint -+attr iconTintMode -+attr iconifiedByDefault -+attr imageAspectRatio -+attr imageAspectRatioAdjust -+attr imageButtonStyle -+attr indeterminateProgressStyle -+attr initialActivityCount -+attr isAutofillInlineSuggestionTheme -+attr isLightTheme -+attr itemPadding -+attr keylines -+attr lStar -+attr lastBaselineToBottomHeight -+attr layout -+attr layout_anchor -+attr layout_anchorGravity -+attr layout_behavior -+attr layout_dodgeInsetEdges -+attr layout_insetEdge -+attr layout_keyline -+attr lineHeight -+attr listChoiceBackgroundIndicator -+attr listChoiceIndicatorMultipleAnimated -+attr listChoiceIndicatorSingleAnimated -+attr listDividerAlertDialog -+attr listItemLayout -+attr listLayout -+attr listMenuViewStyle -+attr listPopupWindowStyle -+attr listPreferredItemHeight -+attr listPreferredItemHeightLarge -+attr listPreferredItemHeightSmall -+attr listPreferredItemPaddingEnd -+attr listPreferredItemPaddingLeft -+attr listPreferredItemPaddingRight -+attr listPreferredItemPaddingStart -+attr logo -+attr logoDescription -+attr maxButtonHeight -+attr measureWithLargestChild -+attr menu -+attr multiChoiceItemLayout -+attr navigationContentDescription -+attr navigationIcon -+attr navigationMode -+attr nestedScrollViewStyle -+attr numericModifiers -+attr overlapAnchor -+attr overlayImage -+attr paddingBottomNoButtons -+attr paddingEnd -+attr paddingStart -+attr paddingTopNoTitle -+attr panelBackground -+attr panelMenuListTheme -+attr panelMenuListWidth -+attr placeholderImage -+attr placeholderImageScaleType -+attr popupMenuStyle -+attr popupTheme -+attr popupWindowStyle -+attr preserveIconSpacing -+attr pressedStateOverlayImage -+attr progressBarAutoRotateInterval -+attr progressBarImage -+attr progressBarImageScaleType -+attr progressBarPadding -+attr progressBarStyle -+attr queryBackground -+attr queryHint -+attr queryPatterns -+attr radioButtonStyle -+attr ratingBarStyle -+attr ratingBarStyleIndicator -+attr ratingBarStyleSmall -+attr retryImage -+attr retryImageScaleType -+attr roundAsCircle -+attr roundBottomEnd -+attr roundBottomLeft -+attr roundBottomRight -+attr roundBottomStart -+attr roundTopEnd -+attr roundTopLeft -+attr roundTopRight -+attr roundTopStart -+attr roundWithOverlayColor -+attr roundedCornerRadius -+attr roundingBorderColor -+attr roundingBorderPadding -+attr roundingBorderWidth -+attr scopeUris -+attr searchHintIcon -+attr searchIcon -+attr searchViewStyle -+attr seekBarStyle -+attr selectableItemBackground -+attr selectableItemBackgroundBorderless -+attr shortcutMatchRequired -+attr showAsAction -+attr showDividers -+attr showText -+attr showTitle -+attr singleChoiceItemLayout -+attr spinBars -+attr spinnerDropDownItemStyle -+attr spinnerStyle -+attr splitTrack -+attr srcCompat -+attr state_above_anchor -+attr statusBarBackground -+attr subMenuArrow -+attr submitBackground -+attr subtitle -+attr subtitleTextAppearance -+attr subtitleTextColor -+attr subtitleTextStyle -+attr suggestionRowLayout -+attr swipeRefreshLayoutProgressSpinnerBackgroundColor -+attr switchMinWidth -+attr switchPadding -+attr switchStyle -+attr switchTextAppearance -+attr textAllCaps -+attr textAppearanceLargePopupMenu -+attr textAppearanceListItem -+attr textAppearanceListItemSecondary -+attr textAppearanceListItemSmall -+attr textAppearancePopupMenuHeader -+attr textAppearanceSearchResultSubtitle -+attr textAppearanceSearchResultTitle -+attr textAppearanceSmallPopupMenu -+attr textColorAlertDialogListItem -+attr textColorSearchUrl -+attr textLocale -+attr theme -+attr thickness -+attr thumbTextPadding -+attr thumbTint -+attr thumbTintMode -+attr tickMark -+attr tickMarkTint -+attr tickMarkTintMode -+attr tint -+attr tintMode -+attr title -+attr titleMargin -+attr titleMarginBottom -+attr titleMarginEnd -+attr titleMarginStart -+attr titleMarginTop -+attr titleMargins -+attr titleTextAppearance -+attr titleTextColor -+attr titleTextStyle -+attr toolbarNavigationButtonStyle -+attr toolbarStyle -+attr tooltipForegroundColor -+attr tooltipFrameBackground -+attr tooltipText -+attr track -+attr trackTint -+attr trackTintMode -+attr ttcIndex -+attr viewAspectRatio -+attr viewInflaterClass -+attr voiceIcon -+attr windowActionBar -+attr windowActionBarOverlay -+attr windowActionModeOverlay -+attr windowFixedHeightMajor -+attr windowFixedHeightMinor -+attr windowFixedWidthMajor -+attr windowFixedWidthMinor -+attr windowMinWidthMajor -+attr windowMinWidthMinor -+attr windowNoTitle -+bool abc_action_bar_embed_tabs -+bool abc_config_actionMenuItemAllCaps -+color abc_background_cache_hint_selector_material_dark -+color abc_background_cache_hint_selector_material_light -+color abc_btn_colored_borderless_text_material -+color abc_btn_colored_text_material -+color abc_color_highlight_material -+color abc_decor_view_status_guard -+color abc_decor_view_status_guard_light -+color abc_hint_foreground_material_dark -+color abc_hint_foreground_material_light -+color abc_primary_text_disable_only_material_dark -+color abc_primary_text_disable_only_material_light -+color abc_primary_text_material_dark -+color abc_primary_text_material_light -+color abc_search_url_text -+color abc_search_url_text_normal -+color abc_search_url_text_pressed -+color abc_search_url_text_selected -+color abc_secondary_text_material_dark -+color abc_secondary_text_material_light -+color abc_tint_btn_checkable -+color abc_tint_default -+color abc_tint_edittext -+color abc_tint_seek_thumb -+color abc_tint_spinner -+color abc_tint_switch_track -+color accent_material_dark -+color accent_material_light -+color androidx_core_ripple_material_light -+color androidx_core_secondary_text_default_material_light -+color background_floating_material_dark -+color background_floating_material_light -+color background_material_dark -+color background_material_light -+color bright_foreground_disabled_material_dark -+color bright_foreground_disabled_material_light -+color bright_foreground_inverse_material_dark -+color bright_foreground_inverse_material_light -+color bright_foreground_material_dark -+color bright_foreground_material_light -+color button_material_dark -+color button_material_light -+color call_notification_answer_color -+color call_notification_decline_color -+color catalyst_logbox_background -+color catalyst_redbox_background -+color common_google_signin_btn_text_dark -+color common_google_signin_btn_text_dark_default -+color common_google_signin_btn_text_dark_disabled -+color common_google_signin_btn_text_dark_focused -+color common_google_signin_btn_text_dark_pressed -+color common_google_signin_btn_text_light -+color common_google_signin_btn_text_light_default -+color common_google_signin_btn_text_light_disabled -+color common_google_signin_btn_text_light_focused -+color common_google_signin_btn_text_light_pressed -+color common_google_signin_btn_tint -+color dim_foreground_disabled_material_dark -+color dim_foreground_disabled_material_light -+color dim_foreground_material_dark -+color dim_foreground_material_light -+color error_color_material_dark -+color error_color_material_light -+color foreground_material_dark -+color foreground_material_light -+color highlighted_text_material_dark -+color highlighted_text_material_light -+color material_blue_grey_800 -+color material_blue_grey_900 -+color material_blue_grey_950 -+color material_deep_teal_200 -+color material_deep_teal_500 -+color material_grey_100 -+color material_grey_300 -+color material_grey_50 -+color material_grey_600 -+color material_grey_800 -+color material_grey_850 -+color material_grey_900 -+color notification_action_color_filter -+color notification_icon_bg_color -+color notification_material_background_media_default_color -+color primary_dark_material_dark -+color primary_dark_material_light -+color primary_material_dark -+color primary_material_light -+color primary_text_default_material_dark -+color primary_text_default_material_light -+color primary_text_disabled_material_dark -+color primary_text_disabled_material_light -+color ripple_material_dark -+color ripple_material_light -+color secondary_text_default_material_dark -+color secondary_text_default_material_light -+color secondary_text_disabled_material_dark -+color secondary_text_disabled_material_light -+color switch_thumb_disabled_material_dark -+color switch_thumb_disabled_material_light -+color switch_thumb_material_dark -+color switch_thumb_material_light -+color switch_thumb_normal_material_dark -+color switch_thumb_normal_material_light -+color tooltip_background_dark -+color tooltip_background_light -+dimen abc_action_bar_content_inset_material -+dimen abc_action_bar_content_inset_with_nav -+dimen abc_action_bar_default_height_material -+dimen abc_action_bar_default_padding_end_material -+dimen abc_action_bar_default_padding_start_material -+dimen abc_action_bar_elevation_material -+dimen abc_action_bar_icon_vertical_padding_material -+dimen abc_action_bar_overflow_padding_end_material -+dimen abc_action_bar_overflow_padding_start_material -+dimen abc_action_bar_stacked_max_height -+dimen abc_action_bar_stacked_tab_max_width -+dimen abc_action_bar_subtitle_bottom_margin_material -+dimen abc_action_bar_subtitle_top_margin_material -+dimen abc_action_button_min_height_material -+dimen abc_action_button_min_width_material -+dimen abc_action_button_min_width_overflow_material -+dimen abc_alert_dialog_button_bar_height -+dimen abc_alert_dialog_button_dimen -+dimen abc_button_inset_horizontal_material -+dimen abc_button_inset_vertical_material -+dimen abc_button_padding_horizontal_material -+dimen abc_button_padding_vertical_material -+dimen abc_cascading_menus_min_smallest_width -+dimen abc_config_prefDialogWidth -+dimen abc_control_corner_material -+dimen abc_control_inset_material -+dimen abc_control_padding_material -+dimen abc_dialog_corner_radius_material -+dimen abc_dialog_fixed_height_major -+dimen abc_dialog_fixed_height_minor -+dimen abc_dialog_fixed_width_major -+dimen abc_dialog_fixed_width_minor -+dimen abc_dialog_list_padding_bottom_no_buttons -+dimen abc_dialog_list_padding_top_no_title -+dimen abc_dialog_min_width_major -+dimen abc_dialog_min_width_minor -+dimen abc_dialog_padding_material -+dimen abc_dialog_padding_top_material -+dimen abc_dialog_title_divider_material -+dimen abc_disabled_alpha_material_dark -+dimen abc_disabled_alpha_material_light -+dimen abc_dropdownitem_icon_width -+dimen abc_dropdownitem_text_padding_left -+dimen abc_dropdownitem_text_padding_right -+dimen abc_edit_text_inset_bottom_material -+dimen abc_edit_text_inset_horizontal_material -+dimen abc_edit_text_inset_top_material -+dimen abc_floating_window_z -+dimen abc_list_item_height_large_material -+dimen abc_list_item_height_material -+dimen abc_list_item_height_small_material -+dimen abc_list_item_padding_horizontal_material -+dimen abc_panel_menu_list_width -+dimen abc_progress_bar_height_material -+dimen abc_search_view_preferred_height -+dimen abc_search_view_preferred_width -+dimen abc_seekbar_track_background_height_material -+dimen abc_seekbar_track_progress_height_material -+dimen abc_select_dialog_padding_start_material -+dimen abc_star_big -+dimen abc_star_medium -+dimen abc_star_small -+dimen abc_switch_padding -+dimen abc_text_size_body_1_material -+dimen abc_text_size_body_2_material -+dimen abc_text_size_button_material -+dimen abc_text_size_caption_material -+dimen abc_text_size_display_1_material -+dimen abc_text_size_display_2_material -+dimen abc_text_size_display_3_material -+dimen abc_text_size_display_4_material -+dimen abc_text_size_headline_material -+dimen abc_text_size_large_material -+dimen abc_text_size_medium_material -+dimen abc_text_size_menu_header_material -+dimen abc_text_size_menu_material -+dimen abc_text_size_small_material -+dimen abc_text_size_subhead_material -+dimen abc_text_size_subtitle_material_toolbar -+dimen abc_text_size_title_material -+dimen abc_text_size_title_material_toolbar -+dimen autofill_inline_suggestion_icon_size -+dimen compat_button_inset_horizontal_material -+dimen compat_button_inset_vertical_material -+dimen compat_button_padding_horizontal_material -+dimen compat_button_padding_vertical_material -+dimen compat_control_corner_material -+dimen compat_notification_large_icon_max_height -+dimen compat_notification_large_icon_max_width -+dimen def_drawer_elevation -+dimen disabled_alpha_material_dark -+dimen disabled_alpha_material_light -+dimen highlight_alpha_material_colored -+dimen highlight_alpha_material_dark -+dimen highlight_alpha_material_light -+dimen hint_alpha_material_dark -+dimen hint_alpha_material_light -+dimen hint_pressed_alpha_material_dark -+dimen hint_pressed_alpha_material_light -+dimen notification_action_icon_size -+dimen notification_action_text_size -+dimen notification_big_circle_margin -+dimen notification_content_margin_start -+dimen notification_large_icon_height -+dimen notification_large_icon_width -+dimen notification_main_column_padding_top -+dimen notification_media_narrow_margin -+dimen notification_right_icon_size -+dimen notification_right_side_padding_top -+dimen notification_small_icon_background_padding -+dimen notification_small_icon_size_as_large -+dimen notification_subtext_size -+dimen notification_top_pad -+dimen notification_top_pad_large_text -+dimen tooltip_corner_radius -+dimen tooltip_horizontal_padding -+dimen tooltip_margin -+dimen tooltip_precise_anchor_extra_offset -+dimen tooltip_precise_anchor_threshold -+dimen tooltip_vertical_padding -+dimen tooltip_y_offset_non_touch -+dimen tooltip_y_offset_touch -+drawable abc_ab_share_pack_mtrl_alpha -+drawable abc_action_bar_item_background_material -+drawable abc_btn_borderless_material -+drawable abc_btn_check_material -+drawable abc_btn_check_material_anim -+drawable abc_btn_check_to_on_mtrl_000 -+drawable abc_btn_check_to_on_mtrl_015 -+drawable abc_btn_colored_material -+drawable abc_btn_default_mtrl_shape -+drawable abc_btn_radio_material -+drawable abc_btn_radio_material_anim -+drawable abc_btn_radio_to_on_mtrl_000 -+drawable abc_btn_radio_to_on_mtrl_015 -+drawable abc_btn_switch_to_on_mtrl_00001 -+drawable abc_btn_switch_to_on_mtrl_00012 -+drawable abc_cab_background_internal_bg -+drawable abc_cab_background_top_material -+drawable abc_cab_background_top_mtrl_alpha -+drawable abc_control_background_material -+drawable abc_dialog_material_background -+drawable abc_edit_text_material -+drawable abc_ic_ab_back_material -+drawable abc_ic_arrow_drop_right_black_24dp -+drawable abc_ic_clear_material -+drawable abc_ic_commit_search_api_mtrl_alpha -+drawable abc_ic_go_search_api_material -+drawable abc_ic_menu_copy_mtrl_am_alpha -+drawable abc_ic_menu_cut_mtrl_alpha -+drawable abc_ic_menu_overflow_material -+drawable abc_ic_menu_paste_mtrl_am_alpha -+drawable abc_ic_menu_selectall_mtrl_alpha -+drawable abc_ic_menu_share_mtrl_alpha -+drawable abc_ic_search_api_material -+drawable abc_ic_voice_search_api_material -+drawable abc_item_background_holo_dark -+drawable abc_item_background_holo_light -+drawable abc_list_divider_material -+drawable abc_list_divider_mtrl_alpha -+drawable abc_list_focused_holo -+drawable abc_list_longpressed_holo -+drawable abc_list_pressed_holo_dark -+drawable abc_list_pressed_holo_light -+drawable abc_list_selector_background_transition_holo_dark -+drawable abc_list_selector_background_transition_holo_light -+drawable abc_list_selector_disabled_holo_dark -+drawable abc_list_selector_disabled_holo_light -+drawable abc_list_selector_holo_dark -+drawable abc_list_selector_holo_light -+drawable abc_menu_hardkey_panel_mtrl_mult -+drawable abc_popup_background_mtrl_mult -+drawable abc_ratingbar_indicator_material -+drawable abc_ratingbar_material -+drawable abc_ratingbar_small_material -+drawable abc_scrubber_control_off_mtrl_alpha -+drawable abc_scrubber_control_to_pressed_mtrl_000 -+drawable abc_scrubber_control_to_pressed_mtrl_005 -+drawable abc_scrubber_primary_mtrl_alpha -+drawable abc_scrubber_track_mtrl_alpha -+drawable abc_seekbar_thumb_material -+drawable abc_seekbar_tick_mark_material -+drawable abc_seekbar_track_material -+drawable abc_spinner_mtrl_am_alpha -+drawable abc_spinner_textfield_background_material -+drawable abc_star_black_48dp -+drawable abc_star_half_black_48dp -+drawable abc_switch_thumb_material -+drawable abc_switch_track_mtrl_alpha -+drawable abc_tab_indicator_material -+drawable abc_tab_indicator_mtrl_alpha -+drawable abc_text_cursor_material -+drawable abc_text_select_handle_left_mtrl -+drawable abc_text_select_handle_middle_mtrl -+drawable abc_text_select_handle_right_mtrl -+drawable abc_textfield_activated_mtrl_alpha -+drawable abc_textfield_default_mtrl_alpha -+drawable abc_textfield_search_activated_mtrl_alpha -+drawable abc_textfield_search_default_mtrl_alpha -+drawable abc_textfield_search_material -+drawable abc_vector_test -+drawable autofill_inline_suggestion_chip_background -+drawable btn_checkbox_checked_mtrl -+drawable btn_checkbox_checked_to_unchecked_mtrl_animation -+drawable btn_checkbox_unchecked_mtrl -+drawable btn_checkbox_unchecked_to_checked_mtrl_animation -+drawable btn_radio_off_mtrl -+drawable btn_radio_off_to_on_mtrl_animation -+drawable btn_radio_on_mtrl -+drawable btn_radio_on_to_off_mtrl_animation -+drawable common_full_open_on_phone -+drawable common_google_signin_btn_icon_dark -+drawable common_google_signin_btn_icon_dark_focused -+drawable common_google_signin_btn_icon_dark_normal -+drawable common_google_signin_btn_icon_dark_normal_background -+drawable common_google_signin_btn_icon_disabled -+drawable common_google_signin_btn_icon_light -+drawable common_google_signin_btn_icon_light_focused -+drawable common_google_signin_btn_icon_light_normal -+drawable common_google_signin_btn_icon_light_normal_background -+drawable common_google_signin_btn_text_dark -+drawable common_google_signin_btn_text_dark_focused -+drawable common_google_signin_btn_text_dark_normal -+drawable common_google_signin_btn_text_dark_normal_background -+drawable common_google_signin_btn_text_disabled -+drawable common_google_signin_btn_text_light -+drawable common_google_signin_btn_text_light_focused -+drawable common_google_signin_btn_text_light_normal -+drawable common_google_signin_btn_text_light_normal_background -+drawable googleg_disabled_color_18 -+drawable googleg_standard_color_18 -+drawable ic_call_answer -+drawable ic_call_answer_low -+drawable ic_call_answer_video -+drawable ic_call_answer_video_low -+drawable ic_call_decline -+drawable ic_call_decline_low -+drawable ic_resume -+drawable notification_action_background -+drawable notification_bg -+drawable notification_bg_low -+drawable notification_bg_low_normal -+drawable notification_bg_low_pressed -+drawable notification_bg_normal -+drawable notification_bg_normal_pressed -+drawable notification_icon_background -+drawable notification_oversize_large_icon_bg -+drawable notification_template_icon_bg -+drawable notification_template_icon_low_bg -+drawable notification_tile_bg -+drawable notify_panel_notification_icon_bg -+drawable paused_in_debugger_background -+drawable paused_in_debugger_dialog_background -+drawable redbox_top_border_background -+drawable ripple_effect -+drawable test_level_drawable -+drawable tooltip_frame_dark -+drawable tooltip_frame_light -+id accessibility_action_clickable_span -+id accessibility_actions -+id accessibility_collection -+id accessibility_collection_item -+id accessibility_custom_action_0 -+id accessibility_custom_action_1 -+id accessibility_custom_action_10 -+id accessibility_custom_action_11 -+id accessibility_custom_action_12 -+id accessibility_custom_action_13 -+id accessibility_custom_action_14 -+id accessibility_custom_action_15 -+id accessibility_custom_action_16 -+id accessibility_custom_action_17 -+id accessibility_custom_action_18 -+id accessibility_custom_action_19 -+id accessibility_custom_action_2 -+id accessibility_custom_action_20 -+id accessibility_custom_action_21 -+id accessibility_custom_action_22 -+id accessibility_custom_action_23 -+id accessibility_custom_action_24 -+id accessibility_custom_action_25 -+id accessibility_custom_action_26 -+id accessibility_custom_action_27 -+id accessibility_custom_action_28 -+id accessibility_custom_action_29 -+id accessibility_custom_action_3 -+id accessibility_custom_action_30 -+id accessibility_custom_action_31 -+id accessibility_custom_action_4 -+id accessibility_custom_action_5 -+id accessibility_custom_action_6 -+id accessibility_custom_action_7 -+id accessibility_custom_action_8 -+id accessibility_custom_action_9 -+id accessibility_hint -+id accessibility_label -+id accessibility_links -+id accessibility_role -+id accessibility_state -+id accessibility_state_expanded -+id accessibility_value -+id action0 -+id action_bar -+id action_bar_activity_content -+id action_bar_container -+id action_bar_root -+id action_bar_spinner -+id action_bar_subtitle -+id action_bar_title -+id action_container -+id action_context_bar -+id action_divider -+id action_image -+id action_menu_divider -+id action_menu_presenter -+id action_mode_bar -+id action_mode_bar_stub -+id action_mode_close_button -+id action_text -+id actions -+id activity_chooser_view_content -+id add -+id adjust_height -+id adjust_width -+id alertTitle -+id alert_title -+id all -+id async -+id auto -+id autofill_inline_suggestion_end_icon -+id autofill_inline_suggestion_start_icon -+id autofill_inline_suggestion_subtitle -+id autofill_inline_suggestion_title -+id blocking -+id bottom -+id button -+id buttonPanel -+id button_text -+id cancel_action -+id catalyst_redbox_title -+id center -+id centerCrop -+id centerInside -+id center_horizontal -+id center_vertical -+id checkbox -+id checked -+id chronometer -+id clip_horizontal -+id clip_vertical -+id content -+id contentPanel -+id custom -+id customPanel -+id dark -+id decor_content_parent -+id default_activity_button -+id dialog_button -+id edit_query -+id edit_text_id -+id end -+id end_padder -+id expand_activities_button -+id expanded_menu -+id fill -+id fill_horizontal -+id fill_vertical -+id filter -+id fitBottomStart -+id fitCenter -+id fitEnd -+id fitStart -+id fitXY -+id focusCrop -+id forever -+id fps_text -+id fragment_container_view_tag -+id group_divider -+id hide_ime_id -+id home -+id icon -+id icon_group -+id icon_only -+id image -+id info -+id invalidate_transform -+id italic -+id labelled_by -+id left -+id light -+id line1 -+id line3 -+id listMode -+id list_item -+id media_actions -+id media_controller_compat_view_tag -+id message -+id mix_blend_mode -+id multiply -+id none -+id normal -+id notification_background -+id notification_main_column -+id notification_main_column_container -+id off -+id on -+id parentPanel -+id pointer_events -+id progress_circular -+id progress_horizontal -+id radio -+id react_test_id -+id report_drawn -+id right -+id right_icon -+id right_side -+id rn_frame_file -+id rn_frame_method -+id rn_redbox_dismiss_button -+id rn_redbox_line_separator -+id rn_redbox_loading_indicator -+id rn_redbox_reload_button -+id rn_redbox_report_button -+id rn_redbox_report_label -+id rn_redbox_stack -+id role -+id screen -+id scrollIndicatorDown -+id scrollIndicatorUp -+id scrollView -+id search_badge -+id search_bar -+id search_button -+id search_close_btn -+id search_edit_frame -+id search_go_btn -+id search_mag_icon -+id search_plate -+id search_src_text -+id search_voice_btn -+id select_dialog_listview -+id shortcut -+id spacer -+id special_effects_controller_view_tag -+id split_action_bar -+id src_atop -+id src_in -+id src_over -+id standard -+id start -+id status_bar_latest_event_content -+id submenuarrow -+id submit_area -+id tabMode -+id tag_accessibility_actions -+id tag_accessibility_clickable_spans -+id tag_accessibility_heading -+id tag_accessibility_pane_title -+id tag_on_apply_window_listener -+id tag_on_receive_content_listener -+id tag_on_receive_content_mime_types -+id tag_screen_reader_focusable -+id tag_state_description -+id tag_transition_group -+id tag_unhandled_key_event_manager -+id tag_unhandled_key_listeners -+id tag_window_insets_animation_callback -+id text -+id text2 -+id textSpacerNoButtons -+id textSpacerNoTitle -+id time -+id title -+id titleDividerNoCustom -+id title_template -+id top -+id topPanel -+id transform -+id transform_origin -+id unchecked -+id uniform -+id up -+id use_hardware_layer -+id view_clipped -+id view_tag_instance_handle -+id view_tag_native_id -+id view_tree_lifecycle_owner -+id view_tree_on_back_pressed_dispatcher_owner -+id view_tree_saved_state_registry_owner -+id view_tree_view_model_store_owner -+id visible_removing_fragment_view_tag -+id wide -+id wrap_content -+integer abc_config_activityDefaultDur -+integer abc_config_activityShortDur -+integer cancel_button_image_alpha -+integer config_tooltipAnimTime -+integer google_play_services_version -+integer react_native_dev_server_port -+integer status_bar_notification_info_maxnum -+interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 -+interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 -+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 -+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 -+interpolator btn_radio_to_off_mtrl_animation_interpolator_0 -+interpolator btn_radio_to_on_mtrl_animation_interpolator_0 -+interpolator fast_out_slow_in -+layout abc_action_bar_title_item -+layout abc_action_bar_up_container -+layout abc_action_menu_item_layout -+layout abc_action_menu_layout -+layout abc_action_mode_bar -+layout abc_action_mode_close_item_material -+layout abc_activity_chooser_view -+layout abc_activity_chooser_view_list_item -+layout abc_alert_dialog_button_bar_material -+layout abc_alert_dialog_material -+layout abc_alert_dialog_title_material -+layout abc_cascading_menu_item_layout -+layout abc_dialog_title_material -+layout abc_expanded_menu_layout -+layout abc_list_menu_item_checkbox -+layout abc_list_menu_item_icon -+layout abc_list_menu_item_layout -+layout abc_list_menu_item_radio -+layout abc_popup_menu_header_item_layout -+layout abc_popup_menu_item_layout -+layout abc_screen_content_include -+layout abc_screen_simple -+layout abc_screen_simple_overlay_action_mode -+layout abc_screen_toolbar -+layout abc_search_dropdown_item_icons_2line -+layout abc_search_view -+layout abc_select_dialog_material -+layout abc_tooltip -+layout alert_title_layout -+layout autofill_inline_suggestion -+layout custom_dialog -+layout dev_loading_view -+layout fps_view -+layout ime_base_split_test_activity -+layout ime_secondary_split_test_activity -+layout notification_action -+layout notification_action_tombstone -+layout notification_media_action -+layout notification_media_cancel_action -+layout notification_template_big_media -+layout notification_template_big_media_custom -+layout notification_template_big_media_narrow -+layout notification_template_big_media_narrow_custom -+layout notification_template_custom_big -+layout notification_template_icon_group -+layout notification_template_lines_media -+layout notification_template_media -+layout notification_template_media_custom -+layout notification_template_part_chronometer -+layout notification_template_part_time -+layout paused_in_debugger_view -+layout redbox_item_frame -+layout redbox_item_title -+layout redbox_view -+layout select_dialog_item_material -+layout select_dialog_multichoice_material -+layout select_dialog_singlechoice_material -+layout support_simple_spinner_dropdown_item -+string abc_action_bar_home_description -+string abc_action_bar_up_description -+string abc_action_menu_overflow_description -+string abc_action_mode_done -+string abc_activity_chooser_view_see_all -+string abc_activitychooserview_choose_application -+string abc_capital_off -+string abc_capital_on -+string abc_menu_alt_shortcut_label -+string abc_menu_ctrl_shortcut_label -+string abc_menu_delete_shortcut_label -+string abc_menu_enter_shortcut_label -+string abc_menu_function_shortcut_label -+string abc_menu_meta_shortcut_label -+string abc_menu_shift_shortcut_label -+string abc_menu_space_shortcut_label -+string abc_menu_sym_shortcut_label -+string abc_prepend_shortcut_label -+string abc_search_hint -+string abc_searchview_description_clear -+string abc_searchview_description_query -+string abc_searchview_description_search -+string abc_searchview_description_submit -+string abc_searchview_description_voice -+string abc_shareactionprovider_share_with -+string abc_shareactionprovider_share_with_application -+string abc_toolbar_collapse_description -+string alert_description -+string call_notification_answer_action -+string call_notification_answer_video_action -+string call_notification_decline_action -+string call_notification_hang_up_action -+string call_notification_incoming_text -+string call_notification_ongoing_text -+string call_notification_screening_text -+string catalyst_change_bundle_location -+string catalyst_copy_button -+string catalyst_debug_connecting -+string catalyst_debug_error -+string catalyst_debug_open -+string catalyst_debug_open_disabled -+string catalyst_dev_menu_header -+string catalyst_dev_menu_sub_header -+string catalyst_dismiss_button -+string catalyst_heap_capture -+string catalyst_hot_reloading -+string catalyst_hot_reloading_auto_disable -+string catalyst_hot_reloading_auto_enable -+string catalyst_hot_reloading_stop -+string catalyst_inspector_toggle -+string catalyst_loading_from_url -+string catalyst_open_debugger_error -+string catalyst_perf_monitor -+string catalyst_perf_monitor_stop -+string catalyst_reload -+string catalyst_reload_button -+string catalyst_reload_error -+string catalyst_report_button -+string catalyst_sample_profiler_toggle -+string catalyst_settings -+string catalyst_settings_title -+string combobox_description -+string common_google_play_services_enable_button -+string common_google_play_services_enable_text -+string common_google_play_services_enable_title -+string common_google_play_services_install_button -+string common_google_play_services_install_text -+string common_google_play_services_install_title -+string common_google_play_services_notification_channel_name -+string common_google_play_services_notification_ticker -+string common_google_play_services_unknown_issue -+string common_google_play_services_unsupported_text -+string common_google_play_services_update_button -+string common_google_play_services_update_text -+string common_google_play_services_update_title -+string common_google_play_services_updating_text -+string common_google_play_services_wear_update_text -+string common_open_on_phone -+string common_signin_button_text -+string common_signin_button_text_long -+string header_description -+string image_description -+string imagebutton_description -+string link_description -+string menu_description -+string menubar_description -+string menuitem_description -+string progressbar_description -+string radiogroup_description -+string rn_tab_description -+string scrollbar_description -+string search_menu_title -+string spinbutton_description -+string state_busy_description -+string state_collapsed_description -+string state_expanded_description -+string state_mixed_description -+string state_off_description -+string state_on_description -+string state_unselected_description -+string status_bar_notification_info_overflow -+string summary_description -+string tablist_description -+string timer_description -+string toolbar_description -+style AlertDialog_AppCompat -+style AlertDialog_AppCompat_Light -+style Animation_AppCompat_Dialog -+style Animation_AppCompat_DropDownUp -+style Animation_AppCompat_Tooltip -+style Animation_Catalyst_LogBox -+style Animation_Catalyst_RedBox -+style Base_AlertDialog_AppCompat -+style Base_AlertDialog_AppCompat_Light -+style Base_Animation_AppCompat_Dialog -+style Base_Animation_AppCompat_DropDownUp -+style Base_Animation_AppCompat_Tooltip -+style Base_DialogWindowTitleBackground_AppCompat -+style Base_DialogWindowTitle_AppCompat -+style Base_TextAppearance_AppCompat -+style Base_TextAppearance_AppCompat_Body1 -+style Base_TextAppearance_AppCompat_Body2 -+style Base_TextAppearance_AppCompat_Button -+style Base_TextAppearance_AppCompat_Caption -+style Base_TextAppearance_AppCompat_Display1 -+style Base_TextAppearance_AppCompat_Display2 -+style Base_TextAppearance_AppCompat_Display3 -+style Base_TextAppearance_AppCompat_Display4 -+style Base_TextAppearance_AppCompat_Headline -+style Base_TextAppearance_AppCompat_Inverse -+style Base_TextAppearance_AppCompat_Large -+style Base_TextAppearance_AppCompat_Large_Inverse -+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -+style Base_TextAppearance_AppCompat_Medium -+style Base_TextAppearance_AppCompat_Medium_Inverse -+style Base_TextAppearance_AppCompat_Menu -+style Base_TextAppearance_AppCompat_SearchResult -+style Base_TextAppearance_AppCompat_SearchResult_Subtitle -+style Base_TextAppearance_AppCompat_SearchResult_Title -+style Base_TextAppearance_AppCompat_Small -+style Base_TextAppearance_AppCompat_Small_Inverse -+style Base_TextAppearance_AppCompat_Subhead -+style Base_TextAppearance_AppCompat_Subhead_Inverse -+style Base_TextAppearance_AppCompat_Title -+style Base_TextAppearance_AppCompat_Title_Inverse -+style Base_TextAppearance_AppCompat_Tooltip -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title -+style Base_TextAppearance_AppCompat_Widget_Button -+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -+style Base_TextAppearance_AppCompat_Widget_Button_Colored -+style Base_TextAppearance_AppCompat_Widget_Button_Inverse -+style Base_TextAppearance_AppCompat_Widget_DropDownItem -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -+style Base_TextAppearance_AppCompat_Widget_Switch -+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title -+style Base_ThemeOverlay_AppCompat -+style Base_ThemeOverlay_AppCompat_ActionBar -+style Base_ThemeOverlay_AppCompat_Dark -+style Base_ThemeOverlay_AppCompat_Dark_ActionBar -+style Base_ThemeOverlay_AppCompat_Dialog -+style Base_ThemeOverlay_AppCompat_Dialog_Alert -+style Base_ThemeOverlay_AppCompat_Light -+style Base_Theme_AppCompat -+style Base_Theme_AppCompat_CompactMenu -+style Base_Theme_AppCompat_Dialog -+style Base_Theme_AppCompat_DialogWhenLarge -+style Base_Theme_AppCompat_Dialog_Alert -+style Base_Theme_AppCompat_Dialog_FixedSize -+style Base_Theme_AppCompat_Dialog_MinWidth -+style Base_Theme_AppCompat_Light -+style Base_Theme_AppCompat_Light_DarkActionBar -+style Base_Theme_AppCompat_Light_Dialog -+style Base_Theme_AppCompat_Light_DialogWhenLarge -+style Base_Theme_AppCompat_Light_Dialog_Alert -+style Base_Theme_AppCompat_Light_Dialog_FixedSize -+style Base_Theme_AppCompat_Light_Dialog_MinWidth -+style Base_V21_ThemeOverlay_AppCompat_Dialog -+style Base_V21_Theme_AppCompat -+style Base_V21_Theme_AppCompat_Dialog -+style Base_V21_Theme_AppCompat_Light -+style Base_V21_Theme_AppCompat_Light_Dialog -+style Base_V22_Theme_AppCompat -+style Base_V22_Theme_AppCompat_Light -+style Base_V23_Theme_AppCompat -+style Base_V23_Theme_AppCompat_Light -+style Base_V26_Theme_AppCompat -+style Base_V26_Theme_AppCompat_Light -+style Base_V26_Widget_AppCompat_Toolbar -+style Base_V28_Theme_AppCompat -+style Base_V28_Theme_AppCompat_Light -+style Base_V7_ThemeOverlay_AppCompat_Dialog -+style Base_V7_Theme_AppCompat -+style Base_V7_Theme_AppCompat_Dialog -+style Base_V7_Theme_AppCompat_Light -+style Base_V7_Theme_AppCompat_Light_Dialog -+style Base_V7_Widget_AppCompat_AutoCompleteTextView -+style Base_V7_Widget_AppCompat_EditText -+style Base_V7_Widget_AppCompat_Toolbar -+style Base_Widget_AppCompat_ActionBar -+style Base_Widget_AppCompat_ActionBar_Solid -+style Base_Widget_AppCompat_ActionBar_TabBar -+style Base_Widget_AppCompat_ActionBar_TabText -+style Base_Widget_AppCompat_ActionBar_TabView -+style Base_Widget_AppCompat_ActionButton -+style Base_Widget_AppCompat_ActionButton_CloseMode -+style Base_Widget_AppCompat_ActionButton_Overflow -+style Base_Widget_AppCompat_ActionMode -+style Base_Widget_AppCompat_ActivityChooserView -+style Base_Widget_AppCompat_AutoCompleteTextView -+style Base_Widget_AppCompat_Button -+style Base_Widget_AppCompat_ButtonBar -+style Base_Widget_AppCompat_ButtonBar_AlertDialog -+style Base_Widget_AppCompat_Button_Borderless -+style Base_Widget_AppCompat_Button_Borderless_Colored -+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -+style Base_Widget_AppCompat_Button_Colored -+style Base_Widget_AppCompat_Button_Small -+style Base_Widget_AppCompat_CompoundButton_CheckBox -+style Base_Widget_AppCompat_CompoundButton_RadioButton -+style Base_Widget_AppCompat_CompoundButton_Switch -+style Base_Widget_AppCompat_DrawerArrowToggle -+style Base_Widget_AppCompat_DrawerArrowToggle_Common -+style Base_Widget_AppCompat_DropDownItem_Spinner -+style Base_Widget_AppCompat_EditText -+style Base_Widget_AppCompat_ImageButton -+style Base_Widget_AppCompat_Light_ActionBar -+style Base_Widget_AppCompat_Light_ActionBar_Solid -+style Base_Widget_AppCompat_Light_ActionBar_TabBar -+style Base_Widget_AppCompat_Light_ActionBar_TabText -+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -+style Base_Widget_AppCompat_Light_ActionBar_TabView -+style Base_Widget_AppCompat_Light_PopupMenu -+style Base_Widget_AppCompat_Light_PopupMenu_Overflow -+style Base_Widget_AppCompat_ListMenuView -+style Base_Widget_AppCompat_ListPopupWindow -+style Base_Widget_AppCompat_ListView -+style Base_Widget_AppCompat_ListView_DropDown -+style Base_Widget_AppCompat_ListView_Menu -+style Base_Widget_AppCompat_PopupMenu -+style Base_Widget_AppCompat_PopupMenu_Overflow -+style Base_Widget_AppCompat_PopupWindow -+style Base_Widget_AppCompat_ProgressBar -+style Base_Widget_AppCompat_ProgressBar_Horizontal -+style Base_Widget_AppCompat_RatingBar -+style Base_Widget_AppCompat_RatingBar_Indicator -+style Base_Widget_AppCompat_RatingBar_Small -+style Base_Widget_AppCompat_SearchView -+style Base_Widget_AppCompat_SearchView_ActionBar -+style Base_Widget_AppCompat_SeekBar -+style Base_Widget_AppCompat_SeekBar_Discrete -+style Base_Widget_AppCompat_Spinner -+style Base_Widget_AppCompat_Spinner_Underlined -+style Base_Widget_AppCompat_TextView -+style Base_Widget_AppCompat_TextView_SpinnerItem -+style Base_Widget_AppCompat_Toolbar -+style Base_Widget_AppCompat_Toolbar_Button_Navigation -+style CalendarDatePickerDialog -+style CalendarDatePickerStyle -+style DialogAnimationFade -+style DialogAnimationSlide -+style NoAnimationDialog -+style Platform_AppCompat -+style Platform_AppCompat_Light -+style Platform_ThemeOverlay_AppCompat -+style Platform_ThemeOverlay_AppCompat_Dark -+style Platform_ThemeOverlay_AppCompat_Light -+style Platform_V21_AppCompat -+style Platform_V21_AppCompat_Light -+style Platform_V25_AppCompat -+style Platform_V25_AppCompat_Light -+style Platform_Widget_AppCompat_Spinner -+style RtlOverlay_DialogWindowTitle_AppCompat -+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon -+style RtlOverlay_Widget_AppCompat_PopupMenuItem -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon -+style RtlOverlay_Widget_AppCompat_Search_DropDown -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text -+style RtlUnderlay_Widget_AppCompat_ActionButton -+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -+style SpinnerDatePickerDialog -+style SpinnerDatePickerStyle -+style TextAppearance_AppCompat -+style TextAppearance_AppCompat_Body1 -+style TextAppearance_AppCompat_Body2 -+style TextAppearance_AppCompat_Button -+style TextAppearance_AppCompat_Caption -+style TextAppearance_AppCompat_Display1 -+style TextAppearance_AppCompat_Display2 -+style TextAppearance_AppCompat_Display3 -+style TextAppearance_AppCompat_Display4 -+style TextAppearance_AppCompat_Headline -+style TextAppearance_AppCompat_Inverse -+style TextAppearance_AppCompat_Large -+style TextAppearance_AppCompat_Large_Inverse -+style TextAppearance_AppCompat_Light_SearchResult_Subtitle -+style TextAppearance_AppCompat_Light_SearchResult_Title -+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -+style TextAppearance_AppCompat_Medium -+style TextAppearance_AppCompat_Medium_Inverse -+style TextAppearance_AppCompat_Menu -+style TextAppearance_AppCompat_SearchResult_Subtitle -+style TextAppearance_AppCompat_SearchResult_Title -+style TextAppearance_AppCompat_Small -+style TextAppearance_AppCompat_Small_Inverse -+style TextAppearance_AppCompat_Subhead -+style TextAppearance_AppCompat_Subhead_Inverse -+style TextAppearance_AppCompat_Title -+style TextAppearance_AppCompat_Title_Inverse -+style TextAppearance_AppCompat_Tooltip -+style TextAppearance_AppCompat_Widget_ActionBar_Menu -+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle -+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -+style TextAppearance_AppCompat_Widget_ActionBar_Title -+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle -+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -+style TextAppearance_AppCompat_Widget_ActionMode_Title -+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -+style TextAppearance_AppCompat_Widget_Button -+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored -+style TextAppearance_AppCompat_Widget_Button_Colored -+style TextAppearance_AppCompat_Widget_Button_Inverse -+style TextAppearance_AppCompat_Widget_DropDownItem -+style TextAppearance_AppCompat_Widget_PopupMenu_Header -+style TextAppearance_AppCompat_Widget_PopupMenu_Large -+style TextAppearance_AppCompat_Widget_PopupMenu_Small -+style TextAppearance_AppCompat_Widget_Switch -+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem -+style TextAppearance_Compat_Notification -+style TextAppearance_Compat_Notification_Info -+style TextAppearance_Compat_Notification_Info_Media -+style TextAppearance_Compat_Notification_Line2 -+style TextAppearance_Compat_Notification_Line2_Media -+style TextAppearance_Compat_Notification_Media -+style TextAppearance_Compat_Notification_Time -+style TextAppearance_Compat_Notification_Time_Media -+style TextAppearance_Compat_Notification_Title -+style TextAppearance_Compat_Notification_Title_Media -+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item -+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle -+style TextAppearance_Widget_AppCompat_Toolbar_Title -+style Theme -+style ThemeOverlay_AppCompat -+style ThemeOverlay_AppCompat_ActionBar -+style ThemeOverlay_AppCompat_Dark -+style ThemeOverlay_AppCompat_Dark_ActionBar -+style ThemeOverlay_AppCompat_DayNight -+style ThemeOverlay_AppCompat_DayNight_ActionBar -+style ThemeOverlay_AppCompat_Dialog -+style ThemeOverlay_AppCompat_Dialog_Alert -+style ThemeOverlay_AppCompat_Light -+style Theme_AppCompat -+style Theme_AppCompat_CompactMenu -+style Theme_AppCompat_DayNight -+style Theme_AppCompat_DayNight_DarkActionBar -+style Theme_AppCompat_DayNight_Dialog -+style Theme_AppCompat_DayNight_DialogWhenLarge -+style Theme_AppCompat_DayNight_Dialog_Alert -+style Theme_AppCompat_DayNight_Dialog_MinWidth -+style Theme_AppCompat_DayNight_NoActionBar -+style Theme_AppCompat_Dialog -+style Theme_AppCompat_DialogWhenLarge -+style Theme_AppCompat_Dialog_Alert -+style Theme_AppCompat_Dialog_MinWidth -+style Theme_AppCompat_Empty -+style Theme_AppCompat_Light -+style Theme_AppCompat_Light_DarkActionBar -+style Theme_AppCompat_Light_Dialog -+style Theme_AppCompat_Light_DialogWhenLarge -+style Theme_AppCompat_Light_Dialog_Alert -+style Theme_AppCompat_Light_Dialog_MinWidth -+style Theme_AppCompat_Light_NoActionBar -+style Theme_AppCompat_NoActionBar -+style Theme_AutofillInlineSuggestion -+style Theme_Catalyst -+style Theme_Catalyst_LogBox -+style Theme_Catalyst_RedBox -+style Theme_FullScreenDialog -+style Theme_FullScreenDialogAnimatedFade -+style Theme_FullScreenDialogAnimatedSlide -+style Theme_ReactNative_AppCompat_Light -+style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen -+style Theme_ReactNative_TextInput_DefaultBackground -+style Widget_AppCompat_ActionBar -+style Widget_AppCompat_ActionBar_Solid -+style Widget_AppCompat_ActionBar_TabBar -+style Widget_AppCompat_ActionBar_TabText -+style Widget_AppCompat_ActionBar_TabView -+style Widget_AppCompat_ActionButton -+style Widget_AppCompat_ActionButton_CloseMode -+style Widget_AppCompat_ActionButton_Overflow -+style Widget_AppCompat_ActionMode -+style Widget_AppCompat_ActivityChooserView -+style Widget_AppCompat_AutoCompleteTextView -+style Widget_AppCompat_Button -+style Widget_AppCompat_ButtonBar -+style Widget_AppCompat_ButtonBar_AlertDialog -+style Widget_AppCompat_Button_Borderless -+style Widget_AppCompat_Button_Borderless_Colored -+style Widget_AppCompat_Button_ButtonBar_AlertDialog -+style Widget_AppCompat_Button_Colored -+style Widget_AppCompat_Button_Small -+style Widget_AppCompat_CompoundButton_CheckBox -+style Widget_AppCompat_CompoundButton_RadioButton -+style Widget_AppCompat_CompoundButton_Switch -+style Widget_AppCompat_DrawerArrowToggle -+style Widget_AppCompat_DropDownItem_Spinner -+style Widget_AppCompat_EditText -+style Widget_AppCompat_ImageButton -+style Widget_AppCompat_Light_ActionBar -+style Widget_AppCompat_Light_ActionBar_Solid -+style Widget_AppCompat_Light_ActionBar_Solid_Inverse -+style Widget_AppCompat_Light_ActionBar_TabBar -+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse -+style Widget_AppCompat_Light_ActionBar_TabText -+style Widget_AppCompat_Light_ActionBar_TabText_Inverse -+style Widget_AppCompat_Light_ActionBar_TabView -+style Widget_AppCompat_Light_ActionBar_TabView_Inverse -+style Widget_AppCompat_Light_ActionButton -+style Widget_AppCompat_Light_ActionButton_CloseMode -+style Widget_AppCompat_Light_ActionButton_Overflow -+style Widget_AppCompat_Light_ActionMode_Inverse -+style Widget_AppCompat_Light_ActivityChooserView -+style Widget_AppCompat_Light_AutoCompleteTextView -+style Widget_AppCompat_Light_DropDownItem_Spinner -+style Widget_AppCompat_Light_ListPopupWindow -+style Widget_AppCompat_Light_ListView_DropDown -+style Widget_AppCompat_Light_PopupMenu -+style Widget_AppCompat_Light_PopupMenu_Overflow -+style Widget_AppCompat_Light_SearchView -+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar -+style Widget_AppCompat_ListMenuView -+style Widget_AppCompat_ListPopupWindow -+style Widget_AppCompat_ListView -+style Widget_AppCompat_ListView_DropDown -+style Widget_AppCompat_ListView_Menu -+style Widget_AppCompat_PopupMenu -+style Widget_AppCompat_PopupMenu_Overflow -+style Widget_AppCompat_PopupWindow -+style Widget_AppCompat_ProgressBar -+style Widget_AppCompat_ProgressBar_Horizontal -+style Widget_AppCompat_RatingBar -+style Widget_AppCompat_RatingBar_Indicator -+style Widget_AppCompat_RatingBar_Small -+style Widget_AppCompat_SearchView -+style Widget_AppCompat_SearchView_ActionBar -+style Widget_AppCompat_SeekBar -+style Widget_AppCompat_SeekBar_Discrete -+style Widget_AppCompat_Spinner -+style Widget_AppCompat_Spinner_DropDown -+style Widget_AppCompat_Spinner_DropDown_ActionBar -+style Widget_AppCompat_Spinner_Underlined -+style Widget_AppCompat_TextView -+style Widget_AppCompat_TextView_SpinnerItem -+style Widget_AppCompat_Toolbar -+style Widget_AppCompat_Toolbar_Button_Navigation -+style Widget_Autofill -+style Widget_Autofill_InlineSuggestionChip -+style Widget_Autofill_InlineSuggestionEndIconStyle -+style Widget_Autofill_InlineSuggestionStartIconStyle -+style Widget_Autofill_InlineSuggestionSubtitle -+style Widget_Autofill_InlineSuggestionTitle -+style Widget_Compat_NotificationActionContainer -+style Widget_Compat_NotificationActionText -+style Widget_Support_CoordinatorLayout -+style redboxButton -+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle -+styleable ActionBarLayout android_layout_gravity -+styleable ActionMenuItemView android_minWidth -+styleable ActionMenuView -+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle -+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount -+styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout -+styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -+styleable AnimatedStateListDrawableItem android_drawable android_id -+styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId -+styleable AppCompatEmojiHelper -+styleable AppCompatImageView android_src srcCompat tint tintMode -+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode -+styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance -+styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale -+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle -+styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme -+styleable ButtonBarLayout allowStacking -+styleable Capability queryPatterns shortcutMatchRequired -+styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode -+styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar -+styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode -+styleable CoordinatorLayout keylines statusBarBackground -+styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline -+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness -+styleable DrawerLayout elevation -+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily -+styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex -+styleable Fragment android_id android_name android_tag -+styleable FragmentContainerView android_name android_tag -+styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio -+styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type -+styleable GradientColorItem android_color android_offset -+styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers -+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width -+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset -+styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust -+styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible -+styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText -+styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow -+styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor -+styleable PopupWindowBackgroundState state_above_anchor -+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle -+styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon -+styleable SignInButton buttonSize colorScheme scopeUris -+styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio -+styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme -+styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -+styleable StateListDrawableItem android_drawable -+styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor -+styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode -+styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale -+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor -+styleable View android_focusable android_theme paddingEnd paddingStart theme -+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode -+styleable ViewStubCompat android_id android_inflatedId android_layout -+xml rn_dev_preferences -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@react-native-firebase/crashlytics/android/build/outputs/logs/manifest-merger-debug-report.txt -new file mode 100644 -index 0000000..bb37631 ---- /dev/null -+++ b/node_modules/@react-native-firebase/crashlytics/android/build/outputs/logs/manifest-merger-debug-report.txt -@@ -0,0 +1,35 @@ -+-- Merging decision tree log --- -+manifest -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:2:1-15:12 -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:2:1-15:12 -+ package -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:3:3-46 -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml -+ xmlns:android -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:2:11-69 -+application -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:4:3-14:17 -+meta-data#firebase_crashlytics_collection_enabled -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:6:5-8:31 -+ android:value -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:8:7-28 -+ android:name -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:7:7-61 -+provider#io.invertase.firebase.crashlytics.ReactNativeFirebaseCrashlyticsInitProvider -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:9:5-13:32 -+ android:authorities -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:11:7-88 -+ android:exported -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:12:7-31 -+ android:initOrder -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:13:7-29 -+ android:name -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml:10:7-98 -+uses-sdk -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml reason: use-sdk injection requested -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml -+ android:targetSdkVersion -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml -+ android:minSdkVersion -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@react-native-firebase/crashlytics/android/src/main/AndroidManifest.xml -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/@react-native-firebase/crashlytics/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin -new file mode 100644 -index 0000000..7cf0894 -Binary files /dev/null and b/node_modules/@react-native-firebase/crashlytics/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ From c30adc7d0f325405a3a9c1a5f84d60de4585c8e4 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 18:02:32 +0200 Subject: [PATCH 18/50] Update @rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch --- ...-packaging-for-16kb-memory-page-size.patch | 13979 +--------------- 1 file changed, 14 insertions(+), 13965 deletions(-) diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch index 81d3db3a5db7b..40b255d6fa709 100644 --- a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch +++ b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch @@ -1,5 +1,5 @@ diff --git a/node_modules/@rnmapbox/maps/android/build.gradle b/node_modules/@rnmapbox/maps/android/build.gradle -index dd8e6c6..7c5ca38 100644 +index dd8e6c6..dfca30e 100644 --- a/node_modules/@rnmapbox/maps/android/build.gradle +++ b/node_modules/@rnmapbox/maps/android/build.gradle @@ -84,6 +84,10 @@ android { @@ -13,13967 +13,16 @@ index dd8e6c6..7c5ca38 100644 pickFirst 'lib/x86/libc++_shared.so' pickFirst 'lib/x86_64/libc++_shared.so' pickFirst 'lib/arm64-v8a/libc++_shared.so' -diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/results.bin b/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/results.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/results.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/transformed/classes/classes_dex/classes.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/transformed/classes/classes_dex/classes.dex -new file mode 100644 -index 0000000..de56de6 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/2bb7570128f30b46caa0bac94f55722b/transformed/classes/classes_dex/classes.dex differ -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java b/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java -new file mode 100644 -index 0000000..f8f7ad6 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java -@@ -0,0 +1,12 @@ -+/** -+ * Automatically generated file. DO NOT MODIFY -+ */ -+package com.rnmapbox.rnmbx; -+ -+public final class BuildConfig { -+ public static final boolean DEBUG = Boolean.parseBoolean("true"); -+ public static final String LIBRARY_PACKAGE_NAME = "com.rnmapbox.rnmbx"; -+ public static final String BUILD_TYPE = "debug"; -+ // Field from default config. -+ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = true; -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java -new file mode 100644 -index 0000000..342de06 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java -@@ -0,0 +1,33 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXAtmosphereManagerDelegate & RNMBXAtmosphereManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXAtmosphereManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.java -new file mode 100644 -index 0000000..4ca4850 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.java -@@ -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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXAtmosphereManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.java -new file mode 100644 -index 0000000..a7af3e0 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXBackgroundLayerManagerDelegate & RNMBXBackgroundLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXBackgroundLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.java -new file mode 100644 -index 0000000..6ac2e9e ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.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 com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXBackgroundLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, Dynamic value); -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.java -new file mode 100644 -index 0000000..5f13e79 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.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 RNMBXCalloutManagerDelegate & RNMBXCalloutManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXCalloutManagerDelegate(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/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.java -new file mode 100644 -index 0000000..4c8e042 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.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 RNMBXCalloutManagerInterface extends ViewManagerWithGeneratedInterface { -+ // No props -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java -new file mode 100644 -index 0000000..db3e9ce ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java -@@ -0,0 +1,75 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXCameraManagerDelegate & RNMBXCameraManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXCameraManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "maxBounds": -+ mViewManager.setMaxBounds(view, new DynamicFromObject(value)); -+ break; -+ case "animationDuration": -+ mViewManager.setAnimationDuration(view, new DynamicFromObject(value)); -+ break; -+ case "animationMode": -+ mViewManager.setAnimationMode(view, new DynamicFromObject(value)); -+ break; -+ case "defaultStop": -+ mViewManager.setDefaultStop(view, new DynamicFromObject(value)); -+ break; -+ case "userTrackingMode": -+ mViewManager.setUserTrackingMode(view, new DynamicFromObject(value)); -+ break; -+ case "followUserLocation": -+ mViewManager.setFollowUserLocation(view, new DynamicFromObject(value)); -+ break; -+ case "followUserMode": -+ mViewManager.setFollowUserMode(view, new DynamicFromObject(value)); -+ break; -+ case "followZoomLevel": -+ mViewManager.setFollowZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "followPitch": -+ mViewManager.setFollowPitch(view, new DynamicFromObject(value)); -+ break; -+ case "followHeading": -+ mViewManager.setFollowHeading(view, new DynamicFromObject(value)); -+ break; -+ case "followPadding": -+ mViewManager.setFollowPadding(view, new DynamicFromObject(value)); -+ break; -+ case "zoomLevel": -+ mViewManager.setZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "stop": -+ mViewManager.setStop(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.java -new file mode 100644 -index 0000000..0460c4e ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.java -@@ -0,0 +1,32 @@ -+/** -+* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+* -+* Do not edit this file as changes may cause incorrect behavior and will be lost -+* once the code is regenerated. -+* -+* @generated by codegen project: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXCameraManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setMaxBounds(T view, Dynamic value); -+ void setAnimationDuration(T view, Dynamic value); -+ void setAnimationMode(T view, Dynamic value); -+ void setDefaultStop(T view, Dynamic value); -+ void setUserTrackingMode(T view, Dynamic value); -+ void setFollowUserLocation(T view, Dynamic value); -+ void setFollowUserMode(T view, Dynamic value); -+ void setFollowZoomLevel(T view, Dynamic value); -+ void setFollowPitch(T view, Dynamic value); -+ void setFollowHeading(T view, Dynamic value); -+ void setFollowPadding(T view, Dynamic value); -+ void setZoomLevel(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setStop(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.java -new file mode 100644 -index 0000000..4615522 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXCircleLayerManagerDelegate & RNMBXCircleLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXCircleLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "sourceLayerID": -+ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "slot": -+ mViewManager.setSlot(view, new DynamicFromObject(value)); -+ break; -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.java -new file mode 100644 -index 0000000..7c8eae4 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.java -@@ -0,0 +1,29 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXCircleLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setSourceLayerID(T view, Dynamic value); -+ void setSlot(T view, Dynamic value); -+ void setId(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java -new file mode 100644 -index 0000000..5d4d3ff ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java -@@ -0,0 +1,36 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXCustomLocationProviderManagerDelegate & RNMBXCustomLocationProviderManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXCustomLocationProviderManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "coordinate": -+ mViewManager.setCoordinate(view, new DynamicFromObject(value)); -+ break; -+ case "heading": -+ mViewManager.setHeading(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.java -new file mode 100644 -index 0000000..da679d7 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.java -@@ -0,0 +1,19 @@ -+/** -+* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+* -+* Do not edit this file as changes may cause incorrect behavior and will be lost -+* once the code is regenerated. -+* -+* @generated by codegen project: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXCustomLocationProviderManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setCoordinate(T view, Dynamic value); -+ void setHeading(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java -new file mode 100644 -index 0000000..74d71ef ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java -@@ -0,0 +1,63 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXFillExtrusionLayerManagerDelegate & RNMBXFillExtrusionLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXFillExtrusionLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "sourceLayerID": -+ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.java -new file mode 100644 -index 0000000..0f410f3 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.java -@@ -0,0 +1,28 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXFillExtrusionLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, Dynamic value); -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setSourceLayerID(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.java -new file mode 100644 -index 0000000..51e36e4 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXFillLayerManagerDelegate & RNMBXFillLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXFillLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "sourceLayerID": -+ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "slot": -+ mViewManager.setSlot(view, new DynamicFromObject(value)); -+ break; -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.java -new file mode 100644 -index 0000000..4bfd29d ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.java -@@ -0,0 +1,29 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXFillLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setSourceLayerID(T view, Dynamic value); -+ void setSlot(T view, Dynamic value); -+ void setId(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.java -new file mode 100644 -index 0000000..26227c1 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXHeatmapLayerManagerDelegate & RNMBXHeatmapLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXHeatmapLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "sourceLayerID": -+ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "slot": -+ mViewManager.setSlot(view, new DynamicFromObject(value)); -+ break; -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.java -new file mode 100644 -index 0000000..d4f58e2 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.java -@@ -0,0 +1,29 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXHeatmapLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setSourceLayerID(T view, Dynamic value); -+ void setSlot(T view, Dynamic value); -+ void setId(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java -new file mode 100644 -index 0000000..9feed84 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java -@@ -0,0 +1,48 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXImageManagerDelegate & RNMBXImageManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXImageManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "stretchX": -+ mViewManager.setStretchX(view, new DynamicFromObject(value)); -+ break; -+ case "stretchY": -+ mViewManager.setStretchY(view, new DynamicFromObject(value)); -+ break; -+ case "content": -+ mViewManager.setContent(view, new DynamicFromObject(value)); -+ break; -+ case "sdf": -+ mViewManager.setSdf(view, new DynamicFromObject(value)); -+ break; -+ case "name": -+ mViewManager.setName(view, new DynamicFromObject(value)); -+ break; -+ case "scale": -+ mViewManager.setScale(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.java -new file mode 100644 -index 0000000..6dc6b3e ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.java -@@ -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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXImageManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setStretchX(T view, Dynamic value); -+ void setStretchY(T view, Dynamic value); -+ void setContent(T view, Dynamic value); -+ void setSdf(T view, Dynamic value); -+ void setName(T view, Dynamic value); -+ void setScale(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java -new file mode 100644 -index 0000000..a61516d ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java -@@ -0,0 +1,42 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXImageSourceManagerDelegate & RNMBXImageSourceManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXImageSourceManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "url": -+ mViewManager.setUrl(view, new DynamicFromObject(value)); -+ break; -+ case "coordinates": -+ mViewManager.setCoordinates(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.java -new file mode 100644 -index 0000000..ed521ac ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.java -@@ -0,0 +1,21 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXImageSourceManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setUrl(T view, Dynamic value); -+ void setCoordinates(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java -new file mode 100644 -index 0000000..0e45f93 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java -@@ -0,0 +1,39 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXImagesManagerDelegate & RNMBXImagesManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXImagesManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "images": -+ mViewManager.setImages(view, new DynamicFromObject(value)); -+ break; -+ case "nativeImages": -+ mViewManager.setNativeImages(view, new DynamicFromObject(value)); -+ break; -+ case "hasOnImageMissing": -+ mViewManager.setHasOnImageMissing(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.java -new file mode 100644 -index 0000000..3549554 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.java -@@ -0,0 +1,20 @@ -+/** -+* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+* -+* Do not edit this file as changes may cause incorrect behavior and will be lost -+* once the code is regenerated. -+* -+* @generated by codegen project: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXImagesManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setImages(T view, Dynamic value); -+ void setNativeImages(T view, Dynamic value); -+ void setHasOnImageMissing(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java -new file mode 100644 -index 0000000..2abdb45 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java -@@ -0,0 +1,33 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXLightManagerDelegate & RNMBXLightManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXLightManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.java -new file mode 100644 -index 0000000..7412e34 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.java -@@ -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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXLightManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.java -new file mode 100644 -index 0000000..8d57d8b ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXLineLayerManagerDelegate & RNMBXLineLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXLineLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "sourceLayerID": -+ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "slot": -+ mViewManager.setSlot(view, new DynamicFromObject(value)); -+ break; -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.java -new file mode 100644 -index 0000000..5d61ef8 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.java -@@ -0,0 +1,29 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXLineLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setSourceLayerID(T view, Dynamic value); -+ void setSlot(T view, Dynamic value); -+ void setId(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java -new file mode 100644 -index 0000000..e4f15e4 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java -@@ -0,0 +1,111 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXMapViewManagerDelegate & RNMBXMapViewManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXMapViewManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "attributionEnabled": -+ mViewManager.setAttributionEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "attributionPosition": -+ mViewManager.setAttributionPosition(view, new DynamicFromObject(value)); -+ break; -+ case "logoEnabled": -+ mViewManager.setLogoEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "logoPosition": -+ mViewManager.setLogoPosition(view, new DynamicFromObject(value)); -+ break; -+ case "compassEnabled": -+ mViewManager.setCompassEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "compassFadeWhenNorth": -+ mViewManager.setCompassFadeWhenNorth(view, new DynamicFromObject(value)); -+ break; -+ case "compassPosition": -+ mViewManager.setCompassPosition(view, new DynamicFromObject(value)); -+ break; -+ case "compassViewPosition": -+ mViewManager.setCompassViewPosition(view, new DynamicFromObject(value)); -+ break; -+ case "compassViewMargins": -+ mViewManager.setCompassViewMargins(view, new DynamicFromObject(value)); -+ break; -+ case "scaleBarEnabled": -+ mViewManager.setScaleBarEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "scaleBarPosition": -+ mViewManager.setScaleBarPosition(view, new DynamicFromObject(value)); -+ break; -+ case "zoomEnabled": -+ mViewManager.setZoomEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "scrollEnabled": -+ mViewManager.setScrollEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "rotateEnabled": -+ mViewManager.setRotateEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "pitchEnabled": -+ mViewManager.setPitchEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "deselectAnnotationOnTap": -+ mViewManager.setDeselectAnnotationOnTap(view, new DynamicFromObject(value)); -+ break; -+ case "requestDisallowInterceptTouchEvent": -+ mViewManager.setRequestDisallowInterceptTouchEvent(view, new DynamicFromObject(value)); -+ break; -+ case "projection": -+ mViewManager.setProjection(view, new DynamicFromObject(value)); -+ break; -+ case "localizeLabels": -+ mViewManager.setLocalizeLabels(view, new DynamicFromObject(value)); -+ break; -+ case "styleURL": -+ mViewManager.setStyleURL(view, new DynamicFromObject(value)); -+ break; -+ case "gestureSettings": -+ mViewManager.setGestureSettings(view, new DynamicFromObject(value)); -+ break; -+ case "surfaceView": -+ mViewManager.setSurfaceView(view, new DynamicFromObject(value)); -+ break; -+ case "scaleBarViewMargins": -+ mViewManager.setScaleBarViewMargins(view, new DynamicFromObject(value)); -+ break; -+ case "attributionViewMargins": -+ mViewManager.setAttributionViewMargins(view, new DynamicFromObject(value)); -+ break; -+ case "attributionViewPosition": -+ mViewManager.setAttributionViewPosition(view, new DynamicFromObject(value)); -+ break; -+ case "compassImage": -+ mViewManager.setCompassImage(view, new DynamicFromObject(value)); -+ break; -+ case "mapViewImpl": -+ mViewManager.setMapViewImpl(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.java -new file mode 100644 -index 0000000..dd21b48 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.java -@@ -0,0 +1,44 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXMapViewManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setAttributionEnabled(T view, Dynamic value); -+ void setAttributionPosition(T view, Dynamic value); -+ void setLogoEnabled(T view, Dynamic value); -+ void setLogoPosition(T view, Dynamic value); -+ void setCompassEnabled(T view, Dynamic value); -+ void setCompassFadeWhenNorth(T view, Dynamic value); -+ void setCompassPosition(T view, Dynamic value); -+ void setCompassViewPosition(T view, Dynamic value); -+ void setCompassViewMargins(T view, Dynamic value); -+ void setScaleBarEnabled(T view, Dynamic value); -+ void setScaleBarPosition(T view, Dynamic value); -+ void setZoomEnabled(T view, Dynamic value); -+ void setScrollEnabled(T view, Dynamic value); -+ void setRotateEnabled(T view, Dynamic value); -+ void setPitchEnabled(T view, Dynamic value); -+ void setDeselectAnnotationOnTap(T view, Dynamic value); -+ void setRequestDisallowInterceptTouchEvent(T view, Dynamic value); -+ void setProjection(T view, Dynamic value); -+ void setLocalizeLabels(T view, Dynamic value); -+ void setStyleURL(T view, Dynamic value); -+ void setGestureSettings(T view, Dynamic value); -+ void setSurfaceView(T view, Dynamic value); -+ void setScaleBarViewMargins(T view, Dynamic value); -+ void setAttributionViewMargins(T view, Dynamic value); -+ void setAttributionViewPosition(T view, Dynamic value); -+ void setCompassImage(T view, Dynamic value); -+ void setMapViewImpl(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.java -new file mode 100644 -index 0000000..0b53e6e ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.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 RNMBXMarkerViewContentManagerDelegate & RNMBXMarkerViewContentManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXMarkerViewContentManagerDelegate(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/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.java -new file mode 100644 -index 0000000..15a4c51 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.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 RNMBXMarkerViewContentManagerInterface extends ViewManagerWithGeneratedInterface { -+ // No props -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java -new file mode 100644 -index 0000000..1901060 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java -@@ -0,0 +1,45 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXMarkerViewManagerDelegate & RNMBXMarkerViewManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXMarkerViewManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "coordinate": -+ mViewManager.setCoordinate(view, new DynamicFromObject(value)); -+ break; -+ case "anchor": -+ mViewManager.setAnchor(view, new DynamicFromObject(value)); -+ break; -+ case "allowOverlap": -+ mViewManager.setAllowOverlap(view, new DynamicFromObject(value)); -+ break; -+ case "allowOverlapWithPuck": -+ mViewManager.setAllowOverlapWithPuck(view, new DynamicFromObject(value)); -+ break; -+ case "isSelected": -+ mViewManager.setIsSelected(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.java -new file mode 100644 -index 0000000..d116d69 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.java -@@ -0,0 +1,22 @@ -+/** -+* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+* -+* Do not edit this file as changes may cause incorrect behavior and will be lost -+* once the code is regenerated. -+* -+* @generated by codegen project: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXMarkerViewManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setCoordinate(T view, Dynamic value); -+ void setAnchor(T view, Dynamic value); -+ void setAllowOverlap(T view, Dynamic value); -+ void setAllowOverlapWithPuck(T view, Dynamic value); -+ void setIsSelected(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.java -new file mode 100644 -index 0000000..ffb987d ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXModelLayerManagerDelegate & RNMBXModelLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXModelLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "sourceLayerID": -+ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "slot": -+ mViewManager.setSlot(view, new DynamicFromObject(value)); -+ break; -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.java -new file mode 100644 -index 0000000..da992aa ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.java -@@ -0,0 +1,29 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXModelLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setSourceLayerID(T view, Dynamic value); -+ void setSlot(T view, Dynamic value); -+ void setId(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java -new file mode 100644 -index 0000000..9d0c149 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java -@@ -0,0 +1,33 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXModelsManagerDelegate & RNMBXModelsManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXModelsManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "models": -+ mViewManager.setModels(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.java -new file mode 100644 -index 0000000..2888f2d ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.java -@@ -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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXModelsManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setModels(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java -new file mode 100644 -index 0000000..35caed4 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java -@@ -0,0 +1,57 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXNativeUserLocationManagerDelegate & RNMBXNativeUserLocationManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXNativeUserLocationManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "androidRenderMode": -+ mViewManager.setAndroidRenderMode(view, new DynamicFromObject(value)); -+ break; -+ case "puckBearing": -+ mViewManager.setPuckBearing(view, new DynamicFromObject(value)); -+ break; -+ case "puckBearingEnabled": -+ mViewManager.setPuckBearingEnabled(view, new DynamicFromObject(value)); -+ break; -+ case "bearingImage": -+ mViewManager.setBearingImage(view, new DynamicFromObject(value)); -+ break; -+ case "shadowImage": -+ mViewManager.setShadowImage(view, new DynamicFromObject(value)); -+ break; -+ case "topImage": -+ mViewManager.setTopImage(view, new DynamicFromObject(value)); -+ break; -+ case "scale": -+ mViewManager.setScale(view, new DynamicFromObject(value)); -+ break; -+ case "visible": -+ mViewManager.setVisible(view, value == null ? false : (boolean) value); -+ break; -+ case "pulsing": -+ mViewManager.setPulsing(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.java -new file mode 100644 -index 0000000..0ef212d ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXNativeUserLocationManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setAndroidRenderMode(T view, Dynamic value); -+ void setPuckBearing(T view, Dynamic value); -+ void setPuckBearingEnabled(T view, Dynamic value); -+ void setBearingImage(T view, Dynamic value); -+ void setShadowImage(T view, Dynamic value); -+ void setTopImage(T view, Dynamic value); -+ void setScale(T view, Dynamic value); -+ void setVisible(T view, boolean value); -+ void setPulsing(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java -new file mode 100644 -index 0000000..950dc3b ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java -@@ -0,0 +1,42 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXPointAnnotationManagerDelegate & RNMBXPointAnnotationManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXPointAnnotationManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "coordinate": -+ mViewManager.setCoordinate(view, new DynamicFromObject(value)); -+ break; -+ case "draggable": -+ mViewManager.setDraggable(view, new DynamicFromObject(value)); -+ break; -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "anchor": -+ mViewManager.setAnchor(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.java -new file mode 100644 -index 0000000..2cceb2f ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.java -@@ -0,0 +1,21 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXPointAnnotationManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setCoordinate(T view, Dynamic value); -+ void setDraggable(T view, Dynamic value); -+ void setId(T view, Dynamic value); -+ void setAnchor(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java -new file mode 100644 -index 0000000..5fac0a3 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java -@@ -0,0 +1,51 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXRasterDemSourceManagerDelegate & RNMBXRasterDemSourceManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXRasterDemSourceManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "url": -+ mViewManager.setUrl(view, new DynamicFromObject(value)); -+ break; -+ case "tileUrlTemplates": -+ mViewManager.setTileUrlTemplates(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "tileSize": -+ mViewManager.setTileSize(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.java -new file mode 100644 -index 0000000..3e19ea1 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.java -@@ -0,0 +1,24 @@ -+/** -+* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+* -+* Do not edit this file as changes may cause incorrect behavior and will be lost -+* once the code is regenerated. -+* -+* @generated by codegen project: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXRasterDemSourceManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setUrl(T view, Dynamic value); -+ void setTileUrlTemplates(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setTileSize(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.java -new file mode 100644 -index 0000000..80776b6 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXRasterLayerManagerDelegate & RNMBXRasterLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXRasterLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "sourceLayerID": -+ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "slot": -+ mViewManager.setSlot(view, new DynamicFromObject(value)); -+ break; -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.java -new file mode 100644 -index 0000000..b992efa ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.java -@@ -0,0 +1,29 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXRasterLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setSourceLayerID(T view, Dynamic value); -+ void setSlot(T view, Dynamic value); -+ void setId(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java -new file mode 100644 -index 0000000..c9fbe12 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java -@@ -0,0 +1,57 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXRasterSourceManagerDelegate & RNMBXRasterSourceManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXRasterSourceManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "url": -+ mViewManager.setUrl(view, new DynamicFromObject(value)); -+ break; -+ case "tileUrlTemplates": -+ mViewManager.setTileUrlTemplates(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "tileSize": -+ mViewManager.setTileSize(view, new DynamicFromObject(value)); -+ break; -+ case "tms": -+ mViewManager.setTms(view, new DynamicFromObject(value)); -+ break; -+ case "attribution": -+ mViewManager.setAttribution(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.java -new file mode 100644 -index 0000000..4c021bd ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXRasterSourceManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setUrl(T view, Dynamic value); -+ void setTileUrlTemplates(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setTileSize(T view, Dynamic value); -+ void setTms(T view, Dynamic value); -+ void setAttribution(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java -new file mode 100644 -index 0000000..c780e69 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java -@@ -0,0 +1,72 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXShapeSourceManagerDelegate & RNMBXShapeSourceManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXShapeSourceManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "url": -+ mViewManager.setUrl(view, new DynamicFromObject(value)); -+ break; -+ case "shape": -+ mViewManager.setShape(view, new DynamicFromObject(value)); -+ break; -+ case "cluster": -+ mViewManager.setCluster(view, new DynamicFromObject(value)); -+ break; -+ case "clusterRadius": -+ mViewManager.setClusterRadius(view, new DynamicFromObject(value)); -+ break; -+ case "clusterMaxZoomLevel": -+ mViewManager.setClusterMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "clusterProperties": -+ mViewManager.setClusterProperties(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "buffer": -+ mViewManager.setBuffer(view, new DynamicFromObject(value)); -+ break; -+ case "tolerance": -+ mViewManager.setTolerance(view, new DynamicFromObject(value)); -+ break; -+ case "lineMetrics": -+ mViewManager.setLineMetrics(view, new DynamicFromObject(value)); -+ break; -+ case "hasPressListener": -+ mViewManager.setHasPressListener(view, new DynamicFromObject(value)); -+ break; -+ case "hitbox": -+ mViewManager.setHitbox(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.java -new file mode 100644 -index 0000000..6a15c2b ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.java -@@ -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: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXShapeSourceManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setUrl(T view, Dynamic value); -+ void setShape(T view, Dynamic value); -+ void setCluster(T view, Dynamic value); -+ void setClusterRadius(T view, Dynamic value); -+ void setClusterMaxZoomLevel(T view, Dynamic value); -+ void setClusterProperties(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setBuffer(T view, Dynamic value); -+ void setTolerance(T view, Dynamic value); -+ void setLineMetrics(T view, Dynamic value); -+ void setHasPressListener(T view, Dynamic value); -+ void setHitbox(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.java -new file mode 100644 -index 0000000..2cda3e9 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXSkyLayerManagerDelegate & RNMBXSkyLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXSkyLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.java -new file mode 100644 -index 0000000..3f42220 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.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 com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXSkyLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, Dynamic value); -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java -new file mode 100644 -index 0000000..d6eaf98 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java -@@ -0,0 +1,39 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXStyleImportManagerDelegate & RNMBXStyleImportManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXStyleImportManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, value == null ? null : (String) value); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, value == null ? false : (boolean) value); -+ break; -+ case "config": -+ mViewManager.setConfig(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.java -new file mode 100644 -index 0000000..323c65a ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.java -@@ -0,0 +1,21 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXStyleImportManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, @Nullable String value); -+ void setExisting(T view, boolean value); -+ void setConfig(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.java -new file mode 100644 -index 0000000..ca81653 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.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: GeneratePropsJavaDelegate.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXSymbolLayerManagerDelegate & RNMBXSymbolLayerManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXSymbolLayerManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "filter": -+ mViewManager.setFilter(view, new DynamicFromObject(value)); -+ break; -+ case "aboveLayerID": -+ mViewManager.setAboveLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "belowLayerID": -+ mViewManager.setBelowLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "layerIndex": -+ mViewManager.setLayerIndex(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "sourceLayerID": -+ mViewManager.setSourceLayerID(view, new DynamicFromObject(value)); -+ break; -+ case "slot": -+ mViewManager.setSlot(view, new DynamicFromObject(value)); -+ break; -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.java -new file mode 100644 -index 0000000..fa2b754 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.java -@@ -0,0 +1,29 @@ -+/** -+* 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.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXSymbolLayerManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setSourceID(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setFilter(T view, Dynamic value); -+ void setAboveLayerID(T view, Dynamic value); -+ void setBelowLayerID(T view, Dynamic value); -+ void setLayerIndex(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setSourceLayerID(T view, Dynamic value); -+ void setSlot(T view, Dynamic value); -+ void setId(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java -new file mode 100644 -index 0000000..89a55a8 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java -@@ -0,0 +1,36 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXTerrainManagerDelegate & RNMBXTerrainManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXTerrainManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "sourceID": -+ mViewManager.setSourceID(view, new DynamicFromObject(value)); -+ break; -+ case "reactStyle": -+ mViewManager.setReactStyle(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.java -new file mode 100644 -index 0000000..f23b719 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.java -@@ -0,0 +1,19 @@ -+/** -+* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+* -+* Do not edit this file as changes may cause incorrect behavior and will be lost -+* once the code is regenerated. -+* -+* @generated by codegen project: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXTerrainManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setSourceID(T view, Dynamic value); -+ void setReactStyle(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java -new file mode 100644 -index 0000000..7252671 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXVectorSourceManagerDelegate & RNMBXVectorSourceManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXVectorSourceManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "id": -+ mViewManager.setId(view, new DynamicFromObject(value)); -+ break; -+ case "existing": -+ mViewManager.setExisting(view, new DynamicFromObject(value)); -+ break; -+ case "url": -+ mViewManager.setUrl(view, new DynamicFromObject(value)); -+ break; -+ case "tileUrlTemplates": -+ mViewManager.setTileUrlTemplates(view, new DynamicFromObject(value)); -+ break; -+ case "attribution": -+ mViewManager.setAttribution(view, new DynamicFromObject(value)); -+ break; -+ case "maxZoomLevel": -+ mViewManager.setMaxZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "minZoomLevel": -+ mViewManager.setMinZoomLevel(view, new DynamicFromObject(value)); -+ break; -+ case "tms": -+ mViewManager.setTms(view, new DynamicFromObject(value)); -+ break; -+ case "hasPressListener": -+ mViewManager.setHasPressListener(view, new DynamicFromObject(value)); -+ break; -+ case "hitbox": -+ mViewManager.setHitbox(view, new DynamicFromObject(value)); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.java -new file mode 100644 -index 0000000..739c6cd ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.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 com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXVectorSourceManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setId(T view, Dynamic value); -+ void setExisting(T view, Dynamic value); -+ void setUrl(T view, Dynamic value); -+ void setTileUrlTemplates(T view, Dynamic value); -+ void setAttribution(T view, Dynamic value); -+ void setMaxZoomLevel(T view, Dynamic value); -+ void setMinZoomLevel(T view, Dynamic value); -+ void setTms(T view, Dynamic value); -+ void setHasPressListener(T view, Dynamic value); -+ void setHitbox(T view, Dynamic value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java -new file mode 100644 -index 0000000..c652f46 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java -@@ -0,0 +1,36 @@ -+/** -+* 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.DynamicFromObject; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNMBXViewportManagerDelegate & RNMBXViewportManagerInterface> extends BaseViewManagerDelegate { -+ public RNMBXViewportManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "transitionsToIdleUponUserInteraction": -+ mViewManager.setTransitionsToIdleUponUserInteraction(view, new DynamicFromObject(value)); -+ break; -+ case "hasStatusChanged": -+ mViewManager.setHasStatusChanged(view, value == null ? false : (boolean) value); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.java -new file mode 100644 -index 0000000..408680e ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.java -@@ -0,0 +1,19 @@ -+/** -+* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+* -+* Do not edit this file as changes may cause incorrect behavior and will be lost -+* once the code is regenerated. -+* -+* @generated by codegen project: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import com.facebook.react.bridge.Dynamic; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface RNMBXViewportManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setTransitionsToIdleUponUserInteraction(T view, Dynamic value); -+ void setHasStatusChanged(T view, boolean value); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.java -new file mode 100644 -index 0000000..8050413 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.java -@@ -0,0 +1,88 @@ -+ -+/** -+ * 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.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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.bridge.ReadableArray; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+import javax.annotation.Nullable; -+ -+public abstract class NativeMapViewModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXMapViewModule"; -+ -+ public NativeMapViewModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void takeSnap(@Nullable Double viewRef, boolean writeToDisk, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void queryTerrainElevation(@Nullable Double viewRef, ReadableArray coordinates, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void setSourceVisibility(@Nullable Double viewRef, boolean visible, String sourceId, String sourceLayerId, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getCenter(@Nullable Double viewRef, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getCoordinateFromView(@Nullable Double viewRef, ReadableArray atPoint, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getPointInView(@Nullable Double viewRef, ReadableArray atCoordinate, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getZoom(@Nullable Double viewRef, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getVisibleBounds(@Nullable Double viewRef, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void queryRenderedFeaturesAtPoint(@Nullable Double viewRef, ReadableArray atPoint, ReadableArray withFilter, ReadableArray withLayerIDs, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void queryRenderedFeaturesInRect(@Nullable Double viewRef, ReadableArray withBBox, ReadableArray withFilter, ReadableArray withLayerIDs, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void setHandledMapChangedEvents(@Nullable Double viewRef, ReadableArray events, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void clearData(@Nullable Double viewRef, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void querySourceFeatures(@Nullable Double viewRef, String sourceId, ReadableArray withFilter, ReadableArray withSourceLayerIDs, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.java -new file mode 100644 -index 0000000..a8cd0e8 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.java -@@ -0,0 +1,40 @@ -+ -+/** -+ * 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.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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.bridge.ReadableMap; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+import javax.annotation.Nullable; -+ -+public abstract class NativeRNMBXCameraModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXCameraModule"; -+ -+ public NativeRNMBXCameraModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void updateCameraStop(@Nullable Double viewRef, ReadableMap stop, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.java -new file mode 100644 -index 0000000..7bc5fbc ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.java -@@ -0,0 +1,51 @@ -+ -+/** -+ * 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.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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.bridge.ReadableArray; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+ -+public abstract class NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXChangeLineOffsetsShapeAnimatorModule"; -+ -+ public NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void create(double tag, ReadableArray coordinates, double startOffset, double endOffset, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void setLineString(double tag, ReadableArray coordinates, double startOffset, double endOffset, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void setStartOffset(double tag, double offset, double duration, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void setEndOffset(double tag, double offset, double duration, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.java -new file mode 100644 -index 0000000..942ea74 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.java -@@ -0,0 +1,39 @@ -+ -+/** -+ * 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.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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; -+import javax.annotation.Nonnull; -+import javax.annotation.Nullable; -+ -+public abstract class NativeRNMBXImageModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXImageModule"; -+ -+ public NativeRNMBXImageModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void refresh(@Nullable Double viewRef, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.java -new file mode 100644 -index 0000000..944e0fc ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.java -@@ -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: GenerateModuleJavaSpec.js -+ * -+ * @nolint -+ */ -+ -+package com.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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.bridge.ReadableArray; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+ -+public abstract class NativeRNMBXMovePointShapeAnimatorModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXMovePointShapeAnimatorModule"; -+ -+ public NativeRNMBXMovePointShapeAnimatorModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void create(double tag, ReadableArray coordinate, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void moveTo(double tag, ReadableArray coordinate, double duration, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.java -new file mode 100644 -index 0000000..195a10a ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.java -@@ -0,0 +1,39 @@ -+ -+/** -+ * 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.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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; -+import javax.annotation.Nonnull; -+import javax.annotation.Nullable; -+ -+public abstract class NativeRNMBXPointAnnotationModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXPointAnnotationModule"; -+ -+ public NativeRNMBXPointAnnotationModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void refresh(@Nullable Double viewRef, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.java -new file mode 100644 -index 0000000..4b7bc27 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.java -@@ -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: GenerateModuleJavaSpec.js -+ * -+ * @nolint -+ */ -+ -+package com.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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; -+import javax.annotation.Nonnull; -+import javax.annotation.Nullable; -+ -+public abstract class NativeRNMBXShapeSourceModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXShapeSourceModule"; -+ -+ public NativeRNMBXShapeSourceModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getClusterExpansionZoom(@Nullable Double viewRef, String featureJSON, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getClusterLeaves(@Nullable Double viewRef, String featureJSON, double number, double offset, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getClusterChildren(@Nullable Double viewRef, String featureJSON, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.java -new file mode 100644 -index 0000000..1153db1 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.java -@@ -0,0 +1,44 @@ -+ -+/** -+ * 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.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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.bridge.ReadableMap; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+import javax.annotation.Nullable; -+ -+public abstract class NativeRNMBXTileStoreModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXTileStoreModule"; -+ -+ public NativeRNMBXTileStoreModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void shared(@Nullable String path, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void setOption(double tag, String key, String domain, ReadableMap value, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.java b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.java -new file mode 100644 -index 0000000..bdc8339 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/java/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.java -@@ -0,0 +1,48 @@ -+ -+/** -+ * 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.rnmapbox.rnmbx; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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.bridge.ReadableMap; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+import javax.annotation.Nullable; -+ -+public abstract class NativeRNMBXViewportModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "RNMBXViewportModule"; -+ -+ public NativeRNMBXViewportModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void getState(@Nullable Double viewRef, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void transitionTo(@Nullable Double viewRef, ReadableMap state, ReadableMap transition, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void idle(@Nullable Double viewRef, Promise promise); -+} -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/CMakeLists.txt -new file mode 100644 -index 0000000..6fae723 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/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/rnmapbox_maps_specs/*.cpp) -+ -+add_library( -+ react_codegen_rnmapbox_maps_specs -+ OBJECT -+ ${react_codegen_SRCS} -+) -+ -+target_include_directories(react_codegen_rnmapbox_maps_specs PUBLIC . react/renderer/components/rnmapbox_maps_specs) -+ -+target_link_libraries( -+ react_codegen_rnmapbox_maps_specs -+ 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_rnmapbox_maps_specs -+ PRIVATE -+ -DLOG_TAG=\"ReactNative\" -+ -fexceptions -+ -frtti -+ -std=c++20 -+ -Wall -+) -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.cpp -new file mode 100644 -index 0000000..6247dea ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.cpp -@@ -0,0 +1,52 @@ -+ -+/** -+ * 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 rnmapbox_maps_specs_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry) { -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+registry->add(concreteComponentDescriptorProvider()); -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.h -new file mode 100644 -index 0000000..f230725 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ComponentDescriptors.h -@@ -0,0 +1,54 @@ -+ -+/** -+ * 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 RNMBXAtmosphereComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXBackgroundLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXCalloutComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXCameraComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXCircleLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXCustomLocationProviderComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXFillExtrusionLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXFillLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXHeatmapLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXImageComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXImagesComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXImageSourceComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXLightComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXLineLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXMapViewComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXMarkerViewContentComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXMarkerViewComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXModelLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXModelsComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXNativeUserLocationComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXPointAnnotationComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXRasterDemSourceComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXRasterLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXRasterSourceComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXShapeSourceComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXSkyLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXStyleImportComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXSymbolLayerComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXTerrainComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXVectorSourceComponentDescriptor = ConcreteComponentDescriptor; -+using RNMBXViewportComponentDescriptor = ConcreteComponentDescriptor; -+ -+void rnmapbox_maps_specs_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry); -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.cpp -new file mode 100644 -index 0000000..aa2f936 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.cpp -@@ -0,0 +1,188 @@ -+ -+/** -+ * 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 { -+ -+ -+ -+ -+void RNMBXCameraEventEmitter::onUserTrackingModeChange(OnUserTrackingModeChange $event) const { -+ dispatchEvent("userTrackingModeChange", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+{ -+ auto payloadRenamed = jsi::Object(runtime); -+ payloadRenamed.setProperty(runtime, "followUserLocation", $event.payloadRenamed.followUserLocation); -+ payloadRenamed.setProperty(runtime, "followUserMode", $event.payloadRenamed.followUserMode); -+ $payload.setProperty(runtime, "payloadRenamed", payloadRenamed); -+} -+ return $payload; -+ }); -+} -+ -+ -+ -+ -+ -+ -+ -+ -+void RNMBXImagesEventEmitter::onImageMissing(OnImageMissing $event) const { -+ dispatchEvent("imageMissing", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+{ -+ auto payload = jsi::Object(runtime); -+ payload.setProperty(runtime, "imageKey", $event.payload.imageKey); -+ $payload.setProperty(runtime, "payload", payload); -+} -+ return $payload; -+ }); -+} -+ -+ -+ -+ -+ -+void RNMBXMapViewEventEmitter::onPress(OnPress $event) const { -+ dispatchEvent("press", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+void RNMBXMapViewEventEmitter::onLongPress(OnLongPress $event) const { -+ dispatchEvent("longPress", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+void RNMBXMapViewEventEmitter::onMapChange(OnMapChange $event) const { -+ dispatchEvent("mapChange", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+void RNMBXMapViewEventEmitter::onCameraChanged(OnCameraChanged $event) const { -+ dispatchEvent("cameraChanged", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+ -+ -+ -+ -+ -+void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationDeselected(OnMapboxPointAnnotationDeselected $event) const { -+ dispatchEvent("mapboxPointAnnotationDeselected", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationDrag(OnMapboxPointAnnotationDrag $event) const { -+ dispatchEvent("mapboxPointAnnotationDrag", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationDragEnd(OnMapboxPointAnnotationDragEnd $event) const { -+ dispatchEvent("mapboxPointAnnotationDragEnd", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationDragStart(OnMapboxPointAnnotationDragStart $event) const { -+ dispatchEvent("mapboxPointAnnotationDragStart", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+void RNMBXPointAnnotationEventEmitter::onMapboxPointAnnotationSelected(OnMapboxPointAnnotationSelected $event) const { -+ dispatchEvent("mapboxPointAnnotationSelected", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+ -+ -+ -+void RNMBXShapeSourceEventEmitter::onMapboxShapeSourcePress(OnMapboxShapeSourcePress $event) const { -+ dispatchEvent("mapboxShapeSourcePress", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+ -+ -+ -+ -+void RNMBXVectorSourceEventEmitter::onMapboxVectorSourcePress(OnMapboxVectorSourcePress $event) const { -+ dispatchEvent("mapboxVectorSourcePress", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+ -+void RNMBXViewportEventEmitter::onStatusChanged(OnStatusChanged $event) const { -+ dispatchEvent("statusChanged", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "type", $event.type); -+$payload.setProperty(runtime, "payload", $event.payload); -+ return $payload; -+ }); -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.h -new file mode 100644 -index 0000000..d554349 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/EventEmitters.h -@@ -0,0 +1,312 @@ -+ -+/** -+ * 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 RNMBXAtmosphereEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXBackgroundLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXCalloutEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXCameraEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ struct OnUserTrackingModeChangePayloadRenamed { -+ bool followUserLocation; -+ std::string followUserMode; -+ }; -+ -+ struct OnUserTrackingModeChange { -+ std::string type; -+ OnUserTrackingModeChangePayloadRenamed payloadRenamed; -+ }; -+ void onUserTrackingModeChange(OnUserTrackingModeChange value) const; -+}; -+class RNMBXCircleLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXCustomLocationProviderEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXFillExtrusionLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXFillLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXHeatmapLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXImageEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXImagesEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ struct OnImageMissingPayload { -+ std::string imageKey; -+ }; -+ -+ struct OnImageMissing { -+ std::string type; -+ OnImageMissingPayload payload; -+ }; -+ void onImageMissing(OnImageMissing value) const; -+}; -+class RNMBXImageSourceEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXLightEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXLineLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXMapViewEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ struct OnPress { -+ std::string type; -+ std::string payload; -+ }; -+ -+ struct OnLongPress { -+ std::string type; -+ std::string payload; -+ }; -+ -+ struct OnMapChange { -+ std::string type; -+ std::string payload; -+ }; -+ -+ struct OnCameraChanged { -+ std::string type; -+ std::string payload; -+ }; -+ void onPress(OnPress value) const; -+ -+ void onLongPress(OnLongPress value) const; -+ -+ void onMapChange(OnMapChange value) const; -+ -+ void onCameraChanged(OnCameraChanged value) const; -+}; -+class RNMBXMarkerViewContentEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXMarkerViewEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXModelLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXModelsEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXNativeUserLocationEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXPointAnnotationEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ struct OnMapboxPointAnnotationDeselected { -+ std::string type; -+ std::string payload; -+ }; -+ -+ struct OnMapboxPointAnnotationDrag { -+ std::string type; -+ std::string payload; -+ }; -+ -+ struct OnMapboxPointAnnotationDragEnd { -+ std::string type; -+ std::string payload; -+ }; -+ -+ struct OnMapboxPointAnnotationDragStart { -+ std::string type; -+ std::string payload; -+ }; -+ -+ struct OnMapboxPointAnnotationSelected { -+ std::string type; -+ std::string payload; -+ }; -+ void onMapboxPointAnnotationDeselected(OnMapboxPointAnnotationDeselected value) const; -+ -+ void onMapboxPointAnnotationDrag(OnMapboxPointAnnotationDrag value) const; -+ -+ void onMapboxPointAnnotationDragEnd(OnMapboxPointAnnotationDragEnd value) const; -+ -+ void onMapboxPointAnnotationDragStart(OnMapboxPointAnnotationDragStart value) const; -+ -+ void onMapboxPointAnnotationSelected(OnMapboxPointAnnotationSelected value) const; -+}; -+class RNMBXRasterDemSourceEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXRasterLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXRasterSourceEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXShapeSourceEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ struct OnMapboxShapeSourcePress { -+ std::string type; -+ std::string payload; -+ }; -+ void onMapboxShapeSourcePress(OnMapboxShapeSourcePress value) const; -+}; -+class RNMBXSkyLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXStyleImportEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXSymbolLayerEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXTerrainEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+class RNMBXVectorSourceEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ struct OnMapboxVectorSourcePress { -+ std::string type; -+ std::string payload; -+ }; -+ void onMapboxVectorSourcePress(OnMapboxVectorSourcePress value) const; -+}; -+class RNMBXViewportEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ struct OnStatusChanged { -+ std::string type; -+ std::string payload; -+ }; -+ void onStatusChanged(OnStatusChanged value) const; -+}; -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.cpp -new file mode 100644 -index 0000000..0da3a23 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.cpp -@@ -0,0 +1,447 @@ -+ -+/** -+ * 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 -+#include -+ -+namespace facebook::react { -+ -+RNMBXAtmosphereProps::RNMBXAtmosphereProps( -+ const PropsParserContext &context, -+ const RNMBXAtmosphereProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXBackgroundLayerProps::RNMBXBackgroundLayerProps( -+ const PropsParserContext &context, -+ const RNMBXBackgroundLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})) -+ {} -+RNMBXCalloutProps::RNMBXCalloutProps( -+ const PropsParserContext &context, -+ const RNMBXCalloutProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps) -+ -+ -+ {} -+RNMBXCameraProps::RNMBXCameraProps( -+ const PropsParserContext &context, -+ const RNMBXCameraProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ maxBounds(convertRawProp(context, rawProps, "maxBounds", sourceProps.maxBounds, {})), -+ animationDuration(convertRawProp(context, rawProps, "animationDuration", sourceProps.animationDuration, {})), -+ animationMode(convertRawProp(context, rawProps, "animationMode", sourceProps.animationMode, {})), -+ defaultStop(convertRawProp(context, rawProps, "defaultStop", sourceProps.defaultStop, {})), -+ userTrackingMode(convertRawProp(context, rawProps, "userTrackingMode", sourceProps.userTrackingMode, {})), -+ followUserLocation(convertRawProp(context, rawProps, "followUserLocation", sourceProps.followUserLocation, {})), -+ followUserMode(convertRawProp(context, rawProps, "followUserMode", sourceProps.followUserMode, {})), -+ followZoomLevel(convertRawProp(context, rawProps, "followZoomLevel", sourceProps.followZoomLevel, {})), -+ followPitch(convertRawProp(context, rawProps, "followPitch", sourceProps.followPitch, {})), -+ followHeading(convertRawProp(context, rawProps, "followHeading", sourceProps.followHeading, {})), -+ followPadding(convertRawProp(context, rawProps, "followPadding", sourceProps.followPadding, {})), -+ zoomLevel(convertRawProp(context, rawProps, "zoomLevel", sourceProps.zoomLevel, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ stop(convertRawProp(context, rawProps, "stop", sourceProps.stop, {})) -+ {} -+RNMBXCircleLayerProps::RNMBXCircleLayerProps( -+ const PropsParserContext &context, -+ const RNMBXCircleLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), -+ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXCustomLocationProviderProps::RNMBXCustomLocationProviderProps( -+ const PropsParserContext &context, -+ const RNMBXCustomLocationProviderProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ coordinate(convertRawProp(context, rawProps, "coordinate", sourceProps.coordinate, {})), -+ heading(convertRawProp(context, rawProps, "heading", sourceProps.heading, {})) -+ {} -+RNMBXFillExtrusionLayerProps::RNMBXFillExtrusionLayerProps( -+ const PropsParserContext &context, -+ const RNMBXFillExtrusionLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})) -+ {} -+RNMBXFillLayerProps::RNMBXFillLayerProps( -+ const PropsParserContext &context, -+ const RNMBXFillLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), -+ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXHeatmapLayerProps::RNMBXHeatmapLayerProps( -+ const PropsParserContext &context, -+ const RNMBXHeatmapLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), -+ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXImageProps::RNMBXImageProps( -+ const PropsParserContext &context, -+ const RNMBXImageProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ stretchX(convertRawProp(context, rawProps, "stretchX", sourceProps.stretchX, {})), -+ stretchY(convertRawProp(context, rawProps, "stretchY", sourceProps.stretchY, {})), -+ content(convertRawProp(context, rawProps, "content", sourceProps.content, {})), -+ sdf(convertRawProp(context, rawProps, "sdf", sourceProps.sdf, {})), -+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})), -+ scale(convertRawProp(context, rawProps, "scale", sourceProps.scale, {})) -+ {} -+RNMBXImagesProps::RNMBXImagesProps( -+ const PropsParserContext &context, -+ const RNMBXImagesProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ images(convertRawProp(context, rawProps, "images", sourceProps.images, {})), -+ nativeImages(convertRawProp(context, rawProps, "nativeImages", sourceProps.nativeImages, {})), -+ hasOnImageMissing(convertRawProp(context, rawProps, "hasOnImageMissing", sourceProps.hasOnImageMissing, {})) -+ {} -+RNMBXImageSourceProps::RNMBXImageSourceProps( -+ const PropsParserContext &context, -+ const RNMBXImageSourceProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), -+ coordinates(convertRawProp(context, rawProps, "coordinates", sourceProps.coordinates, {})) -+ {} -+RNMBXLightProps::RNMBXLightProps( -+ const PropsParserContext &context, -+ const RNMBXLightProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXLineLayerProps::RNMBXLineLayerProps( -+ const PropsParserContext &context, -+ const RNMBXLineLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), -+ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXMapViewProps::RNMBXMapViewProps( -+ const PropsParserContext &context, -+ const RNMBXMapViewProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ attributionEnabled(convertRawProp(context, rawProps, "attributionEnabled", sourceProps.attributionEnabled, {})), -+ attributionPosition(convertRawProp(context, rawProps, "attributionPosition", sourceProps.attributionPosition, {})), -+ logoEnabled(convertRawProp(context, rawProps, "logoEnabled", sourceProps.logoEnabled, {})), -+ logoPosition(convertRawProp(context, rawProps, "logoPosition", sourceProps.logoPosition, {})), -+ compassEnabled(convertRawProp(context, rawProps, "compassEnabled", sourceProps.compassEnabled, {})), -+ compassFadeWhenNorth(convertRawProp(context, rawProps, "compassFadeWhenNorth", sourceProps.compassFadeWhenNorth, {})), -+ compassPosition(convertRawProp(context, rawProps, "compassPosition", sourceProps.compassPosition, {})), -+ compassViewPosition(convertRawProp(context, rawProps, "compassViewPosition", sourceProps.compassViewPosition, {})), -+ compassViewMargins(convertRawProp(context, rawProps, "compassViewMargins", sourceProps.compassViewMargins, {})), -+ scaleBarEnabled(convertRawProp(context, rawProps, "scaleBarEnabled", sourceProps.scaleBarEnabled, {})), -+ scaleBarPosition(convertRawProp(context, rawProps, "scaleBarPosition", sourceProps.scaleBarPosition, {})), -+ zoomEnabled(convertRawProp(context, rawProps, "zoomEnabled", sourceProps.zoomEnabled, {})), -+ scrollEnabled(convertRawProp(context, rawProps, "scrollEnabled", sourceProps.scrollEnabled, {})), -+ rotateEnabled(convertRawProp(context, rawProps, "rotateEnabled", sourceProps.rotateEnabled, {})), -+ pitchEnabled(convertRawProp(context, rawProps, "pitchEnabled", sourceProps.pitchEnabled, {})), -+ deselectAnnotationOnTap(convertRawProp(context, rawProps, "deselectAnnotationOnTap", sourceProps.deselectAnnotationOnTap, {})), -+ requestDisallowInterceptTouchEvent(convertRawProp(context, rawProps, "requestDisallowInterceptTouchEvent", sourceProps.requestDisallowInterceptTouchEvent, {})), -+ projection(convertRawProp(context, rawProps, "projection", sourceProps.projection, {})), -+ localizeLabels(convertRawProp(context, rawProps, "localizeLabels", sourceProps.localizeLabels, {})), -+ styleURL(convertRawProp(context, rawProps, "styleURL", sourceProps.styleURL, {})), -+ gestureSettings(convertRawProp(context, rawProps, "gestureSettings", sourceProps.gestureSettings, {})), -+ surfaceView(convertRawProp(context, rawProps, "surfaceView", sourceProps.surfaceView, {})), -+ scaleBarViewMargins(convertRawProp(context, rawProps, "scaleBarViewMargins", sourceProps.scaleBarViewMargins, {})), -+ attributionViewMargins(convertRawProp(context, rawProps, "attributionViewMargins", sourceProps.attributionViewMargins, {})), -+ attributionViewPosition(convertRawProp(context, rawProps, "attributionViewPosition", sourceProps.attributionViewPosition, {})), -+ compassImage(convertRawProp(context, rawProps, "compassImage", sourceProps.compassImage, {})), -+ mapViewImpl(convertRawProp(context, rawProps, "mapViewImpl", sourceProps.mapViewImpl, {})) -+ {} -+RNMBXMarkerViewContentProps::RNMBXMarkerViewContentProps( -+ const PropsParserContext &context, -+ const RNMBXMarkerViewContentProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps) -+ -+ -+ {} -+RNMBXMarkerViewProps::RNMBXMarkerViewProps( -+ const PropsParserContext &context, -+ const RNMBXMarkerViewProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ coordinate(convertRawProp(context, rawProps, "coordinate", sourceProps.coordinate, {})), -+ anchor(convertRawProp(context, rawProps, "anchor", sourceProps.anchor, {})), -+ allowOverlap(convertRawProp(context, rawProps, "allowOverlap", sourceProps.allowOverlap, {})), -+ allowOverlapWithPuck(convertRawProp(context, rawProps, "allowOverlapWithPuck", sourceProps.allowOverlapWithPuck, {})), -+ isSelected(convertRawProp(context, rawProps, "isSelected", sourceProps.isSelected, {})) -+ {} -+RNMBXModelLayerProps::RNMBXModelLayerProps( -+ const PropsParserContext &context, -+ const RNMBXModelLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), -+ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXModelsProps::RNMBXModelsProps( -+ const PropsParserContext &context, -+ const RNMBXModelsProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ models(convertRawProp(context, rawProps, "models", sourceProps.models, {})) -+ {} -+RNMBXNativeUserLocationProps::RNMBXNativeUserLocationProps( -+ const PropsParserContext &context, -+ const RNMBXNativeUserLocationProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ androidRenderMode(convertRawProp(context, rawProps, "androidRenderMode", sourceProps.androidRenderMode, {})), -+ puckBearing(convertRawProp(context, rawProps, "puckBearing", sourceProps.puckBearing, {})), -+ puckBearingEnabled(convertRawProp(context, rawProps, "puckBearingEnabled", sourceProps.puckBearingEnabled, {})), -+ bearingImage(convertRawProp(context, rawProps, "bearingImage", sourceProps.bearingImage, {})), -+ shadowImage(convertRawProp(context, rawProps, "shadowImage", sourceProps.shadowImage, {})), -+ topImage(convertRawProp(context, rawProps, "topImage", sourceProps.topImage, {})), -+ scale(convertRawProp(context, rawProps, "scale", sourceProps.scale, {})), -+ visible(convertRawProp(context, rawProps, "visible", sourceProps.visible, {false})), -+ pulsing(convertRawProp(context, rawProps, "pulsing", sourceProps.pulsing, {})) -+ {} -+RNMBXPointAnnotationProps::RNMBXPointAnnotationProps( -+ const PropsParserContext &context, -+ const RNMBXPointAnnotationProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ coordinate(convertRawProp(context, rawProps, "coordinate", sourceProps.coordinate, {})), -+ draggable(convertRawProp(context, rawProps, "draggable", sourceProps.draggable, {})), -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ anchor(convertRawProp(context, rawProps, "anchor", sourceProps.anchor, {})) -+ {} -+RNMBXRasterDemSourceProps::RNMBXRasterDemSourceProps( -+ const PropsParserContext &context, -+ const RNMBXRasterDemSourceProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), -+ tileUrlTemplates(convertRawProp(context, rawProps, "tileUrlTemplates", sourceProps.tileUrlTemplates, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ tileSize(convertRawProp(context, rawProps, "tileSize", sourceProps.tileSize, {})) -+ {} -+RNMBXRasterLayerProps::RNMBXRasterLayerProps( -+ const PropsParserContext &context, -+ const RNMBXRasterLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), -+ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXRasterSourceProps::RNMBXRasterSourceProps( -+ const PropsParserContext &context, -+ const RNMBXRasterSourceProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), -+ tileUrlTemplates(convertRawProp(context, rawProps, "tileUrlTemplates", sourceProps.tileUrlTemplates, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ tileSize(convertRawProp(context, rawProps, "tileSize", sourceProps.tileSize, {})), -+ tms(convertRawProp(context, rawProps, "tms", sourceProps.tms, {})), -+ attribution(convertRawProp(context, rawProps, "attribution", sourceProps.attribution, {})) -+ {} -+RNMBXShapeSourceProps::RNMBXShapeSourceProps( -+ const PropsParserContext &context, -+ const RNMBXShapeSourceProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), -+ shape(convertRawProp(context, rawProps, "shape", sourceProps.shape, {})), -+ cluster(convertRawProp(context, rawProps, "cluster", sourceProps.cluster, {})), -+ clusterRadius(convertRawProp(context, rawProps, "clusterRadius", sourceProps.clusterRadius, {})), -+ clusterMaxZoomLevel(convertRawProp(context, rawProps, "clusterMaxZoomLevel", sourceProps.clusterMaxZoomLevel, {})), -+ clusterProperties(convertRawProp(context, rawProps, "clusterProperties", sourceProps.clusterProperties, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ buffer(convertRawProp(context, rawProps, "buffer", sourceProps.buffer, {})), -+ tolerance(convertRawProp(context, rawProps, "tolerance", sourceProps.tolerance, {})), -+ lineMetrics(convertRawProp(context, rawProps, "lineMetrics", sourceProps.lineMetrics, {})), -+ hasPressListener(convertRawProp(context, rawProps, "hasPressListener", sourceProps.hasPressListener, {})), -+ hitbox(convertRawProp(context, rawProps, "hitbox", sourceProps.hitbox, {})) -+ {} -+RNMBXSkyLayerProps::RNMBXSkyLayerProps( -+ const PropsParserContext &context, -+ const RNMBXSkyLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})) -+ {} -+RNMBXStyleImportProps::RNMBXStyleImportProps( -+ const PropsParserContext &context, -+ const RNMBXStyleImportProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {false})), -+ config(convertRawProp(context, rawProps, "config", sourceProps.config, {})) -+ {} -+RNMBXSymbolLayerProps::RNMBXSymbolLayerProps( -+ const PropsParserContext &context, -+ const RNMBXSymbolLayerProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})), -+ aboveLayerID(convertRawProp(context, rawProps, "aboveLayerID", sourceProps.aboveLayerID, {})), -+ belowLayerID(convertRawProp(context, rawProps, "belowLayerID", sourceProps.belowLayerID, {})), -+ layerIndex(convertRawProp(context, rawProps, "layerIndex", sourceProps.layerIndex, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ sourceLayerID(convertRawProp(context, rawProps, "sourceLayerID", sourceProps.sourceLayerID, {})), -+ slot(convertRawProp(context, rawProps, "slot", sourceProps.slot, {})), -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXTerrainProps::RNMBXTerrainProps( -+ const PropsParserContext &context, -+ const RNMBXTerrainProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ sourceID(convertRawProp(context, rawProps, "sourceID", sourceProps.sourceID, {})), -+ reactStyle(convertRawProp(context, rawProps, "reactStyle", sourceProps.reactStyle, {})) -+ {} -+RNMBXVectorSourceProps::RNMBXVectorSourceProps( -+ const PropsParserContext &context, -+ const RNMBXVectorSourceProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ id(convertRawProp(context, rawProps, "id", sourceProps.id, {})), -+ existing(convertRawProp(context, rawProps, "existing", sourceProps.existing, {})), -+ url(convertRawProp(context, rawProps, "url", sourceProps.url, {})), -+ tileUrlTemplates(convertRawProp(context, rawProps, "tileUrlTemplates", sourceProps.tileUrlTemplates, {})), -+ attribution(convertRawProp(context, rawProps, "attribution", sourceProps.attribution, {})), -+ maxZoomLevel(convertRawProp(context, rawProps, "maxZoomLevel", sourceProps.maxZoomLevel, {})), -+ minZoomLevel(convertRawProp(context, rawProps, "minZoomLevel", sourceProps.minZoomLevel, {})), -+ tms(convertRawProp(context, rawProps, "tms", sourceProps.tms, {})), -+ hasPressListener(convertRawProp(context, rawProps, "hasPressListener", sourceProps.hasPressListener, {})), -+ hitbox(convertRawProp(context, rawProps, "hitbox", sourceProps.hitbox, {})) -+ {} -+RNMBXViewportProps::RNMBXViewportProps( -+ const PropsParserContext &context, -+ const RNMBXViewportProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ transitionsToIdleUponUserInteraction(convertRawProp(context, rawProps, "transitionsToIdleUponUserInteraction", sourceProps.transitionsToIdleUponUserInteraction, {})), -+ hasStatusChanged(convertRawProp(context, rawProps, "hasStatusChanged", sourceProps.hasStatusChanged, {false})) -+ {} -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.h -new file mode 100644 -index 0000000..2ff30bd ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/Props.h -@@ -0,0 +1,538 @@ -+ -+/** -+ * 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 -+ -+namespace facebook::react { -+ -+class RNMBXAtmosphereProps final : public ViewProps { -+ public: -+ RNMBXAtmosphereProps() = default; -+ RNMBXAtmosphereProps(const PropsParserContext& context, const RNMBXAtmosphereProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXBackgroundLayerProps final : public ViewProps { -+ public: -+ RNMBXBackgroundLayerProps() = default; -+ RNMBXBackgroundLayerProps(const PropsParserContext& context, const RNMBXBackgroundLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic id{}; -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic reactStyle{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+}; -+ -+class RNMBXCalloutProps final : public ViewProps { -+ public: -+ RNMBXCalloutProps() = default; -+ RNMBXCalloutProps(const PropsParserContext& context, const RNMBXCalloutProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ -+}; -+ -+class RNMBXCameraProps final : public ViewProps { -+ public: -+ RNMBXCameraProps() = default; -+ RNMBXCameraProps(const PropsParserContext& context, const RNMBXCameraProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic maxBounds{}; -+ folly::dynamic animationDuration{}; -+ folly::dynamic animationMode{}; -+ folly::dynamic defaultStop{}; -+ folly::dynamic userTrackingMode{}; -+ folly::dynamic followUserLocation{}; -+ folly::dynamic followUserMode{}; -+ folly::dynamic followZoomLevel{}; -+ folly::dynamic followPitch{}; -+ folly::dynamic followHeading{}; -+ folly::dynamic followPadding{}; -+ folly::dynamic zoomLevel{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic stop{}; -+}; -+ -+class RNMBXCircleLayerProps final : public ViewProps { -+ public: -+ RNMBXCircleLayerProps() = default; -+ RNMBXCircleLayerProps(const PropsParserContext& context, const RNMBXCircleLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic sourceLayerID{}; -+ folly::dynamic slot{}; -+ folly::dynamic id{}; -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXCustomLocationProviderProps final : public ViewProps { -+ public: -+ RNMBXCustomLocationProviderProps() = default; -+ RNMBXCustomLocationProviderProps(const PropsParserContext& context, const RNMBXCustomLocationProviderProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic coordinate{}; -+ folly::dynamic heading{}; -+}; -+ -+class RNMBXFillExtrusionLayerProps final : public ViewProps { -+ public: -+ RNMBXFillExtrusionLayerProps() = default; -+ RNMBXFillExtrusionLayerProps(const PropsParserContext& context, const RNMBXFillExtrusionLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic id{}; -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic reactStyle{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic sourceLayerID{}; -+}; -+ -+class RNMBXFillLayerProps final : public ViewProps { -+ public: -+ RNMBXFillLayerProps() = default; -+ RNMBXFillLayerProps(const PropsParserContext& context, const RNMBXFillLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic sourceLayerID{}; -+ folly::dynamic slot{}; -+ folly::dynamic id{}; -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXHeatmapLayerProps final : public ViewProps { -+ public: -+ RNMBXHeatmapLayerProps() = default; -+ RNMBXHeatmapLayerProps(const PropsParserContext& context, const RNMBXHeatmapLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic sourceLayerID{}; -+ folly::dynamic slot{}; -+ folly::dynamic id{}; -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXImageProps final : public ViewProps { -+ public: -+ RNMBXImageProps() = default; -+ RNMBXImageProps(const PropsParserContext& context, const RNMBXImageProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic stretchX{}; -+ folly::dynamic stretchY{}; -+ folly::dynamic content{}; -+ folly::dynamic sdf{}; -+ folly::dynamic name{}; -+ folly::dynamic scale{}; -+}; -+ -+class RNMBXImagesProps final : public ViewProps { -+ public: -+ RNMBXImagesProps() = default; -+ RNMBXImagesProps(const PropsParserContext& context, const RNMBXImagesProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic images{}; -+ folly::dynamic nativeImages{}; -+ folly::dynamic hasOnImageMissing{}; -+}; -+ -+class RNMBXImageSourceProps final : public ViewProps { -+ public: -+ RNMBXImageSourceProps() = default; -+ RNMBXImageSourceProps(const PropsParserContext& context, const RNMBXImageSourceProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic id{}; -+ folly::dynamic existing{}; -+ folly::dynamic url{}; -+ folly::dynamic coordinates{}; -+}; -+ -+class RNMBXLightProps final : public ViewProps { -+ public: -+ RNMBXLightProps() = default; -+ RNMBXLightProps(const PropsParserContext& context, const RNMBXLightProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXLineLayerProps final : public ViewProps { -+ public: -+ RNMBXLineLayerProps() = default; -+ RNMBXLineLayerProps(const PropsParserContext& context, const RNMBXLineLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic sourceLayerID{}; -+ folly::dynamic slot{}; -+ folly::dynamic id{}; -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXMapViewProps final : public ViewProps { -+ public: -+ RNMBXMapViewProps() = default; -+ RNMBXMapViewProps(const PropsParserContext& context, const RNMBXMapViewProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic attributionEnabled{}; -+ folly::dynamic attributionPosition{}; -+ folly::dynamic logoEnabled{}; -+ folly::dynamic logoPosition{}; -+ folly::dynamic compassEnabled{}; -+ folly::dynamic compassFadeWhenNorth{}; -+ folly::dynamic compassPosition{}; -+ folly::dynamic compassViewPosition{}; -+ folly::dynamic compassViewMargins{}; -+ folly::dynamic scaleBarEnabled{}; -+ folly::dynamic scaleBarPosition{}; -+ folly::dynamic zoomEnabled{}; -+ folly::dynamic scrollEnabled{}; -+ folly::dynamic rotateEnabled{}; -+ folly::dynamic pitchEnabled{}; -+ folly::dynamic deselectAnnotationOnTap{}; -+ folly::dynamic requestDisallowInterceptTouchEvent{}; -+ folly::dynamic projection{}; -+ folly::dynamic localizeLabels{}; -+ folly::dynamic styleURL{}; -+ folly::dynamic gestureSettings{}; -+ folly::dynamic surfaceView{}; -+ folly::dynamic scaleBarViewMargins{}; -+ folly::dynamic attributionViewMargins{}; -+ folly::dynamic attributionViewPosition{}; -+ folly::dynamic compassImage{}; -+ folly::dynamic mapViewImpl{}; -+}; -+ -+class RNMBXMarkerViewContentProps final : public ViewProps { -+ public: -+ RNMBXMarkerViewContentProps() = default; -+ RNMBXMarkerViewContentProps(const PropsParserContext& context, const RNMBXMarkerViewContentProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ -+}; -+ -+class RNMBXMarkerViewProps final : public ViewProps { -+ public: -+ RNMBXMarkerViewProps() = default; -+ RNMBXMarkerViewProps(const PropsParserContext& context, const RNMBXMarkerViewProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic coordinate{}; -+ folly::dynamic anchor{}; -+ folly::dynamic allowOverlap{}; -+ folly::dynamic allowOverlapWithPuck{}; -+ folly::dynamic isSelected{}; -+}; -+ -+class RNMBXModelLayerProps final : public ViewProps { -+ public: -+ RNMBXModelLayerProps() = default; -+ RNMBXModelLayerProps(const PropsParserContext& context, const RNMBXModelLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic sourceLayerID{}; -+ folly::dynamic slot{}; -+ folly::dynamic id{}; -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXModelsProps final : public ViewProps { -+ public: -+ RNMBXModelsProps() = default; -+ RNMBXModelsProps(const PropsParserContext& context, const RNMBXModelsProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic models{}; -+}; -+ -+class RNMBXNativeUserLocationProps final : public ViewProps { -+ public: -+ RNMBXNativeUserLocationProps() = default; -+ RNMBXNativeUserLocationProps(const PropsParserContext& context, const RNMBXNativeUserLocationProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic androidRenderMode{}; -+ folly::dynamic puckBearing{}; -+ folly::dynamic puckBearingEnabled{}; -+ folly::dynamic bearingImage{}; -+ folly::dynamic shadowImage{}; -+ folly::dynamic topImage{}; -+ folly::dynamic scale{}; -+ bool visible{false}; -+ folly::dynamic pulsing{}; -+}; -+ -+class RNMBXPointAnnotationProps final : public ViewProps { -+ public: -+ RNMBXPointAnnotationProps() = default; -+ RNMBXPointAnnotationProps(const PropsParserContext& context, const RNMBXPointAnnotationProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic coordinate{}; -+ folly::dynamic draggable{}; -+ folly::dynamic id{}; -+ folly::dynamic anchor{}; -+}; -+ -+class RNMBXRasterDemSourceProps final : public ViewProps { -+ public: -+ RNMBXRasterDemSourceProps() = default; -+ RNMBXRasterDemSourceProps(const PropsParserContext& context, const RNMBXRasterDemSourceProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic id{}; -+ folly::dynamic existing{}; -+ folly::dynamic url{}; -+ folly::dynamic tileUrlTemplates{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic tileSize{}; -+}; -+ -+class RNMBXRasterLayerProps final : public ViewProps { -+ public: -+ RNMBXRasterLayerProps() = default; -+ RNMBXRasterLayerProps(const PropsParserContext& context, const RNMBXRasterLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic sourceLayerID{}; -+ folly::dynamic slot{}; -+ folly::dynamic id{}; -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXRasterSourceProps final : public ViewProps { -+ public: -+ RNMBXRasterSourceProps() = default; -+ RNMBXRasterSourceProps(const PropsParserContext& context, const RNMBXRasterSourceProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic id{}; -+ folly::dynamic existing{}; -+ folly::dynamic url{}; -+ folly::dynamic tileUrlTemplates{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic tileSize{}; -+ folly::dynamic tms{}; -+ folly::dynamic attribution{}; -+}; -+ -+class RNMBXShapeSourceProps final : public ViewProps { -+ public: -+ RNMBXShapeSourceProps() = default; -+ RNMBXShapeSourceProps(const PropsParserContext& context, const RNMBXShapeSourceProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic id{}; -+ folly::dynamic existing{}; -+ folly::dynamic url{}; -+ folly::dynamic shape{}; -+ folly::dynamic cluster{}; -+ folly::dynamic clusterRadius{}; -+ folly::dynamic clusterMaxZoomLevel{}; -+ folly::dynamic clusterProperties{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic buffer{}; -+ folly::dynamic tolerance{}; -+ folly::dynamic lineMetrics{}; -+ folly::dynamic hasPressListener{}; -+ folly::dynamic hitbox{}; -+}; -+ -+class RNMBXSkyLayerProps final : public ViewProps { -+ public: -+ RNMBXSkyLayerProps() = default; -+ RNMBXSkyLayerProps(const PropsParserContext& context, const RNMBXSkyLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic id{}; -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic reactStyle{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+}; -+ -+class RNMBXStyleImportProps final : public ViewProps { -+ public: -+ RNMBXStyleImportProps() = default; -+ RNMBXStyleImportProps(const PropsParserContext& context, const RNMBXStyleImportProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ std::string id{}; -+ bool existing{false}; -+ folly::dynamic config{}; -+}; -+ -+class RNMBXSymbolLayerProps final : public ViewProps { -+ public: -+ RNMBXSymbolLayerProps() = default; -+ RNMBXSymbolLayerProps(const PropsParserContext& context, const RNMBXSymbolLayerProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic sourceID{}; -+ folly::dynamic existing{}; -+ folly::dynamic filter{}; -+ folly::dynamic aboveLayerID{}; -+ folly::dynamic belowLayerID{}; -+ folly::dynamic layerIndex{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic sourceLayerID{}; -+ folly::dynamic slot{}; -+ folly::dynamic id{}; -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXTerrainProps final : public ViewProps { -+ public: -+ RNMBXTerrainProps() = default; -+ RNMBXTerrainProps(const PropsParserContext& context, const RNMBXTerrainProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic sourceID{}; -+ folly::dynamic reactStyle{}; -+}; -+ -+class RNMBXVectorSourceProps final : public ViewProps { -+ public: -+ RNMBXVectorSourceProps() = default; -+ RNMBXVectorSourceProps(const PropsParserContext& context, const RNMBXVectorSourceProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic id{}; -+ folly::dynamic existing{}; -+ folly::dynamic url{}; -+ folly::dynamic tileUrlTemplates{}; -+ folly::dynamic attribution{}; -+ folly::dynamic maxZoomLevel{}; -+ folly::dynamic minZoomLevel{}; -+ folly::dynamic tms{}; -+ folly::dynamic hasPressListener{}; -+ folly::dynamic hitbox{}; -+}; -+ -+class RNMBXViewportProps final : public ViewProps { -+ public: -+ RNMBXViewportProps() = default; -+ RNMBXViewportProps(const PropsParserContext& context, const RNMBXViewportProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ folly::dynamic transitionsToIdleUponUserInteraction{}; -+ bool hasStatusChanged{false}; -+}; -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.cpp -new file mode 100644 -index 0000000..a56a73c ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.cpp -@@ -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: GenerateShadowNodeCpp.js -+ */ -+ -+#include -+ -+namespace facebook::react { -+ -+extern const char RNMBXAtmosphereComponentName[] = "RNMBXAtmosphere"; -+extern const char RNMBXBackgroundLayerComponentName[] = "RNMBXBackgroundLayer"; -+extern const char RNMBXCalloutComponentName[] = "RNMBXCallout"; -+extern const char RNMBXCameraComponentName[] = "RNMBXCamera"; -+extern const char RNMBXCircleLayerComponentName[] = "RNMBXCircleLayer"; -+extern const char RNMBXCustomLocationProviderComponentName[] = "RNMBXCustomLocationProvider"; -+extern const char RNMBXFillExtrusionLayerComponentName[] = "RNMBXFillExtrusionLayer"; -+extern const char RNMBXFillLayerComponentName[] = "RNMBXFillLayer"; -+extern const char RNMBXHeatmapLayerComponentName[] = "RNMBXHeatmapLayer"; -+extern const char RNMBXImageComponentName[] = "RNMBXImage"; -+extern const char RNMBXImagesComponentName[] = "RNMBXImages"; -+extern const char RNMBXImageSourceComponentName[] = "RNMBXImageSource"; -+extern const char RNMBXLightComponentName[] = "RNMBXLight"; -+extern const char RNMBXLineLayerComponentName[] = "RNMBXLineLayer"; -+extern const char RNMBXMapViewComponentName[] = "RNMBXMapView"; -+extern const char RNMBXMarkerViewContentComponentName[] = "RNMBXMarkerViewContent"; -+extern const char RNMBXMarkerViewComponentName[] = "RNMBXMarkerView"; -+extern const char RNMBXModelLayerComponentName[] = "RNMBXModelLayer"; -+extern const char RNMBXModelsComponentName[] = "RNMBXModels"; -+extern const char RNMBXNativeUserLocationComponentName[] = "RNMBXNativeUserLocation"; -+extern const char RNMBXPointAnnotationComponentName[] = "RNMBXPointAnnotation"; -+extern const char RNMBXRasterDemSourceComponentName[] = "RNMBXRasterDemSource"; -+extern const char RNMBXRasterLayerComponentName[] = "RNMBXRasterLayer"; -+extern const char RNMBXRasterSourceComponentName[] = "RNMBXRasterSource"; -+extern const char RNMBXShapeSourceComponentName[] = "RNMBXShapeSource"; -+extern const char RNMBXSkyLayerComponentName[] = "RNMBXSkyLayer"; -+extern const char RNMBXStyleImportComponentName[] = "RNMBXStyleImport"; -+extern const char RNMBXSymbolLayerComponentName[] = "RNMBXSymbolLayer"; -+extern const char RNMBXTerrainComponentName[] = "RNMBXTerrain"; -+extern const char RNMBXVectorSourceComponentName[] = "RNMBXVectorSource"; -+extern const char RNMBXViewportComponentName[] = "RNMBXViewport"; -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.h -new file mode 100644 -index 0000000..573806c ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/ShadowNodes.h -@@ -0,0 +1,362 @@ -+ -+/** -+ * 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 RNMBXAtmosphereComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXAtmosphereShadowNode = ConcreteViewShadowNode< -+ RNMBXAtmosphereComponentName, -+ RNMBXAtmosphereProps, -+ RNMBXAtmosphereEventEmitter, -+ RNMBXAtmosphereState>; -+ -+JSI_EXPORT extern const char RNMBXBackgroundLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXBackgroundLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXBackgroundLayerComponentName, -+ RNMBXBackgroundLayerProps, -+ RNMBXBackgroundLayerEventEmitter, -+ RNMBXBackgroundLayerState>; -+ -+JSI_EXPORT extern const char RNMBXCalloutComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXCalloutShadowNode = ConcreteViewShadowNode< -+ RNMBXCalloutComponentName, -+ RNMBXCalloutProps, -+ RNMBXCalloutEventEmitter, -+ RNMBXCalloutState>; -+ -+JSI_EXPORT extern const char RNMBXCameraComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXCameraShadowNode = ConcreteViewShadowNode< -+ RNMBXCameraComponentName, -+ RNMBXCameraProps, -+ RNMBXCameraEventEmitter, -+ RNMBXCameraState>; -+ -+JSI_EXPORT extern const char RNMBXCircleLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXCircleLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXCircleLayerComponentName, -+ RNMBXCircleLayerProps, -+ RNMBXCircleLayerEventEmitter, -+ RNMBXCircleLayerState>; -+ -+JSI_EXPORT extern const char RNMBXCustomLocationProviderComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXCustomLocationProviderShadowNode = ConcreteViewShadowNode< -+ RNMBXCustomLocationProviderComponentName, -+ RNMBXCustomLocationProviderProps, -+ RNMBXCustomLocationProviderEventEmitter, -+ RNMBXCustomLocationProviderState>; -+ -+JSI_EXPORT extern const char RNMBXFillExtrusionLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXFillExtrusionLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXFillExtrusionLayerComponentName, -+ RNMBXFillExtrusionLayerProps, -+ RNMBXFillExtrusionLayerEventEmitter, -+ RNMBXFillExtrusionLayerState>; -+ -+JSI_EXPORT extern const char RNMBXFillLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXFillLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXFillLayerComponentName, -+ RNMBXFillLayerProps, -+ RNMBXFillLayerEventEmitter, -+ RNMBXFillLayerState>; -+ -+JSI_EXPORT extern const char RNMBXHeatmapLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXHeatmapLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXHeatmapLayerComponentName, -+ RNMBXHeatmapLayerProps, -+ RNMBXHeatmapLayerEventEmitter, -+ RNMBXHeatmapLayerState>; -+ -+JSI_EXPORT extern const char RNMBXImageComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXImageShadowNode = ConcreteViewShadowNode< -+ RNMBXImageComponentName, -+ RNMBXImageProps, -+ RNMBXImageEventEmitter, -+ RNMBXImageState>; -+ -+JSI_EXPORT extern const char RNMBXImagesComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXImagesShadowNode = ConcreteViewShadowNode< -+ RNMBXImagesComponentName, -+ RNMBXImagesProps, -+ RNMBXImagesEventEmitter, -+ RNMBXImagesState>; -+ -+JSI_EXPORT extern const char RNMBXImageSourceComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXImageSourceShadowNode = ConcreteViewShadowNode< -+ RNMBXImageSourceComponentName, -+ RNMBXImageSourceProps, -+ RNMBXImageSourceEventEmitter, -+ RNMBXImageSourceState>; -+ -+JSI_EXPORT extern const char RNMBXLightComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXLightShadowNode = ConcreteViewShadowNode< -+ RNMBXLightComponentName, -+ RNMBXLightProps, -+ RNMBXLightEventEmitter, -+ RNMBXLightState>; -+ -+JSI_EXPORT extern const char RNMBXLineLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXLineLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXLineLayerComponentName, -+ RNMBXLineLayerProps, -+ RNMBXLineLayerEventEmitter, -+ RNMBXLineLayerState>; -+ -+JSI_EXPORT extern const char RNMBXMapViewComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXMapViewShadowNode = ConcreteViewShadowNode< -+ RNMBXMapViewComponentName, -+ RNMBXMapViewProps, -+ RNMBXMapViewEventEmitter, -+ RNMBXMapViewState>; -+ -+JSI_EXPORT extern const char RNMBXMarkerViewContentComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXMarkerViewContentShadowNode = ConcreteViewShadowNode< -+ RNMBXMarkerViewContentComponentName, -+ RNMBXMarkerViewContentProps, -+ RNMBXMarkerViewContentEventEmitter, -+ RNMBXMarkerViewContentState>; -+ -+JSI_EXPORT extern const char RNMBXMarkerViewComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXMarkerViewShadowNode = ConcreteViewShadowNode< -+ RNMBXMarkerViewComponentName, -+ RNMBXMarkerViewProps, -+ RNMBXMarkerViewEventEmitter, -+ RNMBXMarkerViewState>; -+ -+JSI_EXPORT extern const char RNMBXModelLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXModelLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXModelLayerComponentName, -+ RNMBXModelLayerProps, -+ RNMBXModelLayerEventEmitter, -+ RNMBXModelLayerState>; -+ -+JSI_EXPORT extern const char RNMBXModelsComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXModelsShadowNode = ConcreteViewShadowNode< -+ RNMBXModelsComponentName, -+ RNMBXModelsProps, -+ RNMBXModelsEventEmitter, -+ RNMBXModelsState>; -+ -+JSI_EXPORT extern const char RNMBXNativeUserLocationComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXNativeUserLocationShadowNode = ConcreteViewShadowNode< -+ RNMBXNativeUserLocationComponentName, -+ RNMBXNativeUserLocationProps, -+ RNMBXNativeUserLocationEventEmitter, -+ RNMBXNativeUserLocationState>; -+ -+JSI_EXPORT extern const char RNMBXPointAnnotationComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXPointAnnotationShadowNode = ConcreteViewShadowNode< -+ RNMBXPointAnnotationComponentName, -+ RNMBXPointAnnotationProps, -+ RNMBXPointAnnotationEventEmitter, -+ RNMBXPointAnnotationState>; -+ -+JSI_EXPORT extern const char RNMBXRasterDemSourceComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXRasterDemSourceShadowNode = ConcreteViewShadowNode< -+ RNMBXRasterDemSourceComponentName, -+ RNMBXRasterDemSourceProps, -+ RNMBXRasterDemSourceEventEmitter, -+ RNMBXRasterDemSourceState>; -+ -+JSI_EXPORT extern const char RNMBXRasterLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXRasterLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXRasterLayerComponentName, -+ RNMBXRasterLayerProps, -+ RNMBXRasterLayerEventEmitter, -+ RNMBXRasterLayerState>; -+ -+JSI_EXPORT extern const char RNMBXRasterSourceComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXRasterSourceShadowNode = ConcreteViewShadowNode< -+ RNMBXRasterSourceComponentName, -+ RNMBXRasterSourceProps, -+ RNMBXRasterSourceEventEmitter, -+ RNMBXRasterSourceState>; -+ -+JSI_EXPORT extern const char RNMBXShapeSourceComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXShapeSourceShadowNode = ConcreteViewShadowNode< -+ RNMBXShapeSourceComponentName, -+ RNMBXShapeSourceProps, -+ RNMBXShapeSourceEventEmitter, -+ RNMBXShapeSourceState>; -+ -+JSI_EXPORT extern const char RNMBXSkyLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXSkyLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXSkyLayerComponentName, -+ RNMBXSkyLayerProps, -+ RNMBXSkyLayerEventEmitter, -+ RNMBXSkyLayerState>; -+ -+JSI_EXPORT extern const char RNMBXStyleImportComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXStyleImportShadowNode = ConcreteViewShadowNode< -+ RNMBXStyleImportComponentName, -+ RNMBXStyleImportProps, -+ RNMBXStyleImportEventEmitter, -+ RNMBXStyleImportState>; -+ -+JSI_EXPORT extern const char RNMBXSymbolLayerComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXSymbolLayerShadowNode = ConcreteViewShadowNode< -+ RNMBXSymbolLayerComponentName, -+ RNMBXSymbolLayerProps, -+ RNMBXSymbolLayerEventEmitter, -+ RNMBXSymbolLayerState>; -+ -+JSI_EXPORT extern const char RNMBXTerrainComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXTerrainShadowNode = ConcreteViewShadowNode< -+ RNMBXTerrainComponentName, -+ RNMBXTerrainProps, -+ RNMBXTerrainEventEmitter, -+ RNMBXTerrainState>; -+ -+JSI_EXPORT extern const char RNMBXVectorSourceComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXVectorSourceShadowNode = ConcreteViewShadowNode< -+ RNMBXVectorSourceComponentName, -+ RNMBXVectorSourceProps, -+ RNMBXVectorSourceEventEmitter, -+ RNMBXVectorSourceState>; -+ -+JSI_EXPORT extern const char RNMBXViewportComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNMBXViewportShadowNode = ConcreteViewShadowNode< -+ RNMBXViewportComponentName, -+ RNMBXViewportProps, -+ RNMBXViewportEventEmitter, -+ RNMBXViewportState>; -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.cpp -new file mode 100644 -index 0000000..914333f ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/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/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.h -new file mode 100644 -index 0000000..a2675dc ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/States.h -@@ -0,0 +1,389 @@ -+/** -+ * 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 RNMBXAtmosphereState { -+public: -+ RNMBXAtmosphereState() = default; -+ -+#ifdef ANDROID -+ RNMBXAtmosphereState(RNMBXAtmosphereState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXBackgroundLayerState { -+public: -+ RNMBXBackgroundLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXBackgroundLayerState(RNMBXBackgroundLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXCalloutState { -+public: -+ RNMBXCalloutState() = default; -+ -+#ifdef ANDROID -+ RNMBXCalloutState(RNMBXCalloutState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXCameraState { -+public: -+ RNMBXCameraState() = default; -+ -+#ifdef ANDROID -+ RNMBXCameraState(RNMBXCameraState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXCircleLayerState { -+public: -+ RNMBXCircleLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXCircleLayerState(RNMBXCircleLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXCustomLocationProviderState { -+public: -+ RNMBXCustomLocationProviderState() = default; -+ -+#ifdef ANDROID -+ RNMBXCustomLocationProviderState(RNMBXCustomLocationProviderState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXFillExtrusionLayerState { -+public: -+ RNMBXFillExtrusionLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXFillExtrusionLayerState(RNMBXFillExtrusionLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXFillLayerState { -+public: -+ RNMBXFillLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXFillLayerState(RNMBXFillLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXHeatmapLayerState { -+public: -+ RNMBXHeatmapLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXHeatmapLayerState(RNMBXHeatmapLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXImageState { -+public: -+ RNMBXImageState() = default; -+ -+#ifdef ANDROID -+ RNMBXImageState(RNMBXImageState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXImagesState { -+public: -+ RNMBXImagesState() = default; -+ -+#ifdef ANDROID -+ RNMBXImagesState(RNMBXImagesState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXImageSourceState { -+public: -+ RNMBXImageSourceState() = default; -+ -+#ifdef ANDROID -+ RNMBXImageSourceState(RNMBXImageSourceState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXLightState { -+public: -+ RNMBXLightState() = default; -+ -+#ifdef ANDROID -+ RNMBXLightState(RNMBXLightState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXLineLayerState { -+public: -+ RNMBXLineLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXLineLayerState(RNMBXLineLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXMapViewState { -+public: -+ RNMBXMapViewState() = default; -+ -+#ifdef ANDROID -+ RNMBXMapViewState(RNMBXMapViewState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXMarkerViewContentState { -+public: -+ RNMBXMarkerViewContentState() = default; -+ -+#ifdef ANDROID -+ RNMBXMarkerViewContentState(RNMBXMarkerViewContentState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXMarkerViewState { -+public: -+ RNMBXMarkerViewState() = default; -+ -+#ifdef ANDROID -+ RNMBXMarkerViewState(RNMBXMarkerViewState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXModelLayerState { -+public: -+ RNMBXModelLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXModelLayerState(RNMBXModelLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXModelsState { -+public: -+ RNMBXModelsState() = default; -+ -+#ifdef ANDROID -+ RNMBXModelsState(RNMBXModelsState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXNativeUserLocationState { -+public: -+ RNMBXNativeUserLocationState() = default; -+ -+#ifdef ANDROID -+ RNMBXNativeUserLocationState(RNMBXNativeUserLocationState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXPointAnnotationState { -+public: -+ RNMBXPointAnnotationState() = default; -+ -+#ifdef ANDROID -+ RNMBXPointAnnotationState(RNMBXPointAnnotationState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXRasterDemSourceState { -+public: -+ RNMBXRasterDemSourceState() = default; -+ -+#ifdef ANDROID -+ RNMBXRasterDemSourceState(RNMBXRasterDemSourceState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXRasterLayerState { -+public: -+ RNMBXRasterLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXRasterLayerState(RNMBXRasterLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXRasterSourceState { -+public: -+ RNMBXRasterSourceState() = default; -+ -+#ifdef ANDROID -+ RNMBXRasterSourceState(RNMBXRasterSourceState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXShapeSourceState { -+public: -+ RNMBXShapeSourceState() = default; -+ -+#ifdef ANDROID -+ RNMBXShapeSourceState(RNMBXShapeSourceState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXSkyLayerState { -+public: -+ RNMBXSkyLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXSkyLayerState(RNMBXSkyLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXStyleImportState { -+public: -+ RNMBXStyleImportState() = default; -+ -+#ifdef ANDROID -+ RNMBXStyleImportState(RNMBXStyleImportState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXSymbolLayerState { -+public: -+ RNMBXSymbolLayerState() = default; -+ -+#ifdef ANDROID -+ RNMBXSymbolLayerState(RNMBXSymbolLayerState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXTerrainState { -+public: -+ RNMBXTerrainState() = default; -+ -+#ifdef ANDROID -+ RNMBXTerrainState(RNMBXTerrainState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXVectorSourceState { -+public: -+ RNMBXVectorSourceState() = default; -+ -+#ifdef ANDROID -+ RNMBXVectorSourceState(RNMBXVectorSourceState const &previousState, folly::dynamic data){}; -+ folly::dynamic getDynamic() const { -+ return {}; -+ }; -+#endif -+}; -+ -+class RNMBXViewportState { -+public: -+ RNMBXViewportState() = default; -+ -+#ifdef ANDROID -+ RNMBXViewportState(RNMBXViewportState 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/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI-generated.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI-generated.cpp -new file mode 100644 -index 0000000..d4f576d ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI-generated.cpp -@@ -0,0 +1,303 @@ -+/** -+ * 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 "rnmapbox_maps_specsJSI.h" -+ -+namespace facebook::react { -+ -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_takeSnap(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->takeSnap( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asBool() -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_queryTerrainElevation(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->queryTerrainElevation( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_setSourceVisibility(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->setSourceVisibility( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asBool(), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asString(rt), -+ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asString(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getCenter(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getCenter( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getCoordinateFromView(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getCoordinateFromView( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getPointInView(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getPointInView( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getZoom(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getZoom( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_getVisibleBounds(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getVisibleBounds( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_queryRenderedFeaturesAtPoint(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->queryRenderedFeaturesAtPoint( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt).asArray(rt), -+ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asObject(rt).asArray(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_queryRenderedFeaturesInRect(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->queryRenderedFeaturesInRect( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt).asArray(rt), -+ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asObject(rt).asArray(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_setHandledMapChangedEvents(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->setHandledMapChangedEvents( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt).asArray(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_clearData(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->clearData( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) -+ ); -+} -+static jsi::Value __hostFunction_NativeMapViewModuleCxxSpecJSI_querySourceFeatures(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->querySourceFeatures( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asString(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt).asArray(rt), -+ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asObject(rt).asArray(rt) -+ ); -+} -+ -+NativeMapViewModuleCxxSpecJSI::NativeMapViewModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXMapViewModule", jsInvoker) { -+ methodMap_["takeSnap"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_takeSnap}; -+ methodMap_["queryTerrainElevation"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_queryTerrainElevation}; -+ methodMap_["setSourceVisibility"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleCxxSpecJSI_setSourceVisibility}; -+ methodMap_["getCenter"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleCxxSpecJSI_getCenter}; -+ methodMap_["getCoordinateFromView"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_getCoordinateFromView}; -+ methodMap_["getPointInView"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_getPointInView}; -+ methodMap_["getZoom"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleCxxSpecJSI_getZoom}; -+ methodMap_["getVisibleBounds"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleCxxSpecJSI_getVisibleBounds}; -+ methodMap_["queryRenderedFeaturesAtPoint"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleCxxSpecJSI_queryRenderedFeaturesAtPoint}; -+ methodMap_["queryRenderedFeaturesInRect"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleCxxSpecJSI_queryRenderedFeaturesInRect}; -+ methodMap_["setHandledMapChangedEvents"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleCxxSpecJSI_setHandledMapChangedEvents}; -+ methodMap_["clearData"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleCxxSpecJSI_clearData}; -+ methodMap_["querySourceFeatures"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleCxxSpecJSI_querySourceFeatures}; -+} -+static jsi::Value __hostFunction_NativeRNMBXCameraModuleCxxSpecJSI_updateCameraStop(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->updateCameraStop( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt) -+ ); -+} -+ -+NativeRNMBXCameraModuleCxxSpecJSI::NativeRNMBXCameraModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXCameraModule", jsInvoker) { -+ methodMap_["updateCameraStop"] = MethodMetadata {2, __hostFunction_NativeRNMBXCameraModuleCxxSpecJSI_updateCameraStop}; -+} -+static jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_create(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->create( -+ 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).asArray(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber(), -+ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asNumber() -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setLineString(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->setLineString( -+ 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).asArray(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber(), -+ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asNumber() -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setStartOffset(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->setStartOffset( -+ 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() -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setEndOffset(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->setEndOffset( -+ 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() -+ ); -+} -+ -+NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI::NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXChangeLineOffsetsShapeAnimatorModule", jsInvoker) { -+ methodMap_["create"] = MethodMetadata {4, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_create}; -+ methodMap_["setLineString"] = MethodMetadata {4, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setLineString}; -+ methodMap_["setStartOffset"] = MethodMetadata {3, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setStartOffset}; -+ methodMap_["setEndOffset"] = MethodMetadata {3, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI_setEndOffset}; -+} -+static jsi::Value __hostFunction_NativeRNMBXImageModuleCxxSpecJSI_refresh(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->refresh( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) -+ ); -+} -+ -+NativeRNMBXImageModuleCxxSpecJSI::NativeRNMBXImageModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXImageModule", jsInvoker) { -+ methodMap_["refresh"] = MethodMetadata {1, __hostFunction_NativeRNMBXImageModuleCxxSpecJSI_refresh}; -+} -+static jsi::Value __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI_create(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->create( -+ 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).asArray(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI_moveTo(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->moveTo( -+ 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).asArray(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber() -+ ); -+} -+ -+NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI::NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXMovePointShapeAnimatorModule", jsInvoker) { -+ methodMap_["create"] = MethodMetadata {2, __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI_create}; -+ methodMap_["moveTo"] = MethodMetadata {3, __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI_moveTo}; -+} -+static jsi::Value __hostFunction_NativeRNMBXPointAnnotationModuleCxxSpecJSI_refresh(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->refresh( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) -+ ); -+} -+ -+NativeRNMBXPointAnnotationModuleCxxSpecJSI::NativeRNMBXPointAnnotationModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXPointAnnotationModule", jsInvoker) { -+ methodMap_["refresh"] = MethodMetadata {1, __hostFunction_NativeRNMBXPointAnnotationModuleCxxSpecJSI_refresh}; -+} -+static jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterExpansionZoom(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getClusterExpansionZoom( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asString(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterLeaves(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getClusterLeaves( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asString(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asNumber(), -+ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asNumber() -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterChildren(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getClusterChildren( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asString(rt) -+ ); -+} -+ -+NativeRNMBXShapeSourceModuleCxxSpecJSI::NativeRNMBXShapeSourceModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXShapeSourceModule", jsInvoker) { -+ methodMap_["getClusterExpansionZoom"] = MethodMetadata {2, __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterExpansionZoom}; -+ methodMap_["getClusterLeaves"] = MethodMetadata {4, __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterLeaves}; -+ methodMap_["getClusterChildren"] = MethodMetadata {2, __hostFunction_NativeRNMBXShapeSourceModuleCxxSpecJSI_getClusterChildren}; -+} -+static jsi::Value __hostFunction_NativeRNMBXTileStoreModuleCxxSpecJSI_shared(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->shared( -+ rt, -+ count <= 0 || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asString(rt)) -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXTileStoreModuleCxxSpecJSI_setOption(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->setOption( -+ 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].asString(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asString(rt), -+ count <= 3 ? throw jsi::JSError(rt, "Expected argument in position 3 to be passed") : args[3].asObject(rt) -+ ); -+} -+ -+NativeRNMBXTileStoreModuleCxxSpecJSI::NativeRNMBXTileStoreModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXTileStoreModule", jsInvoker) { -+ methodMap_["shared"] = MethodMetadata {1, __hostFunction_NativeRNMBXTileStoreModuleCxxSpecJSI_shared}; -+ methodMap_["setOption"] = MethodMetadata {4, __hostFunction_NativeRNMBXTileStoreModuleCxxSpecJSI_setOption}; -+} -+static jsi::Value __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_getState(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->getState( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_transitionTo(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->transitionTo( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()), -+ count <= 1 ? throw jsi::JSError(rt, "Expected argument in position 1 to be passed") : args[1].asObject(rt), -+ count <= 2 ? throw jsi::JSError(rt, "Expected argument in position 2 to be passed") : args[2].asObject(rt) -+ ); -+} -+static jsi::Value __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_idle(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->idle( -+ rt, -+ count <= 0 || args[0].isNull() || args[0].isUndefined() ? std::nullopt : std::make_optional(args[0].asNumber()) -+ ); -+} -+ -+NativeRNMBXViewportModuleCxxSpecJSI::NativeRNMBXViewportModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("RNMBXViewportModule", jsInvoker) { -+ methodMap_["getState"] = MethodMetadata {1, __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_getState}; -+ methodMap_["transitionTo"] = MethodMetadata {3, __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_transitionTo}; -+ methodMap_["idle"] = MethodMetadata {1, __hostFunction_NativeRNMBXViewportModuleCxxSpecJSI_idle}; -+} -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI.h -new file mode 100644 -index 0000000..09fcdd8 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/react/renderer/components/rnmapbox_maps_specs/rnmapbox_maps_specsJSI.h -@@ -0,0 +1,692 @@ -+/** -+ * 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 NativeMapViewModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeMapViewModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value takeSnap(jsi::Runtime &rt, std::optional viewRef, bool writeToDisk) = 0; -+ virtual jsi::Value queryTerrainElevation(jsi::Runtime &rt, std::optional viewRef, jsi::Array coordinates) = 0; -+ virtual jsi::Value setSourceVisibility(jsi::Runtime &rt, std::optional viewRef, bool visible, jsi::String sourceId, jsi::String sourceLayerId) = 0; -+ virtual jsi::Value getCenter(jsi::Runtime &rt, std::optional viewRef) = 0; -+ virtual jsi::Value getCoordinateFromView(jsi::Runtime &rt, std::optional viewRef, jsi::Array atPoint) = 0; -+ virtual jsi::Value getPointInView(jsi::Runtime &rt, std::optional viewRef, jsi::Array atCoordinate) = 0; -+ virtual jsi::Value getZoom(jsi::Runtime &rt, std::optional viewRef) = 0; -+ virtual jsi::Value getVisibleBounds(jsi::Runtime &rt, std::optional viewRef) = 0; -+ virtual jsi::Value queryRenderedFeaturesAtPoint(jsi::Runtime &rt, std::optional viewRef, jsi::Array atPoint, jsi::Array withFilter, jsi::Array withLayerIDs) = 0; -+ virtual jsi::Value queryRenderedFeaturesInRect(jsi::Runtime &rt, std::optional viewRef, jsi::Array withBBox, jsi::Array withFilter, jsi::Array withLayerIDs) = 0; -+ virtual jsi::Value setHandledMapChangedEvents(jsi::Runtime &rt, std::optional viewRef, jsi::Array events) = 0; -+ virtual jsi::Value clearData(jsi::Runtime &rt, std::optional viewRef) = 0; -+ virtual jsi::Value querySourceFeatures(jsi::Runtime &rt, std::optional viewRef, jsi::String sourceId, jsi::Array withFilter, jsi::Array withSourceLayerIDs) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeMapViewModuleCxxSpec : 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 = "RNMBXMapViewModule"; -+ -+protected: -+ NativeMapViewModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeMapViewModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeMapViewModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeMapViewModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value takeSnap(jsi::Runtime &rt, std::optional viewRef, bool writeToDisk) override { -+ static_assert( -+ bridging::getParameterCount(&T::takeSnap) == 3, -+ "Expected takeSnap(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::takeSnap, jsInvoker_, instance_, std::move(viewRef), std::move(writeToDisk)); -+ } -+ jsi::Value queryTerrainElevation(jsi::Runtime &rt, std::optional viewRef, jsi::Array coordinates) override { -+ static_assert( -+ bridging::getParameterCount(&T::queryTerrainElevation) == 3, -+ "Expected queryTerrainElevation(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::queryTerrainElevation, jsInvoker_, instance_, std::move(viewRef), std::move(coordinates)); -+ } -+ jsi::Value setSourceVisibility(jsi::Runtime &rt, std::optional viewRef, bool visible, jsi::String sourceId, jsi::String sourceLayerId) override { -+ static_assert( -+ bridging::getParameterCount(&T::setSourceVisibility) == 5, -+ "Expected setSourceVisibility(...) to have 5 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::setSourceVisibility, jsInvoker_, instance_, std::move(viewRef), std::move(visible), std::move(sourceId), std::move(sourceLayerId)); -+ } -+ jsi::Value getCenter(jsi::Runtime &rt, std::optional viewRef) override { -+ static_assert( -+ bridging::getParameterCount(&T::getCenter) == 2, -+ "Expected getCenter(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getCenter, jsInvoker_, instance_, std::move(viewRef)); -+ } -+ jsi::Value getCoordinateFromView(jsi::Runtime &rt, std::optional viewRef, jsi::Array atPoint) override { -+ static_assert( -+ bridging::getParameterCount(&T::getCoordinateFromView) == 3, -+ "Expected getCoordinateFromView(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getCoordinateFromView, jsInvoker_, instance_, std::move(viewRef), std::move(atPoint)); -+ } -+ jsi::Value getPointInView(jsi::Runtime &rt, std::optional viewRef, jsi::Array atCoordinate) override { -+ static_assert( -+ bridging::getParameterCount(&T::getPointInView) == 3, -+ "Expected getPointInView(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getPointInView, jsInvoker_, instance_, std::move(viewRef), std::move(atCoordinate)); -+ } -+ jsi::Value getZoom(jsi::Runtime &rt, std::optional viewRef) override { -+ static_assert( -+ bridging::getParameterCount(&T::getZoom) == 2, -+ "Expected getZoom(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getZoom, jsInvoker_, instance_, std::move(viewRef)); -+ } -+ jsi::Value getVisibleBounds(jsi::Runtime &rt, std::optional viewRef) override { -+ static_assert( -+ bridging::getParameterCount(&T::getVisibleBounds) == 2, -+ "Expected getVisibleBounds(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getVisibleBounds, jsInvoker_, instance_, std::move(viewRef)); -+ } -+ jsi::Value queryRenderedFeaturesAtPoint(jsi::Runtime &rt, std::optional viewRef, jsi::Array atPoint, jsi::Array withFilter, jsi::Array withLayerIDs) override { -+ static_assert( -+ bridging::getParameterCount(&T::queryRenderedFeaturesAtPoint) == 5, -+ "Expected queryRenderedFeaturesAtPoint(...) to have 5 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::queryRenderedFeaturesAtPoint, jsInvoker_, instance_, std::move(viewRef), std::move(atPoint), std::move(withFilter), std::move(withLayerIDs)); -+ } -+ jsi::Value queryRenderedFeaturesInRect(jsi::Runtime &rt, std::optional viewRef, jsi::Array withBBox, jsi::Array withFilter, jsi::Array withLayerIDs) override { -+ static_assert( -+ bridging::getParameterCount(&T::queryRenderedFeaturesInRect) == 5, -+ "Expected queryRenderedFeaturesInRect(...) to have 5 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::queryRenderedFeaturesInRect, jsInvoker_, instance_, std::move(viewRef), std::move(withBBox), std::move(withFilter), std::move(withLayerIDs)); -+ } -+ jsi::Value setHandledMapChangedEvents(jsi::Runtime &rt, std::optional viewRef, jsi::Array events) override { -+ static_assert( -+ bridging::getParameterCount(&T::setHandledMapChangedEvents) == 3, -+ "Expected setHandledMapChangedEvents(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::setHandledMapChangedEvents, jsInvoker_, instance_, std::move(viewRef), std::move(events)); -+ } -+ jsi::Value clearData(jsi::Runtime &rt, std::optional viewRef) override { -+ static_assert( -+ bridging::getParameterCount(&T::clearData) == 2, -+ "Expected clearData(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::clearData, jsInvoker_, instance_, std::move(viewRef)); -+ } -+ jsi::Value querySourceFeatures(jsi::Runtime &rt, std::optional viewRef, jsi::String sourceId, jsi::Array withFilter, jsi::Array withSourceLayerIDs) override { -+ static_assert( -+ bridging::getParameterCount(&T::querySourceFeatures) == 5, -+ "Expected querySourceFeatures(...) to have 5 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::querySourceFeatures, jsInvoker_, instance_, std::move(viewRef), std::move(sourceId), std::move(withFilter), std::move(withSourceLayerIDs)); -+ } -+ -+ private: -+ friend class NativeMapViewModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+ -+ class JSI_EXPORT NativeRNMBXCameraModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNMBXCameraModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value updateCameraStop(jsi::Runtime &rt, std::optional viewRef, jsi::Object stop) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNMBXCameraModuleCxxSpec : 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 = "RNMBXCameraModule"; -+ -+protected: -+ NativeRNMBXCameraModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNMBXCameraModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNMBXCameraModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNMBXCameraModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value updateCameraStop(jsi::Runtime &rt, std::optional viewRef, jsi::Object stop) override { -+ static_assert( -+ bridging::getParameterCount(&T::updateCameraStop) == 3, -+ "Expected updateCameraStop(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::updateCameraStop, jsInvoker_, instance_, std::move(viewRef), std::move(stop)); -+ } -+ -+ private: -+ friend class NativeRNMBXCameraModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+ -+ class JSI_EXPORT NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value create(jsi::Runtime &rt, int tag, jsi::Array coordinates, double startOffset, double endOffset) = 0; -+ virtual jsi::Value setLineString(jsi::Runtime &rt, int tag, jsi::Array coordinates, double startOffset, double endOffset) = 0; -+ virtual jsi::Value setStartOffset(jsi::Runtime &rt, int tag, double offset, double duration) = 0; -+ virtual jsi::Value setEndOffset(jsi::Runtime &rt, int tag, double offset, double duration) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpec : 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 = "RNMBXChangeLineOffsetsShapeAnimatorModule"; -+ -+protected: -+ NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value create(jsi::Runtime &rt, int tag, jsi::Array coordinates, double startOffset, double endOffset) override { -+ static_assert( -+ bridging::getParameterCount(&T::create) == 5, -+ "Expected create(...) to have 5 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::create, jsInvoker_, instance_, std::move(tag), std::move(coordinates), std::move(startOffset), std::move(endOffset)); -+ } -+ jsi::Value setLineString(jsi::Runtime &rt, int tag, jsi::Array coordinates, double startOffset, double endOffset) override { -+ static_assert( -+ bridging::getParameterCount(&T::setLineString) == 5, -+ "Expected setLineString(...) to have 5 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::setLineString, jsInvoker_, instance_, std::move(tag), std::move(coordinates), std::move(startOffset), std::move(endOffset)); -+ } -+ jsi::Value setStartOffset(jsi::Runtime &rt, int tag, double offset, double duration) override { -+ static_assert( -+ bridging::getParameterCount(&T::setStartOffset) == 4, -+ "Expected setStartOffset(...) to have 4 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::setStartOffset, jsInvoker_, instance_, std::move(tag), std::move(offset), std::move(duration)); -+ } -+ jsi::Value setEndOffset(jsi::Runtime &rt, int tag, double offset, double duration) override { -+ static_assert( -+ bridging::getParameterCount(&T::setEndOffset) == 4, -+ "Expected setEndOffset(...) to have 4 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::setEndOffset, jsInvoker_, instance_, std::move(tag), std::move(offset), std::move(duration)); -+ } -+ -+ private: -+ friend class NativeRNMBXChangeLineOffsetsShapeAnimatorModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+ -+ class JSI_EXPORT NativeRNMBXImageModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNMBXImageModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value refresh(jsi::Runtime &rt, std::optional viewRef) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNMBXImageModuleCxxSpec : 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 = "RNMBXImageModule"; -+ -+protected: -+ NativeRNMBXImageModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNMBXImageModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNMBXImageModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNMBXImageModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value refresh(jsi::Runtime &rt, std::optional viewRef) override { -+ static_assert( -+ bridging::getParameterCount(&T::refresh) == 2, -+ "Expected refresh(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::refresh, jsInvoker_, instance_, std::move(viewRef)); -+ } -+ -+ private: -+ friend class NativeRNMBXImageModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+ -+ class JSI_EXPORT NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value create(jsi::Runtime &rt, int tag, jsi::Array coordinate) = 0; -+ virtual jsi::Value moveTo(jsi::Runtime &rt, int tag, jsi::Array coordinate, double duration) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNMBXMovePointShapeAnimatorModuleCxxSpec : 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 = "RNMBXMovePointShapeAnimatorModule"; -+ -+protected: -+ NativeRNMBXMovePointShapeAnimatorModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNMBXMovePointShapeAnimatorModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNMBXMovePointShapeAnimatorModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value create(jsi::Runtime &rt, int tag, jsi::Array coordinate) override { -+ static_assert( -+ bridging::getParameterCount(&T::create) == 3, -+ "Expected create(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::create, jsInvoker_, instance_, std::move(tag), std::move(coordinate)); -+ } -+ jsi::Value moveTo(jsi::Runtime &rt, int tag, jsi::Array coordinate, double duration) override { -+ static_assert( -+ bridging::getParameterCount(&T::moveTo) == 4, -+ "Expected moveTo(...) to have 4 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::moveTo, jsInvoker_, instance_, std::move(tag), std::move(coordinate), std::move(duration)); -+ } -+ -+ private: -+ friend class NativeRNMBXMovePointShapeAnimatorModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+ -+ class JSI_EXPORT NativeRNMBXPointAnnotationModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNMBXPointAnnotationModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value refresh(jsi::Runtime &rt, std::optional viewRef) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNMBXPointAnnotationModuleCxxSpec : 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 = "RNMBXPointAnnotationModule"; -+ -+protected: -+ NativeRNMBXPointAnnotationModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNMBXPointAnnotationModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNMBXPointAnnotationModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNMBXPointAnnotationModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value refresh(jsi::Runtime &rt, std::optional viewRef) override { -+ static_assert( -+ bridging::getParameterCount(&T::refresh) == 2, -+ "Expected refresh(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::refresh, jsInvoker_, instance_, std::move(viewRef)); -+ } -+ -+ private: -+ friend class NativeRNMBXPointAnnotationModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+ -+ class JSI_EXPORT NativeRNMBXShapeSourceModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNMBXShapeSourceModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value getClusterExpansionZoom(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON) = 0; -+ virtual jsi::Value getClusterLeaves(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON, int number, int offset) = 0; -+ virtual jsi::Value getClusterChildren(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNMBXShapeSourceModuleCxxSpec : 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 = "RNMBXShapeSourceModule"; -+ -+protected: -+ NativeRNMBXShapeSourceModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNMBXShapeSourceModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNMBXShapeSourceModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNMBXShapeSourceModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value getClusterExpansionZoom(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON) override { -+ static_assert( -+ bridging::getParameterCount(&T::getClusterExpansionZoom) == 3, -+ "Expected getClusterExpansionZoom(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getClusterExpansionZoom, jsInvoker_, instance_, std::move(viewRef), std::move(featureJSON)); -+ } -+ jsi::Value getClusterLeaves(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON, int number, int offset) override { -+ static_assert( -+ bridging::getParameterCount(&T::getClusterLeaves) == 5, -+ "Expected getClusterLeaves(...) to have 5 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getClusterLeaves, jsInvoker_, instance_, std::move(viewRef), std::move(featureJSON), std::move(number), std::move(offset)); -+ } -+ jsi::Value getClusterChildren(jsi::Runtime &rt, std::optional viewRef, jsi::String featureJSON) override { -+ static_assert( -+ bridging::getParameterCount(&T::getClusterChildren) == 3, -+ "Expected getClusterChildren(...) to have 3 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getClusterChildren, jsInvoker_, instance_, std::move(viewRef), std::move(featureJSON)); -+ } -+ -+ private: -+ friend class NativeRNMBXShapeSourceModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+ -+ class JSI_EXPORT NativeRNMBXTileStoreModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNMBXTileStoreModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value shared(jsi::Runtime &rt, std::optional path) = 0; -+ virtual jsi::Value setOption(jsi::Runtime &rt, int tag, jsi::String key, jsi::String domain, jsi::Object value) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNMBXTileStoreModuleCxxSpec : 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 = "RNMBXTileStoreModule"; -+ -+protected: -+ NativeRNMBXTileStoreModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNMBXTileStoreModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNMBXTileStoreModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNMBXTileStoreModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value shared(jsi::Runtime &rt, std::optional path) override { -+ static_assert( -+ bridging::getParameterCount(&T::shared) == 2, -+ "Expected shared(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::shared, jsInvoker_, instance_, std::move(path)); -+ } -+ jsi::Value setOption(jsi::Runtime &rt, int tag, jsi::String key, jsi::String domain, jsi::Object value) override { -+ static_assert( -+ bridging::getParameterCount(&T::setOption) == 5, -+ "Expected setOption(...) to have 5 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::setOption, jsInvoker_, instance_, std::move(tag), std::move(key), std::move(domain), std::move(value)); -+ } -+ -+ private: -+ friend class NativeRNMBXTileStoreModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+ -+ class JSI_EXPORT NativeRNMBXViewportModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeRNMBXViewportModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual jsi::Value getState(jsi::Runtime &rt, std::optional viewRef) = 0; -+ virtual jsi::Value transitionTo(jsi::Runtime &rt, std::optional viewRef, jsi::Object state, jsi::Object transition) = 0; -+ virtual jsi::Value idle(jsi::Runtime &rt, std::optional viewRef) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeRNMBXViewportModuleCxxSpec : 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 = "RNMBXViewportModule"; -+ -+protected: -+ NativeRNMBXViewportModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeRNMBXViewportModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeRNMBXViewportModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeRNMBXViewportModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ jsi::Value getState(jsi::Runtime &rt, std::optional viewRef) override { -+ static_assert( -+ bridging::getParameterCount(&T::getState) == 2, -+ "Expected getState(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::getState, jsInvoker_, instance_, std::move(viewRef)); -+ } -+ jsi::Value transitionTo(jsi::Runtime &rt, std::optional viewRef, jsi::Object state, jsi::Object transition) override { -+ static_assert( -+ bridging::getParameterCount(&T::transitionTo) == 4, -+ "Expected transitionTo(...) to have 4 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::transitionTo, jsInvoker_, instance_, std::move(viewRef), std::move(state), std::move(transition)); -+ } -+ jsi::Value idle(jsi::Runtime &rt, std::optional viewRef) override { -+ static_assert( -+ bridging::getParameterCount(&T::idle) == 2, -+ "Expected idle(...) to have 2 parameters"); -+ -+ return bridging::callFromJs( -+ rt, &T::idle, jsInvoker_, instance_, std::move(viewRef)); -+ } -+ -+ private: -+ friend class NativeRNMBXViewportModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs-generated.cpp b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs-generated.cpp -new file mode 100644 -index 0000000..2a99762 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs-generated.cpp -@@ -0,0 +1,254 @@ -+ -+/** -+ * 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 "rnmapbox_maps_specs.h" -+ -+namespace facebook::react { -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_takeSnap(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "takeSnap", "(Ljava/lang/Double;ZLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_queryTerrainElevation(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "queryTerrainElevation", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_setSourceVisibility(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setSourceVisibility", "(Ljava/lang/Double;ZLjava/lang/String;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getCenter(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getCenter", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getCoordinateFromView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getCoordinateFromView", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getPointInView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getPointInView", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getZoom(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getZoom", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_getVisibleBounds(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getVisibleBounds", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_queryRenderedFeaturesAtPoint(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "queryRenderedFeaturesAtPoint", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_queryRenderedFeaturesInRect(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "queryRenderedFeaturesInRect", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_setHandledMapChangedEvents(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setHandledMapChangedEvents", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_clearData(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "clearData", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeMapViewModuleSpecJSI_querySourceFeatures(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "querySourceFeatures", "(Ljava/lang/Double;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeMapViewModuleSpecJSI::NativeMapViewModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["takeSnap"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_takeSnap}; -+ methodMap_["queryTerrainElevation"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_queryTerrainElevation}; -+ methodMap_["setSourceVisibility"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleSpecJSI_setSourceVisibility}; -+ methodMap_["getCenter"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleSpecJSI_getCenter}; -+ methodMap_["getCoordinateFromView"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_getCoordinateFromView}; -+ methodMap_["getPointInView"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_getPointInView}; -+ methodMap_["getZoom"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleSpecJSI_getZoom}; -+ methodMap_["getVisibleBounds"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleSpecJSI_getVisibleBounds}; -+ methodMap_["queryRenderedFeaturesAtPoint"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleSpecJSI_queryRenderedFeaturesAtPoint}; -+ methodMap_["queryRenderedFeaturesInRect"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleSpecJSI_queryRenderedFeaturesInRect}; -+ methodMap_["setHandledMapChangedEvents"] = MethodMetadata {2, __hostFunction_NativeMapViewModuleSpecJSI_setHandledMapChangedEvents}; -+ methodMap_["clearData"] = MethodMetadata {1, __hostFunction_NativeMapViewModuleSpecJSI_clearData}; -+ methodMap_["querySourceFeatures"] = MethodMetadata {4, __hostFunction_NativeMapViewModuleSpecJSI_querySourceFeatures}; -+} -+static facebook::jsi::Value __hostFunction_NativeRNMBXCameraModuleSpecJSI_updateCameraStop(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "updateCameraStop", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeRNMBXCameraModuleSpecJSI::NativeRNMBXCameraModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["updateCameraStop"] = MethodMetadata {2, __hostFunction_NativeRNMBXCameraModuleSpecJSI_updateCameraStop}; -+} -+static facebook::jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_create(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "create", "(DLcom/facebook/react/bridge/ReadableArray;DDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setLineString(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setLineString", "(DLcom/facebook/react/bridge/ReadableArray;DDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setStartOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setStartOffset", "(DDDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setEndOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setEndOffset", "(DDDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI::NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["create"] = MethodMetadata {4, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_create}; -+ methodMap_["setLineString"] = MethodMetadata {4, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setLineString}; -+ methodMap_["setStartOffset"] = MethodMetadata {3, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setStartOffset}; -+ methodMap_["setEndOffset"] = MethodMetadata {3, __hostFunction_NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI_setEndOffset}; -+} -+static facebook::jsi::Value __hostFunction_NativeRNMBXImageModuleSpecJSI_refresh(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "refresh", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeRNMBXImageModuleSpecJSI::NativeRNMBXImageModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["refresh"] = MethodMetadata {1, __hostFunction_NativeRNMBXImageModuleSpecJSI_refresh}; -+} -+static facebook::jsi::Value __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleSpecJSI_create(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "create", "(DLcom/facebook/react/bridge/ReadableArray;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleSpecJSI_moveTo(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "moveTo", "(DLcom/facebook/react/bridge/ReadableArray;DLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeRNMBXMovePointShapeAnimatorModuleSpecJSI::NativeRNMBXMovePointShapeAnimatorModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["create"] = MethodMetadata {2, __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleSpecJSI_create}; -+ methodMap_["moveTo"] = MethodMetadata {3, __hostFunction_NativeRNMBXMovePointShapeAnimatorModuleSpecJSI_moveTo}; -+} -+static facebook::jsi::Value __hostFunction_NativeRNMBXPointAnnotationModuleSpecJSI_refresh(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "refresh", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeRNMBXPointAnnotationModuleSpecJSI::NativeRNMBXPointAnnotationModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["refresh"] = MethodMetadata {1, __hostFunction_NativeRNMBXPointAnnotationModuleSpecJSI_refresh}; -+} -+static facebook::jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterExpansionZoom(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getClusterExpansionZoom", "(Ljava/lang/Double;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterLeaves(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getClusterLeaves", "(Ljava/lang/Double;Ljava/lang/String;DDLcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterChildren(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getClusterChildren", "(Ljava/lang/Double;Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeRNMBXShapeSourceModuleSpecJSI::NativeRNMBXShapeSourceModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["getClusterExpansionZoom"] = MethodMetadata {2, __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterExpansionZoom}; -+ methodMap_["getClusterLeaves"] = MethodMetadata {4, __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterLeaves}; -+ methodMap_["getClusterChildren"] = MethodMetadata {2, __hostFunction_NativeRNMBXShapeSourceModuleSpecJSI_getClusterChildren}; -+} -+static facebook::jsi::Value __hostFunction_NativeRNMBXTileStoreModuleSpecJSI_shared(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "shared", "(Ljava/lang/String;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXTileStoreModuleSpecJSI_setOption(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "setOption", "(DLjava/lang/String;Ljava/lang/String;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeRNMBXTileStoreModuleSpecJSI::NativeRNMBXTileStoreModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["shared"] = MethodMetadata {1, __hostFunction_NativeRNMBXTileStoreModuleSpecJSI_shared}; -+ methodMap_["setOption"] = MethodMetadata {4, __hostFunction_NativeRNMBXTileStoreModuleSpecJSI_setOption}; -+} -+static facebook::jsi::Value __hostFunction_NativeRNMBXViewportModuleSpecJSI_getState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "getState", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXViewportModuleSpecJSI_transitionTo(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "transitionTo", "(Ljava/lang/Double;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/ReadableMap;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+static facebook::jsi::Value __hostFunction_NativeRNMBXViewportModuleSpecJSI_idle(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) { -+ static jmethodID cachedMethodId = nullptr; -+ return static_cast(turboModule).invokeJavaMethod(rt, PromiseKind, "idle", "(Ljava/lang/Double;Lcom/facebook/react/bridge/Promise;)V", args, count, cachedMethodId); -+} -+ -+NativeRNMBXViewportModuleSpecJSI::NativeRNMBXViewportModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["getState"] = MethodMetadata {1, __hostFunction_NativeRNMBXViewportModuleSpecJSI_getState}; -+ methodMap_["transitionTo"] = MethodMetadata {3, __hostFunction_NativeRNMBXViewportModuleSpecJSI_transitionTo}; -+ methodMap_["idle"] = MethodMetadata {1, __hostFunction_NativeRNMBXViewportModuleSpecJSI_idle}; -+} -+ -+std::shared_ptr rnmapbox_maps_specs_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { -+ if (moduleName == "RNMBXCameraModule") { -+ return std::make_shared(params); -+ } -+ if (moduleName == "RNMBXChangeLineOffsetsShapeAnimatorModule") { -+ return std::make_shared(params); -+ } -+ if (moduleName == "RNMBXImageModule") { -+ return std::make_shared(params); -+ } -+ if (moduleName == "RNMBXMapViewModule") { -+ return std::make_shared(params); -+ } -+ if (moduleName == "RNMBXMovePointShapeAnimatorModule") { -+ return std::make_shared(params); -+ } -+ if (moduleName == "RNMBXPointAnnotationModule") { -+ return std::make_shared(params); -+ } -+ if (moduleName == "RNMBXShapeSourceModule") { -+ return std::make_shared(params); -+ } -+ if (moduleName == "RNMBXTileStoreModule") { -+ return std::make_shared(params); -+ } -+ if (moduleName == "RNMBXViewportModule") { -+ return std::make_shared(params); -+ } -+ return nullptr; -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs.h b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs.h -new file mode 100644 -index 0000000..6bf8a17 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/jni/rnmapbox_maps_specs.h -@@ -0,0 +1,95 @@ -+ -+/** -+ * 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 'NativeMapViewModule' -+ */ -+class JSI_EXPORT NativeMapViewModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeMapViewModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+/** -+ * JNI C++ class for module 'NativeRNMBXCameraModule' -+ */ -+class JSI_EXPORT NativeRNMBXCameraModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNMBXCameraModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+/** -+ * JNI C++ class for module 'NativeRNMBXChangeLineOffsetsShapeAnimatorModule' -+ */ -+class JSI_EXPORT NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+/** -+ * JNI C++ class for module 'NativeRNMBXImageModule' -+ */ -+class JSI_EXPORT NativeRNMBXImageModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNMBXImageModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+/** -+ * JNI C++ class for module 'NativeRNMBXMovePointShapeAnimatorModule' -+ */ -+class JSI_EXPORT NativeRNMBXMovePointShapeAnimatorModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNMBXMovePointShapeAnimatorModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+/** -+ * JNI C++ class for module 'NativeRNMBXPointAnnotationModule' -+ */ -+class JSI_EXPORT NativeRNMBXPointAnnotationModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNMBXPointAnnotationModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+/** -+ * JNI C++ class for module 'NativeRNMBXShapeSourceModule' -+ */ -+class JSI_EXPORT NativeRNMBXShapeSourceModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNMBXShapeSourceModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+/** -+ * JNI C++ class for module 'NativeRNMBXTileStoreModule' -+ */ -+class JSI_EXPORT NativeRNMBXTileStoreModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNMBXTileStoreModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+/** -+ * JNI C++ class for module 'NativeRNMBXViewportModule' -+ */ -+class JSI_EXPORT NativeRNMBXViewportModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeRNMBXViewportModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+ -+JSI_EXPORT -+std::shared_ptr rnmapbox_maps_specs_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); -+ -+} // namespace facebook::react -diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/schema.json b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/schema.json -new file mode 100644 -index 0000000..e503c6b ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/codegen/schema.json -@@ -0,0 +1 @@ -+{"modules":{"NativeMapViewModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"takeSnap","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"writeToDisk","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation"}}]}},{"name":"queryTerrainElevation","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"coordinates","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}}]}},{"name":"setSourceVisibility","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"visible","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation"}},{"name":"sourceId","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"sourceLayerId","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}},{"name":"getCenter","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"getCoordinateFromView","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"atPoint","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}}]}},{"name":"getPointInView","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"atCoordinate","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}}]}},{"name":"getZoom","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"getVisibleBounds","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"queryRenderedFeaturesAtPoint","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"atPoint","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}},{"name":"withFilter","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}}},{"name":"withLayerIDs","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"StringTypeAnnotation"}}}]}},{"name":"queryRenderedFeaturesInRect","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"withBBox","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"NumberTypeAnnotation"}}},{"name":"withFilter","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}}},{"name":"withLayerIDs","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"StringTypeAnnotation"}}}]}},{"name":"setHandledMapChangedEvents","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"events","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"StringTypeAnnotation"}}}]}},{"name":"clearData","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"querySourceFeatures","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"sourceId","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"withFilter","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}}},{"name":"withSourceLayerIDs","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"StringTypeAnnotation"}}}]}}]},"moduleName":"RNMBXMapViewModule"},"NativeRNMBXCameraModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"updateCameraStop","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"stop","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}}]},"moduleName":"RNMBXCameraModule"},"NativeRNMBXChangeLineOffsetsShapeAnimatorModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"create","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"coordinates","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"AnyTypeAnnotation"}}},{"name":"startOffset","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"endOffset","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}},{"name":"setLineString","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"coordinates","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"AnyTypeAnnotation"}}},{"name":"startOffset","optional":false,"typeAnnotation":{"type":"NumberTypeAnnotation"}},{"name":"endOffset","optional":false,"typeAnnotation":{"type":"NumberTypeAnnotation"}}]}},{"name":"setStartOffset","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"offset","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"duration","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}},{"name":"setEndOffset","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"offset","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}},{"name":"duration","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}}]},"moduleName":"RNMBXChangeLineOffsetsShapeAnimatorModule"},"NativeRNMBXImageModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"refresh","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}}]},"moduleName":"RNMBXImageModule"},"NativeRNMBXMovePointShapeAnimatorModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"create","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"coordinate","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"DoubleTypeAnnotation"}}}]}},{"name":"moveTo","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"coordinate","optional":false,"typeAnnotation":{"type":"ArrayTypeAnnotation","elementType":{"type":"DoubleTypeAnnotation"}}},{"name":"duration","optional":false,"typeAnnotation":{"type":"DoubleTypeAnnotation"}}]}}]},"moduleName":"RNMBXMovePointShapeAnimatorModule"},"NativeRNMBXPointAnnotationModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"refresh","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}}]},"moduleName":"RNMBXPointAnnotationModule"},"NativeRNMBXShapeSourceModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"getClusterExpansionZoom","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"featureJSON","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}},{"name":"getClusterLeaves","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"featureJSON","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"number","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"offset","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}}]}},{"name":"getClusterChildren","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"GenericObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"featureJSON","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}]},"moduleName":"RNMBXShapeSourceModule"},"NativeRNMBXTileStoreModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"shared","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"Int32TypeAnnotation"}},"params":[{"name":"path","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}},{"name":"setOption","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"tag","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"key","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"domain","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"value","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}}]},"moduleName":"RNMBXTileStoreModule"},"NativeRNMBXViewportModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"getState","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"UnionTypeAnnotation","memberType":"ObjectTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}},{"name":"transitionTo","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}},{"name":"state","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}},{"name":"transition","optional":false,"typeAnnotation":{"type":"GenericObjectTypeAnnotation"}}]}},{"name":"idle","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"PromiseTypeAnnotation","elementType":{"type":"VoidTypeAnnotation"}},"params":[{"name":"viewRef","optional":false,"typeAnnotation":{"type":"NullableTypeAnnotation","typeAnnotation":{"type":"Int32TypeAnnotation"}}}]}}]},"moduleName":"RNMBXViewportModule"},"RNMBXAtmosphere":{"type":"Component","components":{"RNMBXAtmosphere":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXBackgroundLayer":{"type":"Component","components":{"RNMBXBackgroundLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceID","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXCallout":{"type":"Component","components":{"RNMBXCallout":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[],"commands":[]}}},"RNMBXCamera":{"type":"Component","components":{"RNMBXCamera":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onUserTrackingModeChange","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payloadRenamed","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"followUserLocation","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation"}},{"name":"followUserMode","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}]}}}],"props":[{"name":"maxBounds","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"animationDuration","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"animationMode","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"defaultStop","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"userTrackingMode","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followUserLocation","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followUserMode","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followPitch","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followHeading","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"followPadding","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"zoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"stop","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXCircleLayer":{"type":"Component","components":{"RNMBXCircleLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXCustomLocationProvider":{"type":"Component","components":{"RNMBXCustomLocationProvider":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"coordinate","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"heading","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXFillExtrusionLayer":{"type":"Component","components":{"RNMBXFillExtrusionLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXFillLayer":{"type":"Component","components":{"RNMBXFillLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXHeatmapLayer":{"type":"Component","components":{"RNMBXHeatmapLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXImage":{"type":"Component","components":{"RNMBXImage":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"stretchX","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"stretchY","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"content","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sdf","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"name","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scale","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXImages":{"type":"Component","components":{"RNMBXImages":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onImageMissing","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"imageKey","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}]}}}],"props":[{"name":"images","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"nativeImages","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hasOnImageMissing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXImageSource":{"type":"Component","components":{"RNMBXImageSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"coordinates","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXLight":{"type":"Component","components":{"RNMBXLight":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXLineLayer":{"type":"Component","components":{"RNMBXLineLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXMapView":{"type":"Component","components":{"RNMBXMapView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onPress","optional":true,"bubblingType":"bubble","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onLongPress","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapChange","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onCameraChanged","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"attributionEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attributionPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"logoEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"logoPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassFadeWhenNorth","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassViewPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassViewMargins","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scaleBarEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scaleBarPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"zoomEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scrollEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"rotateEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"pitchEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"deselectAnnotationOnTap","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"requestDisallowInterceptTouchEvent","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"projection","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"localizeLabels","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"styleURL","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"gestureSettings","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"surfaceView","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scaleBarViewMargins","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attributionViewMargins","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attributionViewPosition","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"compassImage","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"mapViewImpl","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXMarkerViewContent":{"type":"Component","components":{"RNMBXMarkerViewContent":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[],"commands":[]}}},"RNMBXMarkerView":{"type":"Component","components":{"RNMBXMarkerView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"coordinate","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"anchor","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"allowOverlap","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"allowOverlapWithPuck","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"isSelected","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXModelLayer":{"type":"Component","components":{"RNMBXModelLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXModels":{"type":"Component","components":{"RNMBXModels":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"models","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXNativeUserLocation":{"type":"Component","components":{"RNMBXNativeUserLocation":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"androidRenderMode","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"puckBearing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"puckBearingEnabled","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"bearingImage","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"shadowImage","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"topImage","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"scale","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"visible","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"pulsing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXPointAnnotation":{"type":"Component","components":{"RNMBXPointAnnotation":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onMapboxPointAnnotationDeselected","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapboxPointAnnotationDrag","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapboxPointAnnotationDragEnd","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapboxPointAnnotationDragStart","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}},{"name":"onMapboxPointAnnotationSelected","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"coordinate","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"draggable","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"anchor","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXRasterDemSource":{"type":"Component","components":{"RNMBXRasterDemSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileUrlTemplates","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileSize","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXRasterLayer":{"type":"Component","components":{"RNMBXRasterLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXRasterSource":{"type":"Component","components":{"RNMBXRasterSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileUrlTemplates","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileSize","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tms","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attribution","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXShapeSource":{"type":"Component","components":{"RNMBXShapeSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onMapboxShapeSourcePress","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"shape","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"cluster","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"clusterRadius","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"clusterMaxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"clusterProperties","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"buffer","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tolerance","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"lineMetrics","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hasPressListener","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hitbox","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXSkyLayer":{"type":"Component","components":{"RNMBXSkyLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXStyleImport":{"type":"Component","components":{"RNMBXStyleImport":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"existing","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"config","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXSymbolLayer":{"type":"Component","components":{"RNMBXSymbolLayer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"filter","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"aboveLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"belowLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"layerIndex","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"sourceLayerID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"slot","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"id","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXTerrain":{"type":"Component","components":{"RNMBXTerrain":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"sourceID","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"reactStyle","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXVectorSource":{"type":"Component","components":{"RNMBXVectorSource":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onMapboxVectorSourcePress","optional":false,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"id","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"existing","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"url","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tileUrlTemplates","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"attribution","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"maxZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"minZoomLevel","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"tms","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hasPressListener","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hitbox","optional":false,"typeAnnotation":{"type":"MixedTypeAnnotation"}}],"commands":[]}}},"RNMBXViewport":{"type":"Component","components":{"RNMBXViewport":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onStatusChanged","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"type","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}},{"name":"payload","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"transitionsToIdleUponUserInteraction","optional":true,"typeAnnotation":{"type":"MixedTypeAnnotation"}},{"name":"hasStatusChanged","optional":false,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}}],"commands":[]}}}}} -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -new file mode 100644 -index 0000000..c8865b5 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -@@ -0,0 +1,11 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json -new file mode 100644 -index 0000000..545af46 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/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.rnmapbox.rnmbx", -+ "variantName": "debug", -+ "elements": [ -+ { -+ "type": "SINGLE", -+ "filters": [], -+ "attributes": [], -+ "outputFile": "AndroidManifest.xml" -+ } -+ ], -+ "elementType": "File" -+} -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/@rnmapbox/maps/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties -new file mode 100644 -index 0000000..1211b1e ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -new file mode 100644 -index 0000000..9e26dfe ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -@@ -0,0 +1 @@ -+{} -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar -new file mode 100644 -index 0000000..508a3be -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar -new file mode 100644 -index 0000000..29c7110 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -new file mode 100644 -index 0000000..21abd7d ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -@@ -0,0 +1,2415 @@ -+int anim abc_fade_in 0x0 -+int anim abc_fade_out 0x0 -+int anim abc_grow_fade_in_from_bottom 0x0 -+int anim abc_popup_enter 0x0 -+int anim abc_popup_exit 0x0 -+int anim abc_shrink_fade_out_from_bottom 0x0 -+int anim abc_slide_in_bottom 0x0 -+int anim abc_slide_in_top 0x0 -+int anim abc_slide_out_bottom 0x0 -+int anim abc_slide_out_top 0x0 -+int anim abc_tooltip_enter 0x0 -+int anim abc_tooltip_exit 0x0 -+int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 -+int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 -+int anim btn_checkbox_to_checked_icon_null_animation 0x0 -+int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 -+int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 -+int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 -+int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 -+int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 -+int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 -+int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 -+int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 -+int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 -+int anim catalyst_fade_in 0x0 -+int anim catalyst_fade_out 0x0 -+int anim catalyst_push_up_in 0x0 -+int anim catalyst_push_up_out 0x0 -+int anim catalyst_slide_down 0x0 -+int anim catalyst_slide_up 0x0 -+int anim fragment_fast_out_extra_slow_in 0x0 -+int animator fragment_close_enter 0x0 -+int animator fragment_close_exit 0x0 -+int animator fragment_fade_enter 0x0 -+int animator fragment_fade_exit 0x0 -+int animator fragment_open_enter 0x0 -+int animator fragment_open_exit 0x0 -+int attr actionBarDivider 0x0 -+int attr actionBarItemBackground 0x0 -+int attr actionBarPopupTheme 0x0 -+int attr actionBarSize 0x0 -+int attr actionBarSplitStyle 0x0 -+int attr actionBarStyle 0x0 -+int attr actionBarTabBarStyle 0x0 -+int attr actionBarTabStyle 0x0 -+int attr actionBarTabTextStyle 0x0 -+int attr actionBarTheme 0x0 -+int attr actionBarWidgetTheme 0x0 -+int attr actionButtonStyle 0x0 -+int attr actionDropDownStyle 0x0 -+int attr actionLayout 0x0 -+int attr actionMenuTextAppearance 0x0 -+int attr actionMenuTextColor 0x0 -+int attr actionModeBackground 0x0 -+int attr actionModeCloseButtonStyle 0x0 -+int attr actionModeCloseContentDescription 0x0 -+int attr actionModeCloseDrawable 0x0 -+int attr actionModeCopyDrawable 0x0 -+int attr actionModeCutDrawable 0x0 -+int attr actionModeFindDrawable 0x0 -+int attr actionModePasteDrawable 0x0 -+int attr actionModePopupWindowStyle 0x0 -+int attr actionModeSelectAllDrawable 0x0 -+int attr actionModeShareDrawable 0x0 -+int attr actionModeSplitBackground 0x0 -+int attr actionModeStyle 0x0 -+int attr actionModeTheme 0x0 -+int attr actionModeWebSearchDrawable 0x0 -+int attr actionOverflowButtonStyle 0x0 -+int attr actionOverflowMenuStyle 0x0 -+int attr actionProviderClass 0x0 -+int attr actionViewClass 0x0 -+int attr activityChooserViewStyle 0x0 -+int attr actualImageResource 0x0 -+int attr actualImageScaleType 0x0 -+int attr actualImageUri 0x0 -+int attr alertDialogButtonGroupStyle 0x0 -+int attr alertDialogCenterButtons 0x0 -+int attr alertDialogStyle 0x0 -+int attr alertDialogTheme 0x0 -+int attr allowStacking 0x0 -+int attr alpha 0x0 -+int attr alphabeticModifiers 0x0 -+int attr arrowHeadLength 0x0 -+int attr arrowShaftLength 0x0 -+int attr autoCompleteTextViewStyle 0x0 -+int attr autoSizeMaxTextSize 0x0 -+int attr autoSizeMinTextSize 0x0 -+int attr autoSizePresetSizes 0x0 -+int attr autoSizeStepGranularity 0x0 -+int attr autoSizeTextType 0x0 -+int attr autofillInlineSuggestionChip 0x0 -+int attr autofillInlineSuggestionEndIconStyle 0x0 -+int attr autofillInlineSuggestionStartIconStyle 0x0 -+int attr autofillInlineSuggestionSubtitle 0x0 -+int attr autofillInlineSuggestionTitle 0x0 -+int attr background 0x0 -+int attr backgroundImage 0x0 -+int attr backgroundSplit 0x0 -+int attr backgroundStacked 0x0 -+int attr backgroundTint 0x0 -+int attr backgroundTintMode 0x0 -+int attr barLength 0x0 -+int attr borderlessButtonStyle 0x0 -+int attr buttonBarButtonStyle 0x0 -+int attr buttonBarNegativeButtonStyle 0x0 -+int attr buttonBarNeutralButtonStyle 0x0 -+int attr buttonBarPositiveButtonStyle 0x0 -+int attr buttonBarStyle 0x0 -+int attr buttonCompat 0x0 -+int attr buttonGravity 0x0 -+int attr buttonIconDimen 0x0 -+int attr buttonPanelSideLayout 0x0 -+int attr buttonSize 0x0 -+int attr buttonStyle 0x0 -+int attr buttonStyleSmall 0x0 -+int attr buttonTint 0x0 -+int attr buttonTintMode 0x0 -+int attr checkMarkCompat 0x0 -+int attr checkMarkTint 0x0 -+int attr checkMarkTintMode 0x0 -+int attr checkboxStyle 0x0 -+int attr checkedTextViewStyle 0x0 -+int attr circleCrop 0x0 -+int attr closeIcon 0x0 -+int attr closeItemLayout 0x0 -+int attr collapseContentDescription 0x0 -+int attr collapseIcon 0x0 -+int attr color 0x0 -+int attr colorAccent 0x0 -+int attr colorBackgroundFloating 0x0 -+int attr colorButtonNormal 0x0 -+int attr colorControlActivated 0x0 -+int attr colorControlHighlight 0x0 -+int attr colorControlNormal 0x0 -+int attr colorError 0x0 -+int attr colorPrimary 0x0 -+int attr colorPrimaryDark 0x0 -+int attr colorScheme 0x0 -+int attr colorSwitchThumbNormal 0x0 -+int attr commitIcon 0x0 -+int attr contentDescription 0x0 -+int attr contentInsetEnd 0x0 -+int attr contentInsetEndWithActions 0x0 -+int attr contentInsetLeft 0x0 -+int attr contentInsetRight 0x0 -+int attr contentInsetStart 0x0 -+int attr contentInsetStartWithNavigation 0x0 -+int attr controlBackground 0x0 -+int attr coordinatorLayoutStyle 0x0 -+int attr customNavigationLayout 0x0 -+int attr defaultQueryHint 0x0 -+int attr dialogCornerRadius 0x0 -+int attr dialogPreferredPadding 0x0 -+int attr dialogTheme 0x0 -+int attr displayOptions 0x0 -+int attr divider 0x0 -+int attr dividerHorizontal 0x0 -+int attr dividerPadding 0x0 -+int attr dividerVertical 0x0 -+int attr drawableBottomCompat 0x0 -+int attr drawableEndCompat 0x0 -+int attr drawableLeftCompat 0x0 -+int attr drawableRightCompat 0x0 -+int attr drawableSize 0x0 -+int attr drawableStartCompat 0x0 -+int attr drawableTint 0x0 -+int attr drawableTintMode 0x0 -+int attr drawableTopCompat 0x0 -+int attr drawerArrowStyle 0x0 -+int attr dropDownListViewStyle 0x0 -+int attr dropdownListPreferredItemHeight 0x0 -+int attr editTextBackground 0x0 -+int attr editTextColor 0x0 -+int attr editTextStyle 0x0 -+int attr elevation 0x0 -+int attr emojiCompatEnabled 0x0 -+int attr expandActivityOverflowButtonDrawable 0x0 -+int attr fadeDuration 0x0 -+int attr failureImage 0x0 -+int attr failureImageScaleType 0x0 -+int attr firstBaselineToTopHeight 0x0 -+int attr font 0x0 -+int attr fontFamily 0x0 -+int attr fontProviderAuthority 0x0 -+int attr fontProviderCerts 0x0 -+int attr fontProviderFetchStrategy 0x0 -+int attr fontProviderFetchTimeout 0x0 -+int attr fontProviderPackage 0x0 -+int attr fontProviderQuery 0x0 -+int attr fontProviderSystemFontFamily 0x0 -+int attr fontStyle 0x0 -+int attr fontVariationSettings 0x0 -+int attr fontWeight 0x0 -+int attr gapBetweenBars 0x0 -+int attr goIcon 0x0 -+int attr height 0x0 -+int attr hideOnContentScroll 0x0 -+int attr homeAsUpIndicator 0x0 -+int attr homeLayout 0x0 -+int attr icon 0x0 -+int attr iconTint 0x0 -+int attr iconTintMode 0x0 -+int attr iconifiedByDefault 0x0 -+int attr imageAspectRatio 0x0 -+int attr imageAspectRatioAdjust 0x0 -+int attr imageButtonStyle 0x0 -+int attr indeterminateProgressStyle 0x0 -+int attr initialActivityCount 0x0 -+int attr isAutofillInlineSuggestionTheme 0x0 -+int attr isLightTheme 0x0 -+int attr itemPadding 0x0 -+int attr keylines 0x0 -+int attr lStar 0x0 -+int attr lastBaselineToBottomHeight 0x0 -+int attr layout 0x0 -+int attr layout_anchor 0x0 -+int attr layout_anchorGravity 0x0 -+int attr layout_behavior 0x0 -+int attr layout_dodgeInsetEdges 0x0 -+int attr layout_insetEdge 0x0 -+int attr layout_keyline 0x0 -+int attr lineHeight 0x0 -+int attr listChoiceBackgroundIndicator 0x0 -+int attr listChoiceIndicatorMultipleAnimated 0x0 -+int attr listChoiceIndicatorSingleAnimated 0x0 -+int attr listDividerAlertDialog 0x0 -+int attr listItemLayout 0x0 -+int attr listLayout 0x0 -+int attr listMenuViewStyle 0x0 -+int attr listPopupWindowStyle 0x0 -+int attr listPreferredItemHeight 0x0 -+int attr listPreferredItemHeightLarge 0x0 -+int attr listPreferredItemHeightSmall 0x0 -+int attr listPreferredItemPaddingEnd 0x0 -+int attr listPreferredItemPaddingLeft 0x0 -+int attr listPreferredItemPaddingRight 0x0 -+int attr listPreferredItemPaddingStart 0x0 -+int attr logo 0x0 -+int attr logoDescription 0x0 -+int attr mapbox_attributionClickable 0x0 -+int attr mapbox_attributionEnabled 0x0 -+int attr mapbox_attributionGravity 0x0 -+int attr mapbox_attributionIconColor 0x0 -+int attr mapbox_attributionMarginBottom 0x0 -+int attr mapbox_attributionMarginLeft 0x0 -+int attr mapbox_attributionMarginRight 0x0 -+int attr mapbox_attributionMarginTop 0x0 -+int attr mapbox_cameraAnchorX 0x0 -+int attr mapbox_cameraAnchorY 0x0 -+int attr mapbox_cameraBearing 0x0 -+int attr mapbox_cameraPaddingBottom 0x0 -+int attr mapbox_cameraPaddingLeft 0x0 -+int attr mapbox_cameraPaddingRight 0x0 -+int attr mapbox_cameraPaddingTop 0x0 -+int attr mapbox_cameraPitch 0x0 -+int attr mapbox_cameraTargetLat 0x0 -+int attr mapbox_cameraTargetLng 0x0 -+int attr mapbox_cameraZoom 0x0 -+int attr mapbox_compassClickable 0x0 -+int attr mapbox_compassEnabled 0x0 -+int attr mapbox_compassFadeWhenFacingNorth 0x0 -+int attr mapbox_compassGravity 0x0 -+int attr mapbox_compassImage 0x0 -+int attr mapbox_compassMarginBottom 0x0 -+int attr mapbox_compassMarginLeft 0x0 -+int attr mapbox_compassMarginRight 0x0 -+int attr mapbox_compassMarginTop 0x0 -+int attr mapbox_compassOpacity 0x0 -+int attr mapbox_compassRotation 0x0 -+int attr mapbox_compassVisibility 0x0 -+int attr mapbox_gesturesDoubleTapToZoomInEnabled 0x0 -+int attr mapbox_gesturesDoubleTouchToZoomOutEnabled 0x0 -+int attr mapbox_gesturesFocalPointX 0x0 -+int attr mapbox_gesturesFocalPointY 0x0 -+int attr mapbox_gesturesIncreasePinchToZoomThresholdWhenRotating 0x0 -+int attr mapbox_gesturesIncreaseRotateThresholdWhenPinchingToZoom 0x0 -+int attr mapbox_gesturesPinchScrollEnabled 0x0 -+int attr mapbox_gesturesPinchToZoomDecelerationEnabled 0x0 -+int attr mapbox_gesturesPinchToZoomEnabled 0x0 -+int attr mapbox_gesturesPitchEnabled 0x0 -+int attr mapbox_gesturesQuickZoomEnabled 0x0 -+int attr mapbox_gesturesRotateDecelerationEnabled 0x0 -+int attr mapbox_gesturesRotateEnabled 0x0 -+int attr mapbox_gesturesScrollDecelerationEnabled 0x0 -+int attr mapbox_gesturesScrollEnabled 0x0 -+int attr mapbox_gesturesScrollMode 0x0 -+int attr mapbox_gesturesSimultaneousRotateAndPinchToZoomEnabled 0x0 -+int attr mapbox_gesturesZoomAnimationAmount 0x0 -+int attr mapbox_locationComponentAccuracyRingBorderColor 0x0 -+int attr mapbox_locationComponentAccuracyRingColor 0x0 -+int attr mapbox_locationComponentEnabled 0x0 -+int attr mapbox_locationComponentLayerAbove 0x0 -+int attr mapbox_locationComponentLayerBelow 0x0 -+int attr mapbox_locationComponentLocationPuck 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck2DBearingImage 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck2DOpacity 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck2DScaleExpression 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck2DShadowImage 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck2DTopImage 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelOpacity 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_x 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_y 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_z 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelScaleExpression 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_x 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_y 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_z 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lat 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lon 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_z 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DModelUri 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DPosition_lat 0x0 -+int attr mapbox_locationComponentLocationPuckLocationPuck3DPosition_lon 0x0 -+int attr mapbox_locationComponentPuckBearingEnabled 0x0 -+int attr mapbox_locationComponentPuckBearingSource 0x0 -+int attr mapbox_locationComponentPulsingColor 0x0 -+int attr mapbox_locationComponentPulsingEnabled 0x0 -+int attr mapbox_locationComponentPulsingMaxRadius 0x0 -+int attr mapbox_locationComponentShowAccuracyRing 0x0 -+int attr mapbox_logoEnabled 0x0 -+int attr mapbox_logoGravity 0x0 -+int attr mapbox_logoMarginBottom 0x0 -+int attr mapbox_logoMarginLeft 0x0 -+int attr mapbox_logoMarginRight 0x0 -+int attr mapbox_logoMarginTop 0x0 -+int attr mapbox_mapAntialiasingSampleCount 0x0 -+int attr mapbox_mapConstrainMode 0x0 -+int attr mapbox_mapContextMode 0x0 -+int attr mapbox_mapCrossSourceCollisionsEnabled 0x0 -+int attr mapbox_mapFontFamily 0x0 -+int attr mapbox_mapGlyphRasterizationMode 0x0 -+int attr mapbox_mapOrientation 0x0 -+int attr mapbox_mapPixelRatio 0x0 -+int attr mapbox_mapSurface 0x0 -+int attr mapbox_mapViewportMode 0x0 -+int attr mapbox_optimizeForTerrainEnabled 0x0 -+int attr mapbox_resourcesAccessToken 0x0 -+int attr mapbox_resourcesBaseUrl 0x0 -+int attr mapbox_scaleBarBorderWidth 0x0 -+int attr mapbox_scaleBarEnabled 0x0 -+int attr mapbox_scaleBarGravity 0x0 -+int attr mapbox_scaleBarHeight 0x0 -+int attr mapbox_scaleBarIsMetricUnits 0x0 -+int attr mapbox_scaleBarMarginBottom 0x0 -+int attr mapbox_scaleBarMarginLeft 0x0 -+int attr mapbox_scaleBarMarginRight 0x0 -+int attr mapbox_scaleBarMarginTop 0x0 -+int attr mapbox_scaleBarPrimaryColor 0x0 -+int attr mapbox_scaleBarRatio 0x0 -+int attr mapbox_scaleBarRefreshInterval 0x0 -+int attr mapbox_scaleBarSecondaryColor 0x0 -+int attr mapbox_scaleBarShowTextBorder 0x0 -+int attr mapbox_scaleBarTextBarMargin 0x0 -+int attr mapbox_scaleBarTextBorderWidth 0x0 -+int attr mapbox_scaleBarTextColor 0x0 -+int attr mapbox_scaleBarTextSize 0x0 -+int attr mapbox_scaleBarUseContinuousRendering 0x0 -+int attr mapbox_styleUri 0x0 -+int attr maxButtonHeight 0x0 -+int attr measureWithLargestChild 0x0 -+int attr menu 0x0 -+int attr multiChoiceItemLayout 0x0 -+int attr navigationContentDescription 0x0 -+int attr navigationIcon 0x0 -+int attr navigationMode 0x0 -+int attr nestedScrollViewStyle 0x0 -+int attr numericModifiers 0x0 -+int attr overlapAnchor 0x0 -+int attr overlayImage 0x0 -+int attr paddingBottomNoButtons 0x0 -+int attr paddingEnd 0x0 -+int attr paddingStart 0x0 -+int attr paddingTopNoTitle 0x0 -+int attr panelBackground 0x0 -+int attr panelMenuListTheme 0x0 -+int attr panelMenuListWidth 0x0 -+int attr placeholderImage 0x0 -+int attr placeholderImageScaleType 0x0 -+int attr popupMenuStyle 0x0 -+int attr popupTheme 0x0 -+int attr popupWindowStyle 0x0 -+int attr preserveIconSpacing 0x0 -+int attr pressedStateOverlayImage 0x0 -+int attr progressBarAutoRotateInterval 0x0 -+int attr progressBarImage 0x0 -+int attr progressBarImageScaleType 0x0 -+int attr progressBarPadding 0x0 -+int attr progressBarStyle 0x0 -+int attr queryBackground 0x0 -+int attr queryHint 0x0 -+int attr queryPatterns 0x0 -+int attr radioButtonStyle 0x0 -+int attr ratingBarStyle 0x0 -+int attr ratingBarStyleIndicator 0x0 -+int attr ratingBarStyleSmall 0x0 -+int attr retryImage 0x0 -+int attr retryImageScaleType 0x0 -+int attr roundAsCircle 0x0 -+int attr roundBottomEnd 0x0 -+int attr roundBottomLeft 0x0 -+int attr roundBottomRight 0x0 -+int attr roundBottomStart 0x0 -+int attr roundTopEnd 0x0 -+int attr roundTopLeft 0x0 -+int attr roundTopRight 0x0 -+int attr roundTopStart 0x0 -+int attr roundWithOverlayColor 0x0 -+int attr roundedCornerRadius 0x0 -+int attr roundingBorderColor 0x0 -+int attr roundingBorderPadding 0x0 -+int attr roundingBorderWidth 0x0 -+int attr scopeUris 0x0 -+int attr searchHintIcon 0x0 -+int attr searchIcon 0x0 -+int attr searchViewStyle 0x0 -+int attr seekBarStyle 0x0 -+int attr selectableItemBackground 0x0 -+int attr selectableItemBackgroundBorderless 0x0 -+int attr shortcutMatchRequired 0x0 -+int attr showAsAction 0x0 -+int attr showDividers 0x0 -+int attr showText 0x0 -+int attr showTitle 0x0 -+int attr singleChoiceItemLayout 0x0 -+int attr spinBars 0x0 -+int attr spinnerDropDownItemStyle 0x0 -+int attr spinnerStyle 0x0 -+int attr splitTrack 0x0 -+int attr srcCompat 0x0 -+int attr state_above_anchor 0x0 -+int attr statusBarBackground 0x0 -+int attr subMenuArrow 0x0 -+int attr submitBackground 0x0 -+int attr subtitle 0x0 -+int attr subtitleTextAppearance 0x0 -+int attr subtitleTextColor 0x0 -+int attr subtitleTextStyle 0x0 -+int attr suggestionRowLayout 0x0 -+int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 -+int attr switchMinWidth 0x0 -+int attr switchPadding 0x0 -+int attr switchStyle 0x0 -+int attr switchTextAppearance 0x0 -+int attr textAllCaps 0x0 -+int attr textAppearanceLargePopupMenu 0x0 -+int attr textAppearanceListItem 0x0 -+int attr textAppearanceListItemSecondary 0x0 -+int attr textAppearanceListItemSmall 0x0 -+int attr textAppearancePopupMenuHeader 0x0 -+int attr textAppearanceSearchResultSubtitle 0x0 -+int attr textAppearanceSearchResultTitle 0x0 -+int attr textAppearanceSmallPopupMenu 0x0 -+int attr textColorAlertDialogListItem 0x0 -+int attr textColorSearchUrl 0x0 -+int attr textLocale 0x0 -+int attr theme 0x0 -+int attr thickness 0x0 -+int attr thumbTextPadding 0x0 -+int attr thumbTint 0x0 -+int attr thumbTintMode 0x0 -+int attr tickMark 0x0 -+int attr tickMarkTint 0x0 -+int attr tickMarkTintMode 0x0 -+int attr tint 0x0 -+int attr tintMode 0x0 -+int attr title 0x0 -+int attr titleMargin 0x0 -+int attr titleMarginBottom 0x0 -+int attr titleMarginEnd 0x0 -+int attr titleMarginStart 0x0 -+int attr titleMarginTop 0x0 -+int attr titleMargins 0x0 -+int attr titleTextAppearance 0x0 -+int attr titleTextColor 0x0 -+int attr titleTextStyle 0x0 -+int attr toolbarNavigationButtonStyle 0x0 -+int attr toolbarStyle 0x0 -+int attr tooltipForegroundColor 0x0 -+int attr tooltipFrameBackground 0x0 -+int attr tooltipText 0x0 -+int attr track 0x0 -+int attr trackTint 0x0 -+int attr trackTintMode 0x0 -+int attr ttcIndex 0x0 -+int attr viewAspectRatio 0x0 -+int attr viewInflaterClass 0x0 -+int attr voiceIcon 0x0 -+int attr windowActionBar 0x0 -+int attr windowActionBarOverlay 0x0 -+int attr windowActionModeOverlay 0x0 -+int attr windowFixedHeightMajor 0x0 -+int attr windowFixedHeightMinor 0x0 -+int attr windowFixedWidthMajor 0x0 -+int attr windowFixedWidthMinor 0x0 -+int attr windowMinWidthMajor 0x0 -+int attr windowMinWidthMinor 0x0 -+int attr windowNoTitle 0x0 -+int bool abc_action_bar_embed_tabs 0x0 -+int bool abc_config_actionMenuItemAllCaps 0x0 -+int color abc_background_cache_hint_selector_material_dark 0x0 -+int color abc_background_cache_hint_selector_material_light 0x0 -+int color abc_btn_colored_borderless_text_material 0x0 -+int color abc_btn_colored_text_material 0x0 -+int color abc_color_highlight_material 0x0 -+int color abc_decor_view_status_guard 0x0 -+int color abc_decor_view_status_guard_light 0x0 -+int color abc_hint_foreground_material_dark 0x0 -+int color abc_hint_foreground_material_light 0x0 -+int color abc_primary_text_disable_only_material_dark 0x0 -+int color abc_primary_text_disable_only_material_light 0x0 -+int color abc_primary_text_material_dark 0x0 -+int color abc_primary_text_material_light 0x0 -+int color abc_search_url_text 0x0 -+int color abc_search_url_text_normal 0x0 -+int color abc_search_url_text_pressed 0x0 -+int color abc_search_url_text_selected 0x0 -+int color abc_secondary_text_material_dark 0x0 -+int color abc_secondary_text_material_light 0x0 -+int color abc_tint_btn_checkable 0x0 -+int color abc_tint_default 0x0 -+int color abc_tint_edittext 0x0 -+int color abc_tint_seek_thumb 0x0 -+int color abc_tint_spinner 0x0 -+int color abc_tint_switch_track 0x0 -+int color accent_material_dark 0x0 -+int color accent_material_light 0x0 -+int color androidx_core_ripple_material_light 0x0 -+int color androidx_core_secondary_text_default_material_light 0x0 -+int color background_floating_material_dark 0x0 -+int color background_floating_material_light 0x0 -+int color background_material_dark 0x0 -+int color background_material_light 0x0 -+int color bright_foreground_disabled_material_dark 0x0 -+int color bright_foreground_disabled_material_light 0x0 -+int color bright_foreground_inverse_material_dark 0x0 -+int color bright_foreground_inverse_material_light 0x0 -+int color bright_foreground_material_dark 0x0 -+int color bright_foreground_material_light 0x0 -+int color button_material_dark 0x0 -+int color button_material_light 0x0 -+int color call_notification_answer_color 0x0 -+int color call_notification_decline_color 0x0 -+int color catalyst_logbox_background 0x0 -+int color catalyst_redbox_background 0x0 -+int color common_google_signin_btn_text_dark 0x0 -+int color common_google_signin_btn_text_dark_default 0x0 -+int color common_google_signin_btn_text_dark_disabled 0x0 -+int color common_google_signin_btn_text_dark_focused 0x0 -+int color common_google_signin_btn_text_dark_pressed 0x0 -+int color common_google_signin_btn_text_light 0x0 -+int color common_google_signin_btn_text_light_default 0x0 -+int color common_google_signin_btn_text_light_disabled 0x0 -+int color common_google_signin_btn_text_light_focused 0x0 -+int color common_google_signin_btn_text_light_pressed 0x0 -+int color common_google_signin_btn_tint 0x0 -+int color dim_foreground_disabled_material_dark 0x0 -+int color dim_foreground_disabled_material_light 0x0 -+int color dim_foreground_material_dark 0x0 -+int color dim_foreground_material_light 0x0 -+int color error_color_material_dark 0x0 -+int color error_color_material_light 0x0 -+int color foreground_material_dark 0x0 -+int color foreground_material_light 0x0 -+int color highlighted_text_material_dark 0x0 -+int color highlighted_text_material_light 0x0 -+int color mapbox_blue 0x0 -+int color mapbox_gray 0x0 -+int color mapbox_gray_dark 0x0 -+int color mapbox_location_layer_blue 0x0 -+int color mapbox_location_layer_gray 0x0 -+int color material_blue_grey_800 0x0 -+int color material_blue_grey_900 0x0 -+int color material_blue_grey_950 0x0 -+int color material_deep_teal_200 0x0 -+int color material_deep_teal_500 0x0 -+int color material_grey_100 0x0 -+int color material_grey_300 0x0 -+int color material_grey_50 0x0 -+int color material_grey_600 0x0 -+int color material_grey_800 0x0 -+int color material_grey_850 0x0 -+int color material_grey_900 0x0 -+int color notification_action_color_filter 0x0 -+int color notification_icon_bg_color 0x0 -+int color primary_dark_material_dark 0x0 -+int color primary_dark_material_light 0x0 -+int color primary_material_dark 0x0 -+int color primary_material_light 0x0 -+int color primary_text_default_material_dark 0x0 -+int color primary_text_default_material_light 0x0 -+int color primary_text_disabled_material_dark 0x0 -+int color primary_text_disabled_material_light 0x0 -+int color ripple_material_dark 0x0 -+int color ripple_material_light 0x0 -+int color secondary_text_default_material_dark 0x0 -+int color secondary_text_default_material_light 0x0 -+int color secondary_text_disabled_material_dark 0x0 -+int color secondary_text_disabled_material_light 0x0 -+int color switch_thumb_disabled_material_dark 0x0 -+int color switch_thumb_disabled_material_light 0x0 -+int color switch_thumb_material_dark 0x0 -+int color switch_thumb_material_light 0x0 -+int color switch_thumb_normal_material_dark 0x0 -+int color switch_thumb_normal_material_light 0x0 -+int color tooltip_background_dark 0x0 -+int color tooltip_background_light 0x0 -+int dimen abc_action_bar_content_inset_material 0x0 -+int dimen abc_action_bar_content_inset_with_nav 0x0 -+int dimen abc_action_bar_default_height_material 0x0 -+int dimen abc_action_bar_default_padding_end_material 0x0 -+int dimen abc_action_bar_default_padding_start_material 0x0 -+int dimen abc_action_bar_elevation_material 0x0 -+int dimen abc_action_bar_icon_vertical_padding_material 0x0 -+int dimen abc_action_bar_overflow_padding_end_material 0x0 -+int dimen abc_action_bar_overflow_padding_start_material 0x0 -+int dimen abc_action_bar_stacked_max_height 0x0 -+int dimen abc_action_bar_stacked_tab_max_width 0x0 -+int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 -+int dimen abc_action_bar_subtitle_top_margin_material 0x0 -+int dimen abc_action_button_min_height_material 0x0 -+int dimen abc_action_button_min_width_material 0x0 -+int dimen abc_action_button_min_width_overflow_material 0x0 -+int dimen abc_alert_dialog_button_bar_height 0x0 -+int dimen abc_alert_dialog_button_dimen 0x0 -+int dimen abc_button_inset_horizontal_material 0x0 -+int dimen abc_button_inset_vertical_material 0x0 -+int dimen abc_button_padding_horizontal_material 0x0 -+int dimen abc_button_padding_vertical_material 0x0 -+int dimen abc_cascading_menus_min_smallest_width 0x0 -+int dimen abc_config_prefDialogWidth 0x0 -+int dimen abc_control_corner_material 0x0 -+int dimen abc_control_inset_material 0x0 -+int dimen abc_control_padding_material 0x0 -+int dimen abc_dialog_corner_radius_material 0x0 -+int dimen abc_dialog_fixed_height_major 0x0 -+int dimen abc_dialog_fixed_height_minor 0x0 -+int dimen abc_dialog_fixed_width_major 0x0 -+int dimen abc_dialog_fixed_width_minor 0x0 -+int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 -+int dimen abc_dialog_list_padding_top_no_title 0x0 -+int dimen abc_dialog_min_width_major 0x0 -+int dimen abc_dialog_min_width_minor 0x0 -+int dimen abc_dialog_padding_material 0x0 -+int dimen abc_dialog_padding_top_material 0x0 -+int dimen abc_dialog_title_divider_material 0x0 -+int dimen abc_disabled_alpha_material_dark 0x0 -+int dimen abc_disabled_alpha_material_light 0x0 -+int dimen abc_dropdownitem_icon_width 0x0 -+int dimen abc_dropdownitem_text_padding_left 0x0 -+int dimen abc_dropdownitem_text_padding_right 0x0 -+int dimen abc_edit_text_inset_bottom_material 0x0 -+int dimen abc_edit_text_inset_horizontal_material 0x0 -+int dimen abc_edit_text_inset_top_material 0x0 -+int dimen abc_floating_window_z 0x0 -+int dimen abc_list_item_height_large_material 0x0 -+int dimen abc_list_item_height_material 0x0 -+int dimen abc_list_item_height_small_material 0x0 -+int dimen abc_list_item_padding_horizontal_material 0x0 -+int dimen abc_panel_menu_list_width 0x0 -+int dimen abc_progress_bar_height_material 0x0 -+int dimen abc_search_view_preferred_height 0x0 -+int dimen abc_search_view_preferred_width 0x0 -+int dimen abc_seekbar_track_background_height_material 0x0 -+int dimen abc_seekbar_track_progress_height_material 0x0 -+int dimen abc_select_dialog_padding_start_material 0x0 -+int dimen abc_star_big 0x0 -+int dimen abc_star_medium 0x0 -+int dimen abc_star_small 0x0 -+int dimen abc_switch_padding 0x0 -+int dimen abc_text_size_body_1_material 0x0 -+int dimen abc_text_size_body_2_material 0x0 -+int dimen abc_text_size_button_material 0x0 -+int dimen abc_text_size_caption_material 0x0 -+int dimen abc_text_size_display_1_material 0x0 -+int dimen abc_text_size_display_2_material 0x0 -+int dimen abc_text_size_display_3_material 0x0 -+int dimen abc_text_size_display_4_material 0x0 -+int dimen abc_text_size_headline_material 0x0 -+int dimen abc_text_size_large_material 0x0 -+int dimen abc_text_size_medium_material 0x0 -+int dimen abc_text_size_menu_header_material 0x0 -+int dimen abc_text_size_menu_material 0x0 -+int dimen abc_text_size_small_material 0x0 -+int dimen abc_text_size_subhead_material 0x0 -+int dimen abc_text_size_subtitle_material_toolbar 0x0 -+int dimen abc_text_size_title_material 0x0 -+int dimen abc_text_size_title_material_toolbar 0x0 -+int dimen autofill_inline_suggestion_icon_size 0x0 -+int dimen compass_view_size 0x0 -+int dimen compat_button_inset_horizontal_material 0x0 -+int dimen compat_button_inset_vertical_material 0x0 -+int dimen compat_button_padding_horizontal_material 0x0 -+int dimen compat_button_padding_vertical_material 0x0 -+int dimen compat_control_corner_material 0x0 -+int dimen compat_notification_large_icon_max_height 0x0 -+int dimen compat_notification_large_icon_max_width 0x0 -+int dimen disabled_alpha_material_dark 0x0 -+int dimen disabled_alpha_material_light 0x0 -+int dimen highlight_alpha_material_colored 0x0 -+int dimen highlight_alpha_material_dark 0x0 -+int dimen highlight_alpha_material_light 0x0 -+int dimen hint_alpha_material_dark 0x0 -+int dimen hint_alpha_material_light 0x0 -+int dimen hint_pressed_alpha_material_dark 0x0 -+int dimen hint_pressed_alpha_material_light 0x0 -+int dimen mapbox_angular_velocity_multiplier 0x0 -+int dimen mapbox_defaultMultiTapMovementThreshold 0x0 -+int dimen mapbox_defaultScaleSpanSinceStartThreshold 0x0 -+int dimen mapbox_defaultShovePixelThreshold 0x0 -+int dimen mapbox_density_constant 0x0 -+int dimen mapbox_internalMinSpan23 0x0 -+int dimen mapbox_internalMinSpan24 0x0 -+int dimen mapbox_locationComponentTrackingInitialMoveThreshold 0x0 -+int dimen mapbox_locationComponentTrackingMultiFingerMoveThreshold 0x0 -+int dimen mapbox_minimum_angled_scale_speed 0x0 -+int dimen mapbox_minimum_angular_velocity 0x0 -+int dimen mapbox_minimum_scale_span_when_rotating 0x0 -+int dimen mapbox_minimum_scale_speed 0x0 -+int dimen mapbox_minimum_scale_velocity 0x0 -+int dimen mapbox_my_locationview_outer_circle 0x0 -+int dimen notification_action_icon_size 0x0 -+int dimen notification_action_text_size 0x0 -+int dimen notification_big_circle_margin 0x0 -+int dimen notification_content_margin_start 0x0 -+int dimen notification_large_icon_height 0x0 -+int dimen notification_large_icon_width 0x0 -+int dimen notification_main_column_padding_top 0x0 -+int dimen notification_media_narrow_margin 0x0 -+int dimen notification_right_icon_size 0x0 -+int dimen notification_right_side_padding_top 0x0 -+int dimen notification_small_icon_background_padding 0x0 -+int dimen notification_small_icon_size_as_large 0x0 -+int dimen notification_subtext_size 0x0 -+int dimen notification_top_pad 0x0 -+int dimen notification_top_pad_large_text 0x0 -+int dimen tooltip_corner_radius 0x0 -+int dimen tooltip_horizontal_padding 0x0 -+int dimen tooltip_margin 0x0 -+int dimen tooltip_precise_anchor_extra_offset 0x0 -+int dimen tooltip_precise_anchor_threshold 0x0 -+int dimen tooltip_vertical_padding 0x0 -+int dimen tooltip_y_offset_non_touch 0x0 -+int dimen tooltip_y_offset_touch 0x0 -+int drawable abc_ab_share_pack_mtrl_alpha 0x0 -+int drawable abc_action_bar_item_background_material 0x0 -+int drawable abc_btn_borderless_material 0x0 -+int drawable abc_btn_check_material 0x0 -+int drawable abc_btn_check_material_anim 0x0 -+int drawable abc_btn_check_to_on_mtrl_000 0x0 -+int drawable abc_btn_check_to_on_mtrl_015 0x0 -+int drawable abc_btn_colored_material 0x0 -+int drawable abc_btn_default_mtrl_shape 0x0 -+int drawable abc_btn_radio_material 0x0 -+int drawable abc_btn_radio_material_anim 0x0 -+int drawable abc_btn_radio_to_on_mtrl_000 0x0 -+int drawable abc_btn_radio_to_on_mtrl_015 0x0 -+int drawable abc_btn_switch_to_on_mtrl_00001 0x0 -+int drawable abc_btn_switch_to_on_mtrl_00012 0x0 -+int drawable abc_cab_background_internal_bg 0x0 -+int drawable abc_cab_background_top_material 0x0 -+int drawable abc_cab_background_top_mtrl_alpha 0x0 -+int drawable abc_control_background_material 0x0 -+int drawable abc_dialog_material_background 0x0 -+int drawable abc_edit_text_material 0x0 -+int drawable abc_ic_ab_back_material 0x0 -+int drawable abc_ic_arrow_drop_right_black_24dp 0x0 -+int drawable abc_ic_clear_material 0x0 -+int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 -+int drawable abc_ic_go_search_api_material 0x0 -+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 -+int drawable abc_ic_menu_cut_mtrl_alpha 0x0 -+int drawable abc_ic_menu_overflow_material 0x0 -+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 -+int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 -+int drawable abc_ic_menu_share_mtrl_alpha 0x0 -+int drawable abc_ic_search_api_material 0x0 -+int drawable abc_ic_voice_search_api_material 0x0 -+int drawable abc_item_background_holo_dark 0x0 -+int drawable abc_item_background_holo_light 0x0 -+int drawable abc_list_divider_material 0x0 -+int drawable abc_list_divider_mtrl_alpha 0x0 -+int drawable abc_list_focused_holo 0x0 -+int drawable abc_list_longpressed_holo 0x0 -+int drawable abc_list_pressed_holo_dark 0x0 -+int drawable abc_list_pressed_holo_light 0x0 -+int drawable abc_list_selector_background_transition_holo_dark 0x0 -+int drawable abc_list_selector_background_transition_holo_light 0x0 -+int drawable abc_list_selector_disabled_holo_dark 0x0 -+int drawable abc_list_selector_disabled_holo_light 0x0 -+int drawable abc_list_selector_holo_dark 0x0 -+int drawable abc_list_selector_holo_light 0x0 -+int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 -+int drawable abc_popup_background_mtrl_mult 0x0 -+int drawable abc_ratingbar_indicator_material 0x0 -+int drawable abc_ratingbar_material 0x0 -+int drawable abc_ratingbar_small_material 0x0 -+int drawable abc_scrubber_control_off_mtrl_alpha 0x0 -+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 -+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 -+int drawable abc_scrubber_primary_mtrl_alpha 0x0 -+int drawable abc_scrubber_track_mtrl_alpha 0x0 -+int drawable abc_seekbar_thumb_material 0x0 -+int drawable abc_seekbar_tick_mark_material 0x0 -+int drawable abc_seekbar_track_material 0x0 -+int drawable abc_spinner_mtrl_am_alpha 0x0 -+int drawable abc_spinner_textfield_background_material 0x0 -+int drawable abc_star_black_48dp 0x0 -+int drawable abc_star_half_black_48dp 0x0 -+int drawable abc_switch_thumb_material 0x0 -+int drawable abc_switch_track_mtrl_alpha 0x0 -+int drawable abc_tab_indicator_material 0x0 -+int drawable abc_tab_indicator_mtrl_alpha 0x0 -+int drawable abc_text_cursor_material 0x0 -+int drawable abc_text_select_handle_left_mtrl 0x0 -+int drawable abc_text_select_handle_middle_mtrl 0x0 -+int drawable abc_text_select_handle_right_mtrl 0x0 -+int drawable abc_textfield_activated_mtrl_alpha 0x0 -+int drawable abc_textfield_default_mtrl_alpha 0x0 -+int drawable abc_textfield_search_activated_mtrl_alpha 0x0 -+int drawable abc_textfield_search_default_mtrl_alpha 0x0 -+int drawable abc_textfield_search_material 0x0 -+int drawable abc_vector_test 0x0 -+int drawable autofill_inline_suggestion_chip_background 0x0 -+int drawable btn_checkbox_checked_mtrl 0x0 -+int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 -+int drawable btn_checkbox_unchecked_mtrl 0x0 -+int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 -+int drawable btn_radio_off_mtrl 0x0 -+int drawable btn_radio_off_to_on_mtrl_animation 0x0 -+int drawable btn_radio_on_mtrl 0x0 -+int drawable btn_radio_on_to_off_mtrl_animation 0x0 -+int drawable common_full_open_on_phone 0x0 -+int drawable common_google_signin_btn_icon_dark 0x0 -+int drawable common_google_signin_btn_icon_dark_focused 0x0 -+int drawable common_google_signin_btn_icon_dark_normal 0x0 -+int drawable common_google_signin_btn_icon_dark_normal_background 0x0 -+int drawable common_google_signin_btn_icon_disabled 0x0 -+int drawable common_google_signin_btn_icon_light 0x0 -+int drawable common_google_signin_btn_icon_light_focused 0x0 -+int drawable common_google_signin_btn_icon_light_normal 0x0 -+int drawable common_google_signin_btn_icon_light_normal_background 0x0 -+int drawable common_google_signin_btn_text_dark 0x0 -+int drawable common_google_signin_btn_text_dark_focused 0x0 -+int drawable common_google_signin_btn_text_dark_normal 0x0 -+int drawable common_google_signin_btn_text_dark_normal_background 0x0 -+int drawable common_google_signin_btn_text_disabled 0x0 -+int drawable common_google_signin_btn_text_light 0x0 -+int drawable common_google_signin_btn_text_light_focused 0x0 -+int drawable common_google_signin_btn_text_light_normal 0x0 -+int drawable common_google_signin_btn_text_light_normal_background 0x0 -+int drawable empty 0x0 -+int drawable empty_drawable 0x0 -+int drawable googleg_disabled_color_18 0x0 -+int drawable googleg_standard_color_18 0x0 -+int drawable ic_call_answer 0x0 -+int drawable ic_call_answer_low 0x0 -+int drawable ic_call_answer_video 0x0 -+int drawable ic_call_answer_video_low 0x0 -+int drawable ic_call_decline 0x0 -+int drawable ic_call_decline_low 0x0 -+int drawable ic_resume 0x0 -+int drawable mapbox_attribution_default 0x0 -+int drawable mapbox_attribution_selected 0x0 -+int drawable mapbox_attribution_selector 0x0 -+int drawable mapbox_compass_icon 0x0 -+int drawable mapbox_info_bg_selector 0x0 -+int drawable mapbox_info_icon_default 0x0 -+int drawable mapbox_info_icon_selected 0x0 -+int drawable mapbox_logo_helmet 0x0 -+int drawable mapbox_logo_icon 0x0 -+int drawable mapbox_mylocation_bg_shape 0x0 -+int drawable mapbox_mylocation_icon_bearing 0x0 -+int drawable mapbox_mylocation_icon_default 0x0 -+int drawable mapbox_popup_window_transparent 0x0 -+int drawable mapbox_rounded_corner 0x0 -+int drawable mapbox_user_bearing_icon 0x0 -+int drawable mapbox_user_icon 0x0 -+int drawable mapbox_user_icon_shadow 0x0 -+int drawable mapbox_user_icon_stale 0x0 -+int drawable mapbox_user_puck_icon 0x0 -+int drawable mapbox_user_stroke_icon 0x0 -+int drawable notification_action_background 0x0 -+int drawable notification_bg 0x0 -+int drawable notification_bg_low 0x0 -+int drawable notification_bg_low_normal 0x0 -+int drawable notification_bg_low_pressed 0x0 -+int drawable notification_bg_normal 0x0 -+int drawable notification_bg_normal_pressed 0x0 -+int drawable notification_icon_background 0x0 -+int drawable notification_oversize_large_icon_bg 0x0 -+int drawable notification_template_icon_bg 0x0 -+int drawable notification_template_icon_low_bg 0x0 -+int drawable notification_tile_bg 0x0 -+int drawable notify_panel_notification_icon_bg 0x0 -+int drawable paused_in_debugger_background 0x0 -+int drawable paused_in_debugger_dialog_background 0x0 -+int drawable red_marker 0x0 -+int drawable redbox_top_border_background 0x0 -+int drawable ripple_effect 0x0 -+int drawable test_level_drawable 0x0 -+int drawable tooltip_frame_dark 0x0 -+int drawable tooltip_frame_light 0x0 -+int id accessibility_action_clickable_span 0x0 -+int id accessibility_actions 0x0 -+int id accessibility_collection 0x0 -+int id accessibility_collection_item 0x0 -+int id accessibility_custom_action_0 0x0 -+int id accessibility_custom_action_1 0x0 -+int id accessibility_custom_action_10 0x0 -+int id accessibility_custom_action_11 0x0 -+int id accessibility_custom_action_12 0x0 -+int id accessibility_custom_action_13 0x0 -+int id accessibility_custom_action_14 0x0 -+int id accessibility_custom_action_15 0x0 -+int id accessibility_custom_action_16 0x0 -+int id accessibility_custom_action_17 0x0 -+int id accessibility_custom_action_18 0x0 -+int id accessibility_custom_action_19 0x0 -+int id accessibility_custom_action_2 0x0 -+int id accessibility_custom_action_20 0x0 -+int id accessibility_custom_action_21 0x0 -+int id accessibility_custom_action_22 0x0 -+int id accessibility_custom_action_23 0x0 -+int id accessibility_custom_action_24 0x0 -+int id accessibility_custom_action_25 0x0 -+int id accessibility_custom_action_26 0x0 -+int id accessibility_custom_action_27 0x0 -+int id accessibility_custom_action_28 0x0 -+int id accessibility_custom_action_29 0x0 -+int id accessibility_custom_action_3 0x0 -+int id accessibility_custom_action_30 0x0 -+int id accessibility_custom_action_31 0x0 -+int id accessibility_custom_action_4 0x0 -+int id accessibility_custom_action_5 0x0 -+int id accessibility_custom_action_6 0x0 -+int id accessibility_custom_action_7 0x0 -+int id accessibility_custom_action_8 0x0 -+int id accessibility_custom_action_9 0x0 -+int id accessibility_hint 0x0 -+int id accessibility_label 0x0 -+int id accessibility_links 0x0 -+int id accessibility_role 0x0 -+int id accessibility_state 0x0 -+int id accessibility_state_expanded 0x0 -+int id accessibility_value 0x0 -+int id action_bar 0x0 -+int id action_bar_activity_content 0x0 -+int id action_bar_container 0x0 -+int id action_bar_root 0x0 -+int id action_bar_spinner 0x0 -+int id action_bar_subtitle 0x0 -+int id action_bar_title 0x0 -+int id action_container 0x0 -+int id action_context_bar 0x0 -+int id action_divider 0x0 -+int id action_image 0x0 -+int id action_menu_divider 0x0 -+int id action_menu_presenter 0x0 -+int id action_mode_bar 0x0 -+int id action_mode_bar_stub 0x0 -+int id action_mode_close_button 0x0 -+int id action_text 0x0 -+int id actions 0x0 -+int id activity_chooser_view_content 0x0 -+int id add 0x0 -+int id adjust_height 0x0 -+int id adjust_width 0x0 -+int id alertTitle 0x0 -+int id alert_title 0x0 -+int id all_glyphs_rasterized_locally 0x0 -+int id annotation_img 0x0 -+int id annotation_layout 0x0 -+int id annotation_view_container 0x0 -+int id async 0x0 -+int id auto 0x0 -+int id autofill_inline_suggestion_end_icon 0x0 -+int id autofill_inline_suggestion_start_icon 0x0 -+int id autofill_inline_suggestion_subtitle 0x0 -+int id autofill_inline_suggestion_title 0x0 -+int id blocking 0x0 -+int id bottom 0x0 -+int id button 0x0 -+int id buttonPanel 0x0 -+int id button_text 0x0 -+int id catalyst_redbox_title 0x0 -+int id center 0x0 -+int id centerCrop 0x0 -+int id centerInside 0x0 -+int id checkbox 0x0 -+int id checked 0x0 -+int id chronometer 0x0 -+int id content 0x0 -+int id contentPanel 0x0 -+int id course 0x0 -+int id custom 0x0 -+int id customPanel 0x0 -+int id dark 0x0 -+int id decor_content_parent 0x0 -+int id default_activity_button 0x0 -+int id default_viewport 0x0 -+int id dialog_button 0x0 -+int id downwards 0x0 -+int id edit_query 0x0 -+int id edit_text_id 0x0 -+int id end 0x0 -+int id expand_activities_button 0x0 -+int id expanded_menu 0x0 -+int id filter 0x0 -+int id fitBottomStart 0x0 -+int id fitCenter 0x0 -+int id fitEnd 0x0 -+int id fitStart 0x0 -+int id fitXY 0x0 -+int id flipped_y 0x0 -+int id focusCrop 0x0 -+int id forever 0x0 -+int id fps_text 0x0 -+int id fragment_container_view_tag 0x0 -+int id group_divider 0x0 -+int id heading 0x0 -+int id height_only 0x0 -+int id hide_ime_id 0x0 -+int id home 0x0 -+int id horizontal 0x0 -+int id horizontal_and_vertical 0x0 -+int id icon 0x0 -+int id icon_group 0x0 -+int id icon_only 0x0 -+int id ideographs_rasterized_locally 0x0 -+int id image 0x0 -+int id info 0x0 -+int id invalidate_transform 0x0 -+int id italic 0x0 -+int id labelled_by 0x0 -+int id left 0x0 -+int id lefttwards 0x0 -+int id light 0x0 -+int id line1 0x0 -+int id line3 0x0 -+int id listMode 0x0 -+int id list_item 0x0 -+int id location_puck_2_d 0x0 -+int id location_puck_3_d 0x0 -+int id mapView 0x0 -+int id message 0x0 -+int id mix_blend_mode 0x0 -+int id multiply 0x0 -+int id no_glyphs_rasterized_locally 0x0 -+int id none 0x0 -+int id normal 0x0 -+int id notification_background 0x0 -+int id notification_main_column 0x0 -+int id notification_main_column_container 0x0 -+int id off 0x0 -+int id on 0x0 -+int id parentPanel 0x0 -+int id pointer_events 0x0 -+int id progress_circular 0x0 -+int id progress_horizontal 0x0 -+int id radio 0x0 -+int id react_test_id 0x0 -+int id report_drawn 0x0 -+int id right 0x0 -+int id right_icon 0x0 -+int id right_side 0x0 -+int id rightwards 0x0 -+int id rn_frame_file 0x0 -+int id rn_frame_method 0x0 -+int id rn_redbox_dismiss_button 0x0 -+int id rn_redbox_line_separator 0x0 -+int id rn_redbox_loading_indicator 0x0 -+int id rn_redbox_reload_button 0x0 -+int id rn_redbox_report_button 0x0 -+int id rn_redbox_report_label 0x0 -+int id rn_redbox_stack 0x0 -+int id role 0x0 -+int id screen 0x0 -+int id scrollIndicatorDown 0x0 -+int id scrollIndicatorUp 0x0 -+int id scrollView 0x0 -+int id search_badge 0x0 -+int id search_bar 0x0 -+int id search_button 0x0 -+int id search_close_btn 0x0 -+int id search_edit_frame 0x0 -+int id search_go_btn 0x0 -+int id search_mag_icon 0x0 -+int id search_plate 0x0 -+int id search_src_text 0x0 -+int id search_voice_btn 0x0 -+int id select_dialog_listview 0x0 -+int id shared 0x0 -+int id shortcut 0x0 -+int id spacer 0x0 -+int id special_effects_controller_view_tag 0x0 -+int id split_action_bar 0x0 -+int id src_atop 0x0 -+int id src_in 0x0 -+int id src_over 0x0 -+int id standard 0x0 -+int id start 0x0 -+int id submenuarrow 0x0 -+int id submit_area 0x0 -+int id surface_view 0x0 -+int id tabMode 0x0 -+int id tag_accessibility_actions 0x0 -+int id tag_accessibility_clickable_spans 0x0 -+int id tag_accessibility_heading 0x0 -+int id tag_accessibility_pane_title 0x0 -+int id tag_on_apply_window_listener 0x0 -+int id tag_on_receive_content_listener 0x0 -+int id tag_on_receive_content_mime_types 0x0 -+int id tag_screen_reader_focusable 0x0 -+int id tag_state_description 0x0 -+int id tag_transition_group 0x0 -+int id tag_unhandled_key_event_manager 0x0 -+int id tag_unhandled_key_listeners 0x0 -+int id tag_window_insets_animation_callback 0x0 -+int id text 0x0 -+int id text2 0x0 -+int id textSpacerNoButtons 0x0 -+int id textSpacerNoTitle 0x0 -+int id texture_view 0x0 -+int id time 0x0 -+int id title 0x0 -+int id titleDividerNoCustom 0x0 -+int id title_template 0x0 -+int id top 0x0 -+int id topPanel 0x0 -+int id transform 0x0 -+int id transform_origin 0x0 -+int id unchecked 0x0 -+int id uniform 0x0 -+int id unique 0x0 -+int id up 0x0 -+int id upwards 0x0 -+int id use_hardware_layer 0x0 -+int id vertical 0x0 -+int id view_clipped 0x0 -+int id view_tag_instance_handle 0x0 -+int id view_tag_native_id 0x0 -+int id view_tree_lifecycle_owner 0x0 -+int id view_tree_on_back_pressed_dispatcher_owner 0x0 -+int id view_tree_saved_state_registry_owner 0x0 -+int id view_tree_view_model_store_owner 0x0 -+int id visible_removing_fragment_view_tag 0x0 -+int id wide 0x0 -+int id width_and_height 0x0 -+int id wrap_content 0x0 -+int integer abc_config_activityDefaultDur 0x0 -+int integer abc_config_activityShortDur 0x0 -+int integer cancel_button_image_alpha 0x0 -+int integer config_tooltipAnimTime 0x0 -+int integer google_play_services_version 0x0 -+int integer react_native_dev_server_port 0x0 -+int integer status_bar_notification_info_maxnum 0x0 -+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 -+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 -+int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 -+int interpolator fast_out_slow_in 0x0 -+int layout abc_action_bar_title_item 0x0 -+int layout abc_action_bar_up_container 0x0 -+int layout abc_action_menu_item_layout 0x0 -+int layout abc_action_menu_layout 0x0 -+int layout abc_action_mode_bar 0x0 -+int layout abc_action_mode_close_item_material 0x0 -+int layout abc_activity_chooser_view 0x0 -+int layout abc_activity_chooser_view_list_item 0x0 -+int layout abc_alert_dialog_button_bar_material 0x0 -+int layout abc_alert_dialog_material 0x0 -+int layout abc_alert_dialog_title_material 0x0 -+int layout abc_cascading_menu_item_layout 0x0 -+int layout abc_dialog_title_material 0x0 -+int layout abc_expanded_menu_layout 0x0 -+int layout abc_list_menu_item_checkbox 0x0 -+int layout abc_list_menu_item_icon 0x0 -+int layout abc_list_menu_item_layout 0x0 -+int layout abc_list_menu_item_radio 0x0 -+int layout abc_popup_menu_header_item_layout 0x0 -+int layout abc_popup_menu_item_layout 0x0 -+int layout abc_screen_content_include 0x0 -+int layout abc_screen_simple 0x0 -+int layout abc_screen_simple_overlay_action_mode 0x0 -+int layout abc_screen_toolbar 0x0 -+int layout abc_search_dropdown_item_icons_2line 0x0 -+int layout abc_search_view 0x0 -+int layout abc_select_dialog_material 0x0 -+int layout abc_tooltip 0x0 -+int layout activity_dummy 0x0 -+int layout alert_title_layout 0x0 -+int layout annotation 0x0 -+int layout autofill_inline_suggestion 0x0 -+int layout custom_dialog 0x0 -+int layout dev_loading_view 0x0 -+int layout fps_view 0x0 -+int layout ime_base_split_test_activity 0x0 -+int layout ime_secondary_split_test_activity 0x0 -+int layout mapbox_attribution_list_item 0x0 -+int layout notification_action 0x0 -+int layout notification_action_tombstone 0x0 -+int layout notification_template_custom_big 0x0 -+int layout notification_template_icon_group 0x0 -+int layout notification_template_part_chronometer 0x0 -+int layout notification_template_part_time 0x0 -+int layout paused_in_debugger_view 0x0 -+int layout redbox_item_frame 0x0 -+int layout redbox_item_title 0x0 -+int layout redbox_view 0x0 -+int layout select_dialog_item_material 0x0 -+int layout select_dialog_multichoice_material 0x0 -+int layout select_dialog_singlechoice_material 0x0 -+int layout support_simple_spinner_dropdown_item 0x0 -+int string abc_action_bar_home_description 0x0 -+int string abc_action_bar_up_description 0x0 -+int string abc_action_menu_overflow_description 0x0 -+int string abc_action_mode_done 0x0 -+int string abc_activity_chooser_view_see_all 0x0 -+int string abc_activitychooserview_choose_application 0x0 -+int string abc_capital_off 0x0 -+int string abc_capital_on 0x0 -+int string abc_menu_alt_shortcut_label 0x0 -+int string abc_menu_ctrl_shortcut_label 0x0 -+int string abc_menu_delete_shortcut_label 0x0 -+int string abc_menu_enter_shortcut_label 0x0 -+int string abc_menu_function_shortcut_label 0x0 -+int string abc_menu_meta_shortcut_label 0x0 -+int string abc_menu_shift_shortcut_label 0x0 -+int string abc_menu_space_shortcut_label 0x0 -+int string abc_menu_sym_shortcut_label 0x0 -+int string abc_prepend_shortcut_label 0x0 -+int string abc_search_hint 0x0 -+int string abc_searchview_description_clear 0x0 -+int string abc_searchview_description_query 0x0 -+int string abc_searchview_description_search 0x0 -+int string abc_searchview_description_submit 0x0 -+int string abc_searchview_description_voice 0x0 -+int string abc_shareactionprovider_share_with 0x0 -+int string abc_shareactionprovider_share_with_application 0x0 -+int string abc_toolbar_collapse_description 0x0 -+int string alert_description 0x0 -+int string androidx_startup 0x0 -+int string app_name 0x0 -+int string call_notification_answer_action 0x0 -+int string call_notification_answer_video_action 0x0 -+int string call_notification_decline_action 0x0 -+int string call_notification_hang_up_action 0x0 -+int string call_notification_incoming_text 0x0 -+int string call_notification_ongoing_text 0x0 -+int string call_notification_screening_text 0x0 -+int string catalyst_change_bundle_location 0x0 -+int string catalyst_copy_button 0x0 -+int string catalyst_debug_connecting 0x0 -+int string catalyst_debug_error 0x0 -+int string catalyst_debug_open 0x0 -+int string catalyst_debug_open_disabled 0x0 -+int string catalyst_dev_menu_header 0x0 -+int string catalyst_dev_menu_sub_header 0x0 -+int string catalyst_dismiss_button 0x0 -+int string catalyst_heap_capture 0x0 -+int string catalyst_hot_reloading 0x0 -+int string catalyst_hot_reloading_auto_disable 0x0 -+int string catalyst_hot_reloading_auto_enable 0x0 -+int string catalyst_hot_reloading_stop 0x0 -+int string catalyst_inspector_toggle 0x0 -+int string catalyst_loading_from_url 0x0 -+int string catalyst_open_debugger_error 0x0 -+int string catalyst_perf_monitor 0x0 -+int string catalyst_perf_monitor_stop 0x0 -+int string catalyst_reload 0x0 -+int string catalyst_reload_button 0x0 -+int string catalyst_reload_error 0x0 -+int string catalyst_report_button 0x0 -+int string catalyst_sample_profiler_toggle 0x0 -+int string catalyst_settings 0x0 -+int string catalyst_settings_title 0x0 -+int string combobox_description 0x0 -+int string common_google_play_services_enable_button 0x0 -+int string common_google_play_services_enable_text 0x0 -+int string common_google_play_services_enable_title 0x0 -+int string common_google_play_services_install_button 0x0 -+int string common_google_play_services_install_text 0x0 -+int string common_google_play_services_install_title 0x0 -+int string common_google_play_services_notification_channel_name 0x0 -+int string common_google_play_services_notification_ticker 0x0 -+int string common_google_play_services_unknown_issue 0x0 -+int string common_google_play_services_unsupported_text 0x0 -+int string common_google_play_services_update_button 0x0 -+int string common_google_play_services_update_text 0x0 -+int string common_google_play_services_update_title 0x0 -+int string common_google_play_services_updating_text 0x0 -+int string common_google_play_services_wear_update_text 0x0 -+int string common_open_on_phone 0x0 -+int string common_signin_button_text 0x0 -+int string common_signin_button_text_long 0x0 -+int string header_description 0x0 -+int string image_description 0x0 -+int string imagebutton_description 0x0 -+int string link_description 0x0 -+int string mapbox_attributionErrorNoBrowser 0x0 -+int string mapbox_attributionTelemetryMessage 0x0 -+int string mapbox_attributionTelemetryNegative 0x0 -+int string mapbox_attributionTelemetryNeutral 0x0 -+int string mapbox_attributionTelemetryPositive 0x0 -+int string mapbox_attributionTelemetryTitle 0x0 -+int string mapbox_attributionsDialogTitle 0x0 -+int string mapbox_compassContentDescription 0x0 -+int string mapbox_myLocationViewContentDescription 0x0 -+int string mapbox_privacy_policy 0x0 -+int string mapbox_telemetryImproveMap 0x0 -+int string mapbox_telemetryLink 0x0 -+int string mapbox_telemetrySettings 0x0 -+int string mapbox_warning_attribution_disabled 0x0 -+int string mapbox_warning_logo_disabled 0x0 -+int string menu_description 0x0 -+int string menubar_description 0x0 -+int string menuitem_description 0x0 -+int string progressbar_description 0x0 -+int string radiogroup_description 0x0 -+int string rn_tab_description 0x0 -+int string scrollbar_description 0x0 -+int string search_menu_title 0x0 -+int string spinbutton_description 0x0 -+int string state_busy_description 0x0 -+int string state_collapsed_description 0x0 -+int string state_expanded_description 0x0 -+int string state_mixed_description 0x0 -+int string state_off_description 0x0 -+int string state_on_description 0x0 -+int string state_unselected_description 0x0 -+int string status_bar_notification_info_overflow 0x0 -+int string summary_description 0x0 -+int string tablist_description 0x0 -+int string timer_description 0x0 -+int string toolbar_description 0x0 -+int style AlertDialog_AppCompat 0x0 -+int style AlertDialog_AppCompat_Light 0x0 -+int style Animation_AppCompat_Dialog 0x0 -+int style Animation_AppCompat_DropDownUp 0x0 -+int style Animation_AppCompat_Tooltip 0x0 -+int style Animation_Catalyst_LogBox 0x0 -+int style Animation_Catalyst_RedBox 0x0 -+int style Base_AlertDialog_AppCompat 0x0 -+int style Base_AlertDialog_AppCompat_Light 0x0 -+int style Base_Animation_AppCompat_Dialog 0x0 -+int style Base_Animation_AppCompat_DropDownUp 0x0 -+int style Base_Animation_AppCompat_Tooltip 0x0 -+int style Base_DialogWindowTitleBackground_AppCompat 0x0 -+int style Base_DialogWindowTitle_AppCompat 0x0 -+int style Base_TextAppearance_AppCompat 0x0 -+int style Base_TextAppearance_AppCompat_Body1 0x0 -+int style Base_TextAppearance_AppCompat_Body2 0x0 -+int style Base_TextAppearance_AppCompat_Button 0x0 -+int style Base_TextAppearance_AppCompat_Caption 0x0 -+int style Base_TextAppearance_AppCompat_Display1 0x0 -+int style Base_TextAppearance_AppCompat_Display2 0x0 -+int style Base_TextAppearance_AppCompat_Display3 0x0 -+int style Base_TextAppearance_AppCompat_Display4 0x0 -+int style Base_TextAppearance_AppCompat_Headline 0x0 -+int style Base_TextAppearance_AppCompat_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Large 0x0 -+int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -+int style Base_TextAppearance_AppCompat_Medium 0x0 -+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Menu 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 -+int style Base_TextAppearance_AppCompat_Small 0x0 -+int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Subhead 0x0 -+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Title 0x0 -+int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Tooltip 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 -+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -+int style Base_ThemeOverlay_AppCompat 0x0 -+int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 -+int style Base_ThemeOverlay_AppCompat_Dark 0x0 -+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -+int style Base_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 -+int style Base_ThemeOverlay_AppCompat_Light 0x0 -+int style Base_Theme_AppCompat 0x0 -+int style Base_Theme_AppCompat_CompactMenu 0x0 -+int style Base_Theme_AppCompat_Dialog 0x0 -+int style Base_Theme_AppCompat_DialogWhenLarge 0x0 -+int style Base_Theme_AppCompat_Dialog_Alert 0x0 -+int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 -+int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 -+int style Base_Theme_AppCompat_Light 0x0 -+int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 -+int style Base_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 -+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_V21_Theme_AppCompat 0x0 -+int style Base_V21_Theme_AppCompat_Dialog 0x0 -+int style Base_V21_Theme_AppCompat_Light 0x0 -+int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_V22_Theme_AppCompat 0x0 -+int style Base_V22_Theme_AppCompat_Light 0x0 -+int style Base_V23_Theme_AppCompat 0x0 -+int style Base_V23_Theme_AppCompat_Light 0x0 -+int style Base_V26_Theme_AppCompat 0x0 -+int style Base_V26_Theme_AppCompat_Light 0x0 -+int style Base_V26_Widget_AppCompat_Toolbar 0x0 -+int style Base_V28_Theme_AppCompat 0x0 -+int style Base_V28_Theme_AppCompat_Light 0x0 -+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_V7_Theme_AppCompat 0x0 -+int style Base_V7_Theme_AppCompat_Dialog 0x0 -+int style Base_V7_Theme_AppCompat_Light 0x0 -+int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Base_V7_Widget_AppCompat_EditText 0x0 -+int style Base_V7_Widget_AppCompat_Toolbar 0x0 -+int style Base_Widget_AppCompat_ActionBar 0x0 -+int style Base_Widget_AppCompat_ActionBar_Solid 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabText 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabView 0x0 -+int style Base_Widget_AppCompat_ActionButton 0x0 -+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 -+int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 -+int style Base_Widget_AppCompat_ActionMode 0x0 -+int style Base_Widget_AppCompat_ActivityChooserView 0x0 -+int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Base_Widget_AppCompat_Button 0x0 -+int style Base_Widget_AppCompat_ButtonBar 0x0 -+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 -+int style Base_Widget_AppCompat_Button_Borderless 0x0 -+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 -+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -+int style Base_Widget_AppCompat_Button_Colored 0x0 -+int style Base_Widget_AppCompat_Button_Small 0x0 -+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 -+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 -+int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 -+int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 -+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 -+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 -+int style Base_Widget_AppCompat_EditText 0x0 -+int style Base_Widget_AppCompat_ImageButton 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 -+int style Base_Widget_AppCompat_Light_PopupMenu 0x0 -+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -+int style Base_Widget_AppCompat_ListMenuView 0x0 -+int style Base_Widget_AppCompat_ListPopupWindow 0x0 -+int style Base_Widget_AppCompat_ListView 0x0 -+int style Base_Widget_AppCompat_ListView_DropDown 0x0 -+int style Base_Widget_AppCompat_ListView_Menu 0x0 -+int style Base_Widget_AppCompat_PopupMenu 0x0 -+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 -+int style Base_Widget_AppCompat_PopupWindow 0x0 -+int style Base_Widget_AppCompat_ProgressBar 0x0 -+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 -+int style Base_Widget_AppCompat_RatingBar 0x0 -+int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 -+int style Base_Widget_AppCompat_RatingBar_Small 0x0 -+int style Base_Widget_AppCompat_SearchView 0x0 -+int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 -+int style Base_Widget_AppCompat_SeekBar 0x0 -+int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 -+int style Base_Widget_AppCompat_Spinner 0x0 -+int style Base_Widget_AppCompat_Spinner_Underlined 0x0 -+int style Base_Widget_AppCompat_TextView 0x0 -+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 -+int style Base_Widget_AppCompat_Toolbar 0x0 -+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style CalendarDatePickerDialog 0x0 -+int style CalendarDatePickerStyle 0x0 -+int style DialogAnimationFade 0x0 -+int style DialogAnimationSlide 0x0 -+int style NoAnimationDialog 0x0 -+int style Platform_AppCompat 0x0 -+int style Platform_AppCompat_Light 0x0 -+int style Platform_ThemeOverlay_AppCompat 0x0 -+int style Platform_ThemeOverlay_AppCompat_Dark 0x0 -+int style Platform_ThemeOverlay_AppCompat_Light 0x0 -+int style Platform_V21_AppCompat 0x0 -+int style Platform_V21_AppCompat_Light 0x0 -+int style Platform_V25_AppCompat 0x0 -+int style Platform_V25_AppCompat_Light 0x0 -+int style Platform_Widget_AppCompat_Spinner 0x0 -+int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 -+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 -+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 -+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 -+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 -+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 -+int style SpinnerDatePickerDialog 0x0 -+int style SpinnerDatePickerStyle 0x0 -+int style TextAppearance_AppCompat 0x0 -+int style TextAppearance_AppCompat_Body1 0x0 -+int style TextAppearance_AppCompat_Body2 0x0 -+int style TextAppearance_AppCompat_Button 0x0 -+int style TextAppearance_AppCompat_Caption 0x0 -+int style TextAppearance_AppCompat_Display1 0x0 -+int style TextAppearance_AppCompat_Display2 0x0 -+int style TextAppearance_AppCompat_Display3 0x0 -+int style TextAppearance_AppCompat_Display4 0x0 -+int style TextAppearance_AppCompat_Headline 0x0 -+int style TextAppearance_AppCompat_Inverse 0x0 -+int style TextAppearance_AppCompat_Large 0x0 -+int style TextAppearance_AppCompat_Large_Inverse 0x0 -+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 -+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 -+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -+int style TextAppearance_AppCompat_Medium 0x0 -+int style TextAppearance_AppCompat_Medium_Inverse 0x0 -+int style TextAppearance_AppCompat_Menu 0x0 -+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -+int style TextAppearance_AppCompat_SearchResult_Title 0x0 -+int style TextAppearance_AppCompat_Small 0x0 -+int style TextAppearance_AppCompat_Small_Inverse 0x0 -+int style TextAppearance_AppCompat_Subhead 0x0 -+int style TextAppearance_AppCompat_Subhead_Inverse 0x0 -+int style TextAppearance_AppCompat_Title 0x0 -+int style TextAppearance_AppCompat_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Tooltip 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_Button 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -+int style TextAppearance_AppCompat_Widget_Switch 0x0 -+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -+int style TextAppearance_Compat_Notification 0x0 -+int style TextAppearance_Compat_Notification_Info 0x0 -+int style TextAppearance_Compat_Notification_Line2 0x0 -+int style TextAppearance_Compat_Notification_Time 0x0 -+int style TextAppearance_Compat_Notification_Title 0x0 -+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -+int style Theme 0x0 -+int style ThemeOverlay_AppCompat 0x0 -+int style ThemeOverlay_AppCompat_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_Dark 0x0 -+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_DayNight 0x0 -+int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_Dialog 0x0 -+int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 -+int style ThemeOverlay_AppCompat_Light 0x0 -+int style Theme_AppCompat 0x0 -+int style Theme_AppCompat_CompactMenu 0x0 -+int style Theme_AppCompat_DayNight 0x0 -+int style Theme_AppCompat_DayNight_DarkActionBar 0x0 -+int style Theme_AppCompat_DayNight_Dialog 0x0 -+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 -+int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 -+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_DayNight_NoActionBar 0x0 -+int style Theme_AppCompat_Dialog 0x0 -+int style Theme_AppCompat_DialogWhenLarge 0x0 -+int style Theme_AppCompat_Dialog_Alert 0x0 -+int style Theme_AppCompat_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_Empty 0x0 -+int style Theme_AppCompat_Light 0x0 -+int style Theme_AppCompat_Light_DarkActionBar 0x0 -+int style Theme_AppCompat_Light_Dialog 0x0 -+int style Theme_AppCompat_Light_DialogWhenLarge 0x0 -+int style Theme_AppCompat_Light_Dialog_Alert 0x0 -+int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_Light_NoActionBar 0x0 -+int style Theme_AppCompat_NoActionBar 0x0 -+int style Theme_AutofillInlineSuggestion 0x0 -+int style Theme_Catalyst 0x0 -+int style Theme_Catalyst_LogBox 0x0 -+int style Theme_Catalyst_RedBox 0x0 -+int style Theme_FullScreenDialog 0x0 -+int style Theme_FullScreenDialogAnimatedFade 0x0 -+int style Theme_FullScreenDialogAnimatedSlide 0x0 -+int style Theme_ReactNative_AppCompat_Light 0x0 -+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0 -+int style Theme_ReactNative_TextInput_DefaultBackground 0x0 -+int style Widget_AppCompat_ActionBar 0x0 -+int style Widget_AppCompat_ActionBar_Solid 0x0 -+int style Widget_AppCompat_ActionBar_TabBar 0x0 -+int style Widget_AppCompat_ActionBar_TabText 0x0 -+int style Widget_AppCompat_ActionBar_TabView 0x0 -+int style Widget_AppCompat_ActionButton 0x0 -+int style Widget_AppCompat_ActionButton_CloseMode 0x0 -+int style Widget_AppCompat_ActionButton_Overflow 0x0 -+int style Widget_AppCompat_ActionMode 0x0 -+int style Widget_AppCompat_ActivityChooserView 0x0 -+int style Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Widget_AppCompat_Button 0x0 -+int style Widget_AppCompat_ButtonBar 0x0 -+int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 -+int style Widget_AppCompat_Button_Borderless 0x0 -+int style Widget_AppCompat_Button_Borderless_Colored 0x0 -+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -+int style Widget_AppCompat_Button_Colored 0x0 -+int style Widget_AppCompat_Button_Small 0x0 -+int style Widget_AppCompat_CompoundButton_CheckBox 0x0 -+int style Widget_AppCompat_CompoundButton_RadioButton 0x0 -+int style Widget_AppCompat_CompoundButton_Switch 0x0 -+int style Widget_AppCompat_DrawerArrowToggle 0x0 -+int style Widget_AppCompat_DropDownItem_Spinner 0x0 -+int style Widget_AppCompat_EditText 0x0 -+int style Widget_AppCompat_ImageButton 0x0 -+int style Widget_AppCompat_Light_ActionBar 0x0 -+int style Widget_AppCompat_Light_ActionBar_Solid 0x0 -+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabText 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabView 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionButton 0x0 -+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 -+int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 -+int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 -+int style Widget_AppCompat_Light_ActivityChooserView 0x0 -+int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 -+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 -+int style Widget_AppCompat_Light_ListPopupWindow 0x0 -+int style Widget_AppCompat_Light_ListView_DropDown 0x0 -+int style Widget_AppCompat_Light_PopupMenu 0x0 -+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -+int style Widget_AppCompat_Light_SearchView 0x0 -+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 -+int style Widget_AppCompat_ListMenuView 0x0 -+int style Widget_AppCompat_ListPopupWindow 0x0 -+int style Widget_AppCompat_ListView 0x0 -+int style Widget_AppCompat_ListView_DropDown 0x0 -+int style Widget_AppCompat_ListView_Menu 0x0 -+int style Widget_AppCompat_PopupMenu 0x0 -+int style Widget_AppCompat_PopupMenu_Overflow 0x0 -+int style Widget_AppCompat_PopupWindow 0x0 -+int style Widget_AppCompat_ProgressBar 0x0 -+int style Widget_AppCompat_ProgressBar_Horizontal 0x0 -+int style Widget_AppCompat_RatingBar 0x0 -+int style Widget_AppCompat_RatingBar_Indicator 0x0 -+int style Widget_AppCompat_RatingBar_Small 0x0 -+int style Widget_AppCompat_SearchView 0x0 -+int style Widget_AppCompat_SearchView_ActionBar 0x0 -+int style Widget_AppCompat_SeekBar 0x0 -+int style Widget_AppCompat_SeekBar_Discrete 0x0 -+int style Widget_AppCompat_Spinner 0x0 -+int style Widget_AppCompat_Spinner_DropDown 0x0 -+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 -+int style Widget_AppCompat_Spinner_Underlined 0x0 -+int style Widget_AppCompat_TextView 0x0 -+int style Widget_AppCompat_TextView_SpinnerItem 0x0 -+int style Widget_AppCompat_Toolbar 0x0 -+int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style Widget_Autofill 0x0 -+int style Widget_Autofill_InlineSuggestionChip 0x0 -+int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0 -+int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0 -+int style Widget_Autofill_InlineSuggestionSubtitle 0x0 -+int style Widget_Autofill_InlineSuggestionTitle 0x0 -+int style Widget_Compat_NotificationActionContainer 0x0 -+int style Widget_Compat_NotificationActionText 0x0 -+int style Widget_Support_CoordinatorLayout 0x0 -+int style redboxButton 0x0 -+int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionBar_background 0 -+int styleable ActionBar_backgroundSplit 1 -+int styleable ActionBar_backgroundStacked 2 -+int styleable ActionBar_contentInsetEnd 3 -+int styleable ActionBar_contentInsetEndWithActions 4 -+int styleable ActionBar_contentInsetLeft 5 -+int styleable ActionBar_contentInsetRight 6 -+int styleable ActionBar_contentInsetStart 7 -+int styleable ActionBar_contentInsetStartWithNavigation 8 -+int styleable ActionBar_customNavigationLayout 9 -+int styleable ActionBar_displayOptions 10 -+int styleable ActionBar_divider 11 -+int styleable ActionBar_elevation 12 -+int styleable ActionBar_height 13 -+int styleable ActionBar_hideOnContentScroll 14 -+int styleable ActionBar_homeAsUpIndicator 15 -+int styleable ActionBar_homeLayout 16 -+int styleable ActionBar_icon 17 -+int styleable ActionBar_indeterminateProgressStyle 18 -+int styleable ActionBar_itemPadding 19 -+int styleable ActionBar_logo 20 -+int styleable ActionBar_navigationMode 21 -+int styleable ActionBar_popupTheme 22 -+int styleable ActionBar_progressBarPadding 23 -+int styleable ActionBar_progressBarStyle 24 -+int styleable ActionBar_subtitle 25 -+int styleable ActionBar_subtitleTextStyle 26 -+int styleable ActionBar_title 27 -+int styleable ActionBar_titleTextStyle 28 -+int[] styleable ActionBarLayout { 0x10100b3 } -+int styleable ActionBarLayout_android_layout_gravity 0 -+int[] styleable ActionMenuItemView { 0x101013f } -+int styleable ActionMenuItemView_android_minWidth 0 -+int[] styleable ActionMenuView { } -+int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionMode_background 0 -+int styleable ActionMode_backgroundSplit 1 -+int styleable ActionMode_closeItemLayout 2 -+int styleable ActionMode_height 3 -+int styleable ActionMode_subtitleTextStyle 4 -+int styleable ActionMode_titleTextStyle 5 -+int[] styleable ActivityChooserView { 0x0, 0x0 } -+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -+int styleable ActivityChooserView_initialActivityCount 1 -+int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AlertDialog_android_layout 0 -+int styleable AlertDialog_buttonIconDimen 1 -+int styleable AlertDialog_buttonPanelSideLayout 2 -+int styleable AlertDialog_listItemLayout 3 -+int styleable AlertDialog_listLayout 4 -+int styleable AlertDialog_multiChoiceItemLayout 5 -+int styleable AlertDialog_showTitle 6 -+int styleable AlertDialog_singleChoiceItemLayout 7 -+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable AnimatedStateListDrawableCompat_android_constantSize 0 -+int styleable AnimatedStateListDrawableCompat_android_dither 1 -+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 -+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 -+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 -+int styleable AnimatedStateListDrawableCompat_android_visible 5 -+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } -+int styleable AnimatedStateListDrawableItem_android_drawable 0 -+int styleable AnimatedStateListDrawableItem_android_id 1 -+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } -+int styleable AnimatedStateListDrawableTransition_android_drawable 0 -+int styleable AnimatedStateListDrawableTransition_android_fromId 1 -+int styleable AnimatedStateListDrawableTransition_android_reversible 2 -+int styleable AnimatedStateListDrawableTransition_android_toId 3 -+int[] styleable AppCompatEmojiHelper { } -+int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } -+int styleable AppCompatImageView_android_src 0 -+int styleable AppCompatImageView_srcCompat 1 -+int styleable AppCompatImageView_tint 2 -+int styleable AppCompatImageView_tintMode 3 -+int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } -+int styleable AppCompatSeekBar_android_thumb 0 -+int styleable AppCompatSeekBar_tickMark 1 -+int styleable AppCompatSeekBar_tickMarkTint 2 -+int styleable AppCompatSeekBar_tickMarkTintMode 3 -+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } -+int styleable AppCompatTextHelper_android_drawableBottom 0 -+int styleable AppCompatTextHelper_android_drawableEnd 1 -+int styleable AppCompatTextHelper_android_drawableLeft 2 -+int styleable AppCompatTextHelper_android_drawableRight 3 -+int styleable AppCompatTextHelper_android_drawableStart 4 -+int styleable AppCompatTextHelper_android_drawableTop 5 -+int styleable AppCompatTextHelper_android_textAppearance 6 -+int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AppCompatTextView_android_textAppearance 0 -+int styleable AppCompatTextView_autoSizeMaxTextSize 1 -+int styleable AppCompatTextView_autoSizeMinTextSize 2 -+int styleable AppCompatTextView_autoSizePresetSizes 3 -+int styleable AppCompatTextView_autoSizeStepGranularity 4 -+int styleable AppCompatTextView_autoSizeTextType 5 -+int styleable AppCompatTextView_drawableBottomCompat 6 -+int styleable AppCompatTextView_drawableEndCompat 7 -+int styleable AppCompatTextView_drawableLeftCompat 8 -+int styleable AppCompatTextView_drawableRightCompat 9 -+int styleable AppCompatTextView_drawableStartCompat 10 -+int styleable AppCompatTextView_drawableTint 11 -+int styleable AppCompatTextView_drawableTintMode 12 -+int styleable AppCompatTextView_drawableTopCompat 13 -+int styleable AppCompatTextView_emojiCompatEnabled 14 -+int styleable AppCompatTextView_firstBaselineToTopHeight 15 -+int styleable AppCompatTextView_fontFamily 16 -+int styleable AppCompatTextView_fontVariationSettings 17 -+int styleable AppCompatTextView_lastBaselineToBottomHeight 18 -+int styleable AppCompatTextView_lineHeight 19 -+int styleable AppCompatTextView_textAllCaps 20 -+int styleable AppCompatTextView_textLocale 21 -+int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AppCompatTheme_actionBarDivider 0 -+int styleable AppCompatTheme_actionBarItemBackground 1 -+int styleable AppCompatTheme_actionBarPopupTheme 2 -+int styleable AppCompatTheme_actionBarSize 3 -+int styleable AppCompatTheme_actionBarSplitStyle 4 -+int styleable AppCompatTheme_actionBarStyle 5 -+int styleable AppCompatTheme_actionBarTabBarStyle 6 -+int styleable AppCompatTheme_actionBarTabStyle 7 -+int styleable AppCompatTheme_actionBarTabTextStyle 8 -+int styleable AppCompatTheme_actionBarTheme 9 -+int styleable AppCompatTheme_actionBarWidgetTheme 10 -+int styleable AppCompatTheme_actionButtonStyle 11 -+int styleable AppCompatTheme_actionDropDownStyle 12 -+int styleable AppCompatTheme_actionMenuTextAppearance 13 -+int styleable AppCompatTheme_actionMenuTextColor 14 -+int styleable AppCompatTheme_actionModeBackground 15 -+int styleable AppCompatTheme_actionModeCloseButtonStyle 16 -+int styleable AppCompatTheme_actionModeCloseContentDescription 17 -+int styleable AppCompatTheme_actionModeCloseDrawable 18 -+int styleable AppCompatTheme_actionModeCopyDrawable 19 -+int styleable AppCompatTheme_actionModeCutDrawable 20 -+int styleable AppCompatTheme_actionModeFindDrawable 21 -+int styleable AppCompatTheme_actionModePasteDrawable 22 -+int styleable AppCompatTheme_actionModePopupWindowStyle 23 -+int styleable AppCompatTheme_actionModeSelectAllDrawable 24 -+int styleable AppCompatTheme_actionModeShareDrawable 25 -+int styleable AppCompatTheme_actionModeSplitBackground 26 -+int styleable AppCompatTheme_actionModeStyle 27 -+int styleable AppCompatTheme_actionModeTheme 28 -+int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -+int styleable AppCompatTheme_actionOverflowButtonStyle 30 -+int styleable AppCompatTheme_actionOverflowMenuStyle 31 -+int styleable AppCompatTheme_activityChooserViewStyle 32 -+int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -+int styleable AppCompatTheme_alertDialogCenterButtons 34 -+int styleable AppCompatTheme_alertDialogStyle 35 -+int styleable AppCompatTheme_alertDialogTheme 36 -+int styleable AppCompatTheme_android_windowAnimationStyle 37 -+int styleable AppCompatTheme_android_windowIsFloating 38 -+int styleable AppCompatTheme_autoCompleteTextViewStyle 39 -+int styleable AppCompatTheme_borderlessButtonStyle 40 -+int styleable AppCompatTheme_buttonBarButtonStyle 41 -+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 -+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 -+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 -+int styleable AppCompatTheme_buttonBarStyle 45 -+int styleable AppCompatTheme_buttonStyle 46 -+int styleable AppCompatTheme_buttonStyleSmall 47 -+int styleable AppCompatTheme_checkboxStyle 48 -+int styleable AppCompatTheme_checkedTextViewStyle 49 -+int styleable AppCompatTheme_colorAccent 50 -+int styleable AppCompatTheme_colorBackgroundFloating 51 -+int styleable AppCompatTheme_colorButtonNormal 52 -+int styleable AppCompatTheme_colorControlActivated 53 -+int styleable AppCompatTheme_colorControlHighlight 54 -+int styleable AppCompatTheme_colorControlNormal 55 -+int styleable AppCompatTheme_colorError 56 -+int styleable AppCompatTheme_colorPrimary 57 -+int styleable AppCompatTheme_colorPrimaryDark 58 -+int styleable AppCompatTheme_colorSwitchThumbNormal 59 -+int styleable AppCompatTheme_controlBackground 60 -+int styleable AppCompatTheme_dialogCornerRadius 61 -+int styleable AppCompatTheme_dialogPreferredPadding 62 -+int styleable AppCompatTheme_dialogTheme 63 -+int styleable AppCompatTheme_dividerHorizontal 64 -+int styleable AppCompatTheme_dividerVertical 65 -+int styleable AppCompatTheme_dropDownListViewStyle 66 -+int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 -+int styleable AppCompatTheme_editTextBackground 68 -+int styleable AppCompatTheme_editTextColor 69 -+int styleable AppCompatTheme_editTextStyle 70 -+int styleable AppCompatTheme_homeAsUpIndicator 71 -+int styleable AppCompatTheme_imageButtonStyle 72 -+int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 -+int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 -+int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 -+int styleable AppCompatTheme_listDividerAlertDialog 76 -+int styleable AppCompatTheme_listMenuViewStyle 77 -+int styleable AppCompatTheme_listPopupWindowStyle 78 -+int styleable AppCompatTheme_listPreferredItemHeight 79 -+int styleable AppCompatTheme_listPreferredItemHeightLarge 80 -+int styleable AppCompatTheme_listPreferredItemHeightSmall 81 -+int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 -+int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 -+int styleable AppCompatTheme_listPreferredItemPaddingRight 84 -+int styleable AppCompatTheme_listPreferredItemPaddingStart 85 -+int styleable AppCompatTheme_panelBackground 86 -+int styleable AppCompatTheme_panelMenuListTheme 87 -+int styleable AppCompatTheme_panelMenuListWidth 88 -+int styleable AppCompatTheme_popupMenuStyle 89 -+int styleable AppCompatTheme_popupWindowStyle 90 -+int styleable AppCompatTheme_radioButtonStyle 91 -+int styleable AppCompatTheme_ratingBarStyle 92 -+int styleable AppCompatTheme_ratingBarStyleIndicator 93 -+int styleable AppCompatTheme_ratingBarStyleSmall 94 -+int styleable AppCompatTheme_searchViewStyle 95 -+int styleable AppCompatTheme_seekBarStyle 96 -+int styleable AppCompatTheme_selectableItemBackground 97 -+int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 -+int styleable AppCompatTheme_spinnerDropDownItemStyle 99 -+int styleable AppCompatTheme_spinnerStyle 100 -+int styleable AppCompatTheme_switchStyle 101 -+int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 -+int styleable AppCompatTheme_textAppearanceListItem 103 -+int styleable AppCompatTheme_textAppearanceListItemSecondary 104 -+int styleable AppCompatTheme_textAppearanceListItemSmall 105 -+int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 -+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 -+int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 -+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 -+int styleable AppCompatTheme_textColorAlertDialogListItem 110 -+int styleable AppCompatTheme_textColorSearchUrl 111 -+int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 -+int styleable AppCompatTheme_toolbarStyle 113 -+int styleable AppCompatTheme_tooltipForegroundColor 114 -+int styleable AppCompatTheme_tooltipFrameBackground 115 -+int styleable AppCompatTheme_viewInflaterClass 116 -+int styleable AppCompatTheme_windowActionBar 117 -+int styleable AppCompatTheme_windowActionBarOverlay 118 -+int styleable AppCompatTheme_windowActionModeOverlay 119 -+int styleable AppCompatTheme_windowFixedHeightMajor 120 -+int styleable AppCompatTheme_windowFixedHeightMinor 121 -+int styleable AppCompatTheme_windowFixedWidthMajor 122 -+int styleable AppCompatTheme_windowFixedWidthMinor 123 -+int styleable AppCompatTheme_windowMinWidthMajor 124 -+int styleable AppCompatTheme_windowMinWidthMinor 125 -+int styleable AppCompatTheme_windowNoTitle 126 -+int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 -+int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 -+int[] styleable ButtonBarLayout { 0x0 } -+int styleable ButtonBarLayout_allowStacking 0 -+int[] styleable Capability { 0x0, 0x0 } -+int styleable Capability_queryPatterns 0 -+int styleable Capability_shortcutMatchRequired 1 -+int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } -+int styleable CheckedTextView_android_checkMark 0 -+int styleable CheckedTextView_checkMarkCompat 1 -+int styleable CheckedTextView_checkMarkTint 2 -+int styleable CheckedTextView_checkMarkTintMode 3 -+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } -+int styleable ColorStateListItem_alpha 0 -+int styleable ColorStateListItem_android_alpha 1 -+int styleable ColorStateListItem_android_color 2 -+int styleable ColorStateListItem_android_lStar 3 -+int styleable ColorStateListItem_lStar 4 -+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } -+int styleable CompoundButton_android_button 0 -+int styleable CompoundButton_buttonCompat 1 -+int styleable CompoundButton_buttonTint 2 -+int styleable CompoundButton_buttonTintMode 3 -+int[] styleable CoordinatorLayout { 0x0, 0x0 } -+int styleable CoordinatorLayout_keylines 0 -+int styleable CoordinatorLayout_statusBarBackground 1 -+int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable CoordinatorLayout_Layout_android_layout_gravity 0 -+int styleable CoordinatorLayout_Layout_layout_anchor 1 -+int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 -+int styleable CoordinatorLayout_Layout_layout_behavior 3 -+int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 -+int styleable CoordinatorLayout_Layout_layout_insetEdge 5 -+int styleable CoordinatorLayout_Layout_layout_keyline 6 -+int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable DrawerArrowToggle_arrowHeadLength 0 -+int styleable DrawerArrowToggle_arrowShaftLength 1 -+int styleable DrawerArrowToggle_barLength 2 -+int styleable DrawerArrowToggle_color 3 -+int styleable DrawerArrowToggle_drawableSize 4 -+int styleable DrawerArrowToggle_gapBetweenBars 5 -+int styleable DrawerArrowToggle_spinBars 6 -+int styleable DrawerArrowToggle_thickness 7 -+int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable FontFamily_fontProviderAuthority 0 -+int styleable FontFamily_fontProviderCerts 1 -+int styleable FontFamily_fontProviderFetchStrategy 2 -+int styleable FontFamily_fontProviderFetchTimeout 3 -+int styleable FontFamily_fontProviderPackage 4 -+int styleable FontFamily_fontProviderQuery 5 -+int styleable FontFamily_fontProviderSystemFontFamily 6 -+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable FontFamilyFont_android_font 0 -+int styleable FontFamilyFont_android_fontStyle 1 -+int styleable FontFamilyFont_android_fontVariationSettings 2 -+int styleable FontFamilyFont_android_fontWeight 3 -+int styleable FontFamilyFont_android_ttcIndex 4 -+int styleable FontFamilyFont_font 5 -+int styleable FontFamilyFont_fontStyle 6 -+int styleable FontFamilyFont_fontVariationSettings 7 -+int styleable FontFamilyFont_fontWeight 8 -+int styleable FontFamilyFont_ttcIndex 9 -+int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } -+int styleable Fragment_android_id 0 -+int styleable Fragment_android_name 1 -+int styleable Fragment_android_tag 2 -+int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } -+int styleable FragmentContainerView_android_name 0 -+int styleable FragmentContainerView_android_tag 1 -+int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable GenericDraweeHierarchy_actualImageScaleType 0 -+int styleable GenericDraweeHierarchy_backgroundImage 1 -+int styleable GenericDraweeHierarchy_fadeDuration 2 -+int styleable GenericDraweeHierarchy_failureImage 3 -+int styleable GenericDraweeHierarchy_failureImageScaleType 4 -+int styleable GenericDraweeHierarchy_overlayImage 5 -+int styleable GenericDraweeHierarchy_placeholderImage 6 -+int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 -+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 -+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 -+int styleable GenericDraweeHierarchy_progressBarImage 10 -+int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 -+int styleable GenericDraweeHierarchy_retryImage 12 -+int styleable GenericDraweeHierarchy_retryImageScaleType 13 -+int styleable GenericDraweeHierarchy_roundAsCircle 14 -+int styleable GenericDraweeHierarchy_roundBottomEnd 15 -+int styleable GenericDraweeHierarchy_roundBottomLeft 16 -+int styleable GenericDraweeHierarchy_roundBottomRight 17 -+int styleable GenericDraweeHierarchy_roundBottomStart 18 -+int styleable GenericDraweeHierarchy_roundTopEnd 19 -+int styleable GenericDraweeHierarchy_roundTopLeft 20 -+int styleable GenericDraweeHierarchy_roundTopRight 21 -+int styleable GenericDraweeHierarchy_roundTopStart 22 -+int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 -+int styleable GenericDraweeHierarchy_roundedCornerRadius 24 -+int styleable GenericDraweeHierarchy_roundingBorderColor 25 -+int styleable GenericDraweeHierarchy_roundingBorderPadding 26 -+int styleable GenericDraweeHierarchy_roundingBorderWidth 27 -+int styleable GenericDraweeHierarchy_viewAspectRatio 28 -+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } -+int styleable GradientColor_android_centerColor 0 -+int styleable GradientColor_android_centerX 1 -+int styleable GradientColor_android_centerY 2 -+int styleable GradientColor_android_endColor 3 -+int styleable GradientColor_android_endX 4 -+int styleable GradientColor_android_endY 5 -+int styleable GradientColor_android_gradientRadius 6 -+int styleable GradientColor_android_startColor 7 -+int styleable GradientColor_android_startX 8 -+int styleable GradientColor_android_startY 9 -+int styleable GradientColor_android_tileMode 10 -+int styleable GradientColor_android_type 11 -+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } -+int styleable GradientColorItem_android_color 0 -+int styleable GradientColorItem_android_offset 1 -+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } -+int styleable LinearLayoutCompat_android_baselineAligned 0 -+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 -+int styleable LinearLayoutCompat_android_gravity 2 -+int styleable LinearLayoutCompat_android_orientation 3 -+int styleable LinearLayoutCompat_android_weightSum 4 -+int styleable LinearLayoutCompat_divider 5 -+int styleable LinearLayoutCompat_dividerPadding 6 -+int styleable LinearLayoutCompat_measureWithLargestChild 7 -+int styleable LinearLayoutCompat_showDividers 8 -+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } -+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -+int styleable LinearLayoutCompat_Layout_android_layout_height 1 -+int styleable LinearLayoutCompat_Layout_android_layout_weight 2 -+int styleable LinearLayoutCompat_Layout_android_layout_width 3 -+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } -+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -+int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -+int[] styleable LoadingImageView { 0x0, 0x0, 0x0 } -+int styleable LoadingImageView_circleCrop 0 -+int styleable LoadingImageView_imageAspectRatio 1 -+int styleable LoadingImageView_imageAspectRatioAdjust 2 -+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } -+int styleable MenuGroup_android_checkableBehavior 0 -+int styleable MenuGroup_android_enabled 1 -+int styleable MenuGroup_android_id 2 -+int styleable MenuGroup_android_menuCategory 3 -+int styleable MenuGroup_android_orderInCategory 4 -+int styleable MenuGroup_android_visible 5 -+int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable MenuItem_actionLayout 0 -+int styleable MenuItem_actionProviderClass 1 -+int styleable MenuItem_actionViewClass 2 -+int styleable MenuItem_alphabeticModifiers 3 -+int styleable MenuItem_android_alphabeticShortcut 4 -+int styleable MenuItem_android_checkable 5 -+int styleable MenuItem_android_checked 6 -+int styleable MenuItem_android_enabled 7 -+int styleable MenuItem_android_icon 8 -+int styleable MenuItem_android_id 9 -+int styleable MenuItem_android_menuCategory 10 -+int styleable MenuItem_android_numericShortcut 11 -+int styleable MenuItem_android_onClick 12 -+int styleable MenuItem_android_orderInCategory 13 -+int styleable MenuItem_android_title 14 -+int styleable MenuItem_android_titleCondensed 15 -+int styleable MenuItem_android_visible 16 -+int styleable MenuItem_contentDescription 17 -+int styleable MenuItem_iconTint 18 -+int styleable MenuItem_iconTintMode 19 -+int styleable MenuItem_numericModifiers 20 -+int styleable MenuItem_showAsAction 21 -+int styleable MenuItem_tooltipText 22 -+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } -+int styleable MenuView_android_headerBackground 0 -+int styleable MenuView_android_horizontalDivider 1 -+int styleable MenuView_android_itemBackground 2 -+int styleable MenuView_android_itemIconDisabledAlpha 3 -+int styleable MenuView_android_itemTextAppearance 4 -+int styleable MenuView_android_verticalDivider 5 -+int styleable MenuView_android_windowAnimationStyle 6 -+int styleable MenuView_preserveIconSpacing 7 -+int styleable MenuView_subMenuArrow 8 -+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } -+int styleable PopupWindow_android_popupAnimationStyle 0 -+int styleable PopupWindow_android_popupBackground 1 -+int styleable PopupWindow_overlapAnchor 2 -+int[] styleable PopupWindowBackgroundState { 0x0 } -+int styleable PopupWindowBackgroundState_state_above_anchor 0 -+int[] styleable RecycleListView { 0x0, 0x0 } -+int styleable RecycleListView_paddingBottomNoButtons 0 -+int styleable RecycleListView_paddingTopNoTitle 1 -+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SearchView_android_focusable 0 -+int styleable SearchView_android_imeOptions 1 -+int styleable SearchView_android_inputType 2 -+int styleable SearchView_android_maxWidth 3 -+int styleable SearchView_closeIcon 4 -+int styleable SearchView_commitIcon 5 -+int styleable SearchView_defaultQueryHint 6 -+int styleable SearchView_goIcon 7 -+int styleable SearchView_iconifiedByDefault 8 -+int styleable SearchView_layout 9 -+int styleable SearchView_queryBackground 10 -+int styleable SearchView_queryHint 11 -+int styleable SearchView_searchHintIcon 12 -+int styleable SearchView_searchIcon 13 -+int styleable SearchView_submitBackground 14 -+int styleable SearchView_suggestionRowLayout 15 -+int styleable SearchView_voiceIcon 16 -+int[] styleable SignInButton { 0x0, 0x0, 0x0 } -+int styleable SignInButton_buttonSize 0 -+int styleable SignInButton_colorScheme 1 -+int styleable SignInButton_scopeUris 2 -+int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SimpleDraweeView_actualImageResource 0 -+int styleable SimpleDraweeView_actualImageUri 1 -+int styleable SimpleDraweeView_backgroundImage 2 -+int styleable SimpleDraweeView_fadeDuration 3 -+int styleable SimpleDraweeView_failureImage 4 -+int styleable SimpleDraweeView_failureImageScaleType 5 -+int styleable SimpleDraweeView_overlayImage 6 -+int styleable SimpleDraweeView_placeholderImage 7 -+int styleable SimpleDraweeView_placeholderImageScaleType 8 -+int styleable SimpleDraweeView_pressedStateOverlayImage 9 -+int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 -+int styleable SimpleDraweeView_progressBarImage 11 -+int styleable SimpleDraweeView_progressBarImageScaleType 12 -+int styleable SimpleDraweeView_retryImage 13 -+int styleable SimpleDraweeView_retryImageScaleType 14 -+int styleable SimpleDraweeView_roundAsCircle 15 -+int styleable SimpleDraweeView_roundBottomEnd 16 -+int styleable SimpleDraweeView_roundBottomLeft 17 -+int styleable SimpleDraweeView_roundBottomRight 18 -+int styleable SimpleDraweeView_roundBottomStart 19 -+int styleable SimpleDraweeView_roundTopEnd 20 -+int styleable SimpleDraweeView_roundTopLeft 21 -+int styleable SimpleDraweeView_roundTopRight 22 -+int styleable SimpleDraweeView_roundTopStart 23 -+int styleable SimpleDraweeView_roundWithOverlayColor 24 -+int styleable SimpleDraweeView_roundedCornerRadius 25 -+int styleable SimpleDraweeView_roundingBorderColor 26 -+int styleable SimpleDraweeView_roundingBorderPadding 27 -+int styleable SimpleDraweeView_roundingBorderWidth 28 -+int styleable SimpleDraweeView_viewAspectRatio 29 -+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } -+int styleable Spinner_android_dropDownWidth 0 -+int styleable Spinner_android_entries 1 -+int styleable Spinner_android_popupBackground 2 -+int styleable Spinner_android_prompt 3 -+int styleable Spinner_popupTheme 4 -+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable StateListDrawable_android_constantSize 0 -+int styleable StateListDrawable_android_dither 1 -+int styleable StateListDrawable_android_enterFadeDuration 2 -+int styleable StateListDrawable_android_exitFadeDuration 3 -+int styleable StateListDrawable_android_variablePadding 4 -+int styleable StateListDrawable_android_visible 5 -+int[] styleable StateListDrawableItem { 0x1010199 } -+int styleable StateListDrawableItem_android_drawable 0 -+int[] styleable SwipeRefreshLayout { 0x0 } -+int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 -+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SwitchCompat_android_textOff 0 -+int styleable SwitchCompat_android_textOn 1 -+int styleable SwitchCompat_android_thumb 2 -+int styleable SwitchCompat_showText 3 -+int styleable SwitchCompat_splitTrack 4 -+int styleable SwitchCompat_switchMinWidth 5 -+int styleable SwitchCompat_switchPadding 6 -+int styleable SwitchCompat_switchTextAppearance 7 -+int styleable SwitchCompat_thumbTextPadding 8 -+int styleable SwitchCompat_thumbTint 9 -+int styleable SwitchCompat_thumbTintMode 10 -+int styleable SwitchCompat_track 11 -+int styleable SwitchCompat_trackTint 12 -+int styleable SwitchCompat_trackTintMode 13 -+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } -+int styleable TextAppearance_android_fontFamily 0 -+int styleable TextAppearance_android_shadowColor 1 -+int styleable TextAppearance_android_shadowDx 2 -+int styleable TextAppearance_android_shadowDy 3 -+int styleable TextAppearance_android_shadowRadius 4 -+int styleable TextAppearance_android_textColor 5 -+int styleable TextAppearance_android_textColorHint 6 -+int styleable TextAppearance_android_textColorLink 7 -+int styleable TextAppearance_android_textFontWeight 8 -+int styleable TextAppearance_android_textSize 9 -+int styleable TextAppearance_android_textStyle 10 -+int styleable TextAppearance_android_typeface 11 -+int styleable TextAppearance_fontFamily 12 -+int styleable TextAppearance_fontVariationSettings 13 -+int styleable TextAppearance_textAllCaps 14 -+int styleable TextAppearance_textLocale 15 -+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable Toolbar_android_gravity 0 -+int styleable Toolbar_android_minHeight 1 -+int styleable Toolbar_buttonGravity 2 -+int styleable Toolbar_collapseContentDescription 3 -+int styleable Toolbar_collapseIcon 4 -+int styleable Toolbar_contentInsetEnd 5 -+int styleable Toolbar_contentInsetEndWithActions 6 -+int styleable Toolbar_contentInsetLeft 7 -+int styleable Toolbar_contentInsetRight 8 -+int styleable Toolbar_contentInsetStart 9 -+int styleable Toolbar_contentInsetStartWithNavigation 10 -+int styleable Toolbar_logo 11 -+int styleable Toolbar_logoDescription 12 -+int styleable Toolbar_maxButtonHeight 13 -+int styleable Toolbar_menu 14 -+int styleable Toolbar_navigationContentDescription 15 -+int styleable Toolbar_navigationIcon 16 -+int styleable Toolbar_popupTheme 17 -+int styleable Toolbar_subtitle 18 -+int styleable Toolbar_subtitleTextAppearance 19 -+int styleable Toolbar_subtitleTextColor 20 -+int styleable Toolbar_title 21 -+int styleable Toolbar_titleMargin 22 -+int styleable Toolbar_titleMarginBottom 23 -+int styleable Toolbar_titleMarginEnd 24 -+int styleable Toolbar_titleMarginStart 25 -+int styleable Toolbar_titleMarginTop 26 -+int styleable Toolbar_titleMargins 27 -+int styleable Toolbar_titleTextAppearance 28 -+int styleable Toolbar_titleTextColor 29 -+int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } -+int styleable View_android_focusable 0 -+int styleable View_android_theme 1 -+int styleable View_paddingEnd 2 -+int styleable View_paddingStart 3 -+int styleable View_theme 4 -+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } -+int styleable ViewBackgroundHelper_android_background 0 -+int styleable ViewBackgroundHelper_backgroundTint 1 -+int styleable ViewBackgroundHelper_backgroundTintMode 2 -+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } -+int styleable ViewStubCompat_android_id 0 -+int styleable ViewStubCompat_android_inflatedId 1 -+int styleable ViewStubCompat_android_layout 2 -+int[] styleable mapbox_MapView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable mapbox_MapView_mapbox_attributionClickable 0 -+int styleable mapbox_MapView_mapbox_attributionEnabled 1 -+int styleable mapbox_MapView_mapbox_attributionGravity 2 -+int styleable mapbox_MapView_mapbox_attributionIconColor 3 -+int styleable mapbox_MapView_mapbox_attributionMarginBottom 4 -+int styleable mapbox_MapView_mapbox_attributionMarginLeft 5 -+int styleable mapbox_MapView_mapbox_attributionMarginRight 6 -+int styleable mapbox_MapView_mapbox_attributionMarginTop 7 -+int styleable mapbox_MapView_mapbox_cameraAnchorX 8 -+int styleable mapbox_MapView_mapbox_cameraAnchorY 9 -+int styleable mapbox_MapView_mapbox_cameraBearing 10 -+int styleable mapbox_MapView_mapbox_cameraPaddingBottom 11 -+int styleable mapbox_MapView_mapbox_cameraPaddingLeft 12 -+int styleable mapbox_MapView_mapbox_cameraPaddingRight 13 -+int styleable mapbox_MapView_mapbox_cameraPaddingTop 14 -+int styleable mapbox_MapView_mapbox_cameraPitch 15 -+int styleable mapbox_MapView_mapbox_cameraTargetLat 16 -+int styleable mapbox_MapView_mapbox_cameraTargetLng 17 -+int styleable mapbox_MapView_mapbox_cameraZoom 18 -+int styleable mapbox_MapView_mapbox_compassClickable 19 -+int styleable mapbox_MapView_mapbox_compassEnabled 20 -+int styleable mapbox_MapView_mapbox_compassFadeWhenFacingNorth 21 -+int styleable mapbox_MapView_mapbox_compassGravity 22 -+int styleable mapbox_MapView_mapbox_compassImage 23 -+int styleable mapbox_MapView_mapbox_compassMarginBottom 24 -+int styleable mapbox_MapView_mapbox_compassMarginLeft 25 -+int styleable mapbox_MapView_mapbox_compassMarginRight 26 -+int styleable mapbox_MapView_mapbox_compassMarginTop 27 -+int styleable mapbox_MapView_mapbox_compassOpacity 28 -+int styleable mapbox_MapView_mapbox_compassRotation 29 -+int styleable mapbox_MapView_mapbox_compassVisibility 30 -+int styleable mapbox_MapView_mapbox_gesturesDoubleTapToZoomInEnabled 31 -+int styleable mapbox_MapView_mapbox_gesturesDoubleTouchToZoomOutEnabled 32 -+int styleable mapbox_MapView_mapbox_gesturesFocalPointX 33 -+int styleable mapbox_MapView_mapbox_gesturesFocalPointY 34 -+int styleable mapbox_MapView_mapbox_gesturesIncreasePinchToZoomThresholdWhenRotating 35 -+int styleable mapbox_MapView_mapbox_gesturesIncreaseRotateThresholdWhenPinchingToZoom 36 -+int styleable mapbox_MapView_mapbox_gesturesPinchScrollEnabled 37 -+int styleable mapbox_MapView_mapbox_gesturesPinchToZoomDecelerationEnabled 38 -+int styleable mapbox_MapView_mapbox_gesturesPinchToZoomEnabled 39 -+int styleable mapbox_MapView_mapbox_gesturesPitchEnabled 40 -+int styleable mapbox_MapView_mapbox_gesturesQuickZoomEnabled 41 -+int styleable mapbox_MapView_mapbox_gesturesRotateDecelerationEnabled 42 -+int styleable mapbox_MapView_mapbox_gesturesRotateEnabled 43 -+int styleable mapbox_MapView_mapbox_gesturesScrollDecelerationEnabled 44 -+int styleable mapbox_MapView_mapbox_gesturesScrollEnabled 45 -+int styleable mapbox_MapView_mapbox_gesturesScrollMode 46 -+int styleable mapbox_MapView_mapbox_gesturesSimultaneousRotateAndPinchToZoomEnabled 47 -+int styleable mapbox_MapView_mapbox_gesturesZoomAnimationAmount 48 -+int styleable mapbox_MapView_mapbox_locationComponentAccuracyRingBorderColor 49 -+int styleable mapbox_MapView_mapbox_locationComponentAccuracyRingColor 50 -+int styleable mapbox_MapView_mapbox_locationComponentEnabled 51 -+int styleable mapbox_MapView_mapbox_locationComponentLayerAbove 52 -+int styleable mapbox_MapView_mapbox_locationComponentLayerBelow 53 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuck 54 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DBearingImage 55 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DOpacity 56 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DScaleExpression 57 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DShadowImage 58 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck2DTopImage 59 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelOpacity 60 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_x 61 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_y 62 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_z 63 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelScaleExpression 64 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelScale_x 65 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelScale_y 66 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelScale_z 67 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lat 68 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lon 69 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_z 70 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DModelUri 71 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DPosition_lat 72 -+int styleable mapbox_MapView_mapbox_locationComponentLocationPuckLocationPuck3DPosition_lon 73 -+int styleable mapbox_MapView_mapbox_locationComponentPuckBearingEnabled 74 -+int styleable mapbox_MapView_mapbox_locationComponentPuckBearingSource 75 -+int styleable mapbox_MapView_mapbox_locationComponentPulsingColor 76 -+int styleable mapbox_MapView_mapbox_locationComponentPulsingEnabled 77 -+int styleable mapbox_MapView_mapbox_locationComponentPulsingMaxRadius 78 -+int styleable mapbox_MapView_mapbox_locationComponentShowAccuracyRing 79 -+int styleable mapbox_MapView_mapbox_logoEnabled 80 -+int styleable mapbox_MapView_mapbox_logoGravity 81 -+int styleable mapbox_MapView_mapbox_logoMarginBottom 82 -+int styleable mapbox_MapView_mapbox_logoMarginLeft 83 -+int styleable mapbox_MapView_mapbox_logoMarginRight 84 -+int styleable mapbox_MapView_mapbox_logoMarginTop 85 -+int styleable mapbox_MapView_mapbox_mapAntialiasingSampleCount 86 -+int styleable mapbox_MapView_mapbox_mapConstrainMode 87 -+int styleable mapbox_MapView_mapbox_mapContextMode 88 -+int styleable mapbox_MapView_mapbox_mapCrossSourceCollisionsEnabled 89 -+int styleable mapbox_MapView_mapbox_mapFontFamily 90 -+int styleable mapbox_MapView_mapbox_mapGlyphRasterizationMode 91 -+int styleable mapbox_MapView_mapbox_mapOrientation 92 -+int styleable mapbox_MapView_mapbox_mapPixelRatio 93 -+int styleable mapbox_MapView_mapbox_mapSurface 94 -+int styleable mapbox_MapView_mapbox_mapViewportMode 95 -+int styleable mapbox_MapView_mapbox_optimizeForTerrainEnabled 96 -+int styleable mapbox_MapView_mapbox_resourcesAccessToken 97 -+int styleable mapbox_MapView_mapbox_resourcesBaseUrl 98 -+int styleable mapbox_MapView_mapbox_scaleBarBorderWidth 99 -+int styleable mapbox_MapView_mapbox_scaleBarEnabled 100 -+int styleable mapbox_MapView_mapbox_scaleBarGravity 101 -+int styleable mapbox_MapView_mapbox_scaleBarHeight 102 -+int styleable mapbox_MapView_mapbox_scaleBarIsMetricUnits 103 -+int styleable mapbox_MapView_mapbox_scaleBarMarginBottom 104 -+int styleable mapbox_MapView_mapbox_scaleBarMarginLeft 105 -+int styleable mapbox_MapView_mapbox_scaleBarMarginRight 106 -+int styleable mapbox_MapView_mapbox_scaleBarMarginTop 107 -+int styleable mapbox_MapView_mapbox_scaleBarPrimaryColor 108 -+int styleable mapbox_MapView_mapbox_scaleBarRatio 109 -+int styleable mapbox_MapView_mapbox_scaleBarRefreshInterval 110 -+int styleable mapbox_MapView_mapbox_scaleBarSecondaryColor 111 -+int styleable mapbox_MapView_mapbox_scaleBarShowTextBorder 112 -+int styleable mapbox_MapView_mapbox_scaleBarTextBarMargin 113 -+int styleable mapbox_MapView_mapbox_scaleBarTextBorderWidth 114 -+int styleable mapbox_MapView_mapbox_scaleBarTextColor 115 -+int styleable mapbox_MapView_mapbox_scaleBarTextSize 116 -+int styleable mapbox_MapView_mapbox_scaleBarUseContinuousRendering 117 -+int styleable mapbox_MapView_mapbox_styleUri 118 -+int xml rn_dev_preferences 0x0 -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat -new file mode 100644 -index 0000000..a8edffd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat -new file mode 100644 -index 0000000..b5c2fcd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat -new file mode 100644 -index 0000000..c1bfd3d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat -new file mode 100644 -index 0000000..f91112d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -new file mode 100644 -index 0000000..d21dfde ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -@@ -0,0 +1,5 @@ -+#Tue Jun 24 13:45:25 CEST 2025 -+com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable-xxhdpi/red_marker.png=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png -+com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable/empty.xml=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml -+com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable/empty_drawable.png=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png -+com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/layout/annotation.xml=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml -new file mode 100644 -index 0000000..9c03766 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml -@@ -0,0 +1,4 @@ -+ -+ -+ RNMBX -+ -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -new file mode 100644 -index 0000000..5bfacd7 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -@@ -0,0 +1,2 @@ -+ -+RNMBX -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -new file mode 100644 -index 0000000..bd78841 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -new file mode 100644 -index 0000000..8415eee ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml -new file mode 100644 -index 0000000..821657b ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module b/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module -new file mode 100644 -index 0000000..0964712 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class -new file mode 100644 -index 0000000..5e32231 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class -new file mode 100644 -index 0000000..a8c2f66 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class -new file mode 100644 -index 0000000..d2a0452 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class -new file mode 100644 -index 0000000..f6b7cba -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class -new file mode 100644 -index 0000000..0b8dd9d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class -new file mode 100644 -index 0000000..9a528e6 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class -new file mode 100644 -index 0000000..6fb1efd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class -new file mode 100644 -index 0000000..70bc3dd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class -new file mode 100644 -index 0000000..ed381a2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class -new file mode 100644 -index 0000000..985d271 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class -new file mode 100644 -index 0000000..7047354 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class -new file mode 100644 -index 0000000..0f18f08 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class -new file mode 100644 -index 0000000..12d9909 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class -new file mode 100644 -index 0000000..c7878ef -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class -new file mode 100644 -index 0000000..23b9978 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class -new file mode 100644 -index 0000000..5d06f34 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class -new file mode 100644 -index 0000000..a4302dc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class -new file mode 100644 -index 0000000..3d9fa57 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class -new file mode 100644 -index 0000000..3c6ac47 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class -new file mode 100644 -index 0000000..2dfcb57 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class -new file mode 100644 -index 0000000..ade55c5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class -new file mode 100644 -index 0000000..247d012 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class -new file mode 100644 -index 0000000..8b4cf02 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class -new file mode 100644 -index 0000000..9c274f7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class -new file mode 100644 -index 0000000..c1456da -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class -new file mode 100644 -index 0000000..911dd7d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class -new file mode 100644 -index 0000000..bd1dbe2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class -new file mode 100644 -index 0000000..ee870f6 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class -new file mode 100644 -index 0000000..1c38958 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class -new file mode 100644 -index 0000000..c37a8c4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class -new file mode 100644 -index 0000000..d038c0e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class -new file mode 100644 -index 0000000..d258fd6 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class -new file mode 100644 -index 0000000..e44baa1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class -new file mode 100644 -index 0000000..8358125 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class -new file mode 100644 -index 0000000..15aeb39 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class -new file mode 100644 -index 0000000..1294ede -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class -new file mode 100644 -index 0000000..71f74a4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class -new file mode 100644 -index 0000000..7549a5c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class -new file mode 100644 -index 0000000..6f402de -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class -new file mode 100644 -index 0000000..e9c8e13 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class -new file mode 100644 -index 0000000..3fc9f97 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class -new file mode 100644 -index 0000000..6af0e55 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class -new file mode 100644 -index 0000000..44ecde3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class -new file mode 100644 -index 0000000..f3f0172 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class -new file mode 100644 -index 0000000..acd3826 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class -new file mode 100644 -index 0000000..d8c2ac8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class -new file mode 100644 -index 0000000..49ffdcd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class -new file mode 100644 -index 0000000..00f2061 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class -new file mode 100644 -index 0000000..d350fbc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class -new file mode 100644 -index 0000000..e65fc48 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class -new file mode 100644 -index 0000000..a3cf645 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class -new file mode 100644 -index 0000000..d7a579d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class -new file mode 100644 -index 0000000..76b162d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class -new file mode 100644 -index 0000000..8fef7b8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class -new file mode 100644 -index 0000000..462964a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class -new file mode 100644 -index 0000000..16252f1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class -new file mode 100644 -index 0000000..1dddaf8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class -new file mode 100644 -index 0000000..aa0f868 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class -new file mode 100644 -index 0000000..5fb7864 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class -new file mode 100644 -index 0000000..b60a5e7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class -new file mode 100644 -index 0000000..df96c2a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class -new file mode 100644 -index 0000000..4bf8e87 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class -new file mode 100644 -index 0000000..f8a1fe9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class -new file mode 100644 -index 0000000..90ddbc2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class -new file mode 100644 -index 0000000..9dcc41e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class -new file mode 100644 -index 0000000..1b29543 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class -new file mode 100644 -index 0000000..6037aae -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class -new file mode 100644 -index 0000000..8f80165 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class -new file mode 100644 -index 0000000..b10cfcc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class -new file mode 100644 -index 0000000..2abedc1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class -new file mode 100644 -index 0000000..4bff0da -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class -new file mode 100644 -index 0000000..e663974 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class -new file mode 100644 -index 0000000..dc6840e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class -new file mode 100644 -index 0000000..c6a87ed -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class -new file mode 100644 -index 0000000..fcf07a7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class -new file mode 100644 -index 0000000..aa51ee0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class -new file mode 100644 -index 0000000..2c464db -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class -new file mode 100644 -index 0000000..ef61e65 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class -new file mode 100644 -index 0000000..7cc9e13 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class -new file mode 100644 -index 0000000..69afe95 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class -new file mode 100644 -index 0000000..3285aa5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class -new file mode 100644 -index 0000000..59dfafa -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class -new file mode 100644 -index 0000000..b3a5edb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class -new file mode 100644 -index 0000000..9f3d2b2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class -new file mode 100644 -index 0000000..ab9dd46 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class -new file mode 100644 -index 0000000..29ec60a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class -new file mode 100644 -index 0000000..65ed6f1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class -new file mode 100644 -index 0000000..fb9b891 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class -new file mode 100644 -index 0000000..4df9915 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class -new file mode 100644 -index 0000000..8d62fee -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class -new file mode 100644 -index 0000000..a0141ee -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class -new file mode 100644 -index 0000000..5933243 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class -new file mode 100644 -index 0000000..e2c1949 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class -new file mode 100644 -index 0000000..63e3cc9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class -new file mode 100644 -index 0000000..4e39312 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt -new file mode 100644 -index 0000000..826dbbd ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt -@@ -0,0 +1,10 @@ -+R_DEF: Internal format may change without notice -+local -+drawable empty -+drawable empty_drawable -+drawable red_marker -+id annotation_img -+id annotation_layout -+id annotation_view_container -+layout annotation -+string app_name -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -new file mode 100644 -index 0000000..61a7b76 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -@@ -0,0 +1,17 @@ -+1 -+2 -+4 -+5 -+6 -+7 -+7-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:5-67 -+7-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:22-64 -+8 -+8-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:5-80 -+8-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:22-78 -+9 -+9-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:5-78 -+9-->/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:22-76 -+10 -+11 -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -new file mode 100644 -index 0000000..c8865b5 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -@@ -0,0 +1,11 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -new file mode 100644 -index 0000000..0637a08 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -@@ -0,0 +1 @@ -+[] -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt -new file mode 100644 -index 0000000..08f4ebe ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png -new file mode 100644 -index 0000000..be782e1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml -new file mode 100644 -index 0000000..1f83bff ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml -@@ -0,0 +1,5 @@ -+ -+ -+ -+ -+ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png -new file mode 100644 -index 0000000..9da19ea -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml -new file mode 100644 -index 0000000..4994bd0 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml -@@ -0,0 +1,17 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml -new file mode 100644 -index 0000000..9c03766 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml -@@ -0,0 +1,4 @@ -+ -+ -+ RNMBX -+ -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar -new file mode 100644 -index 0000000..a84121b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ -diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -new file mode 100644 -index 0000000..101e6a8 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -@@ -0,0 +1,1774 @@ -+com.rnmapbox.rnmbx -+anim abc_fade_in -+anim abc_fade_out -+anim abc_grow_fade_in_from_bottom -+anim abc_popup_enter -+anim abc_popup_exit -+anim abc_shrink_fade_out_from_bottom -+anim abc_slide_in_bottom -+anim abc_slide_in_top -+anim abc_slide_out_bottom -+anim abc_slide_out_top -+anim abc_tooltip_enter -+anim abc_tooltip_exit -+anim btn_checkbox_to_checked_box_inner_merged_animation -+anim btn_checkbox_to_checked_box_outer_merged_animation -+anim btn_checkbox_to_checked_icon_null_animation -+anim btn_checkbox_to_unchecked_box_inner_merged_animation -+anim btn_checkbox_to_unchecked_check_path_merged_animation -+anim btn_checkbox_to_unchecked_icon_null_animation -+anim btn_radio_to_off_mtrl_dot_group_animation -+anim btn_radio_to_off_mtrl_ring_outer_animation -+anim btn_radio_to_off_mtrl_ring_outer_path_animation -+anim btn_radio_to_on_mtrl_dot_group_animation -+anim btn_radio_to_on_mtrl_ring_outer_animation -+anim btn_radio_to_on_mtrl_ring_outer_path_animation -+anim catalyst_fade_in -+anim catalyst_fade_out -+anim catalyst_push_up_in -+anim catalyst_push_up_out -+anim catalyst_slide_down -+anim catalyst_slide_up -+anim fragment_fast_out_extra_slow_in -+animator fragment_close_enter -+animator fragment_close_exit -+animator fragment_fade_enter -+animator fragment_fade_exit -+animator fragment_open_enter -+animator fragment_open_exit -+attr actionBarDivider -+attr actionBarItemBackground -+attr actionBarPopupTheme -+attr actionBarSize -+attr actionBarSplitStyle -+attr actionBarStyle -+attr actionBarTabBarStyle -+attr actionBarTabStyle -+attr actionBarTabTextStyle -+attr actionBarTheme -+attr actionBarWidgetTheme -+attr actionButtonStyle -+attr actionDropDownStyle -+attr actionLayout -+attr actionMenuTextAppearance -+attr actionMenuTextColor -+attr actionModeBackground -+attr actionModeCloseButtonStyle -+attr actionModeCloseContentDescription -+attr actionModeCloseDrawable -+attr actionModeCopyDrawable -+attr actionModeCutDrawable -+attr actionModeFindDrawable -+attr actionModePasteDrawable -+attr actionModePopupWindowStyle -+attr actionModeSelectAllDrawable -+attr actionModeShareDrawable -+attr actionModeSplitBackground -+attr actionModeStyle -+attr actionModeTheme -+attr actionModeWebSearchDrawable -+attr actionOverflowButtonStyle -+attr actionOverflowMenuStyle -+attr actionProviderClass -+attr actionViewClass -+attr activityChooserViewStyle -+attr actualImageResource -+attr actualImageScaleType -+attr actualImageUri -+attr alertDialogButtonGroupStyle -+attr alertDialogCenterButtons -+attr alertDialogStyle -+attr alertDialogTheme -+attr allowStacking -+attr alpha -+attr alphabeticModifiers -+attr arrowHeadLength -+attr arrowShaftLength -+attr autoCompleteTextViewStyle -+attr autoSizeMaxTextSize -+attr autoSizeMinTextSize -+attr autoSizePresetSizes -+attr autoSizeStepGranularity -+attr autoSizeTextType -+attr autofillInlineSuggestionChip -+attr autofillInlineSuggestionEndIconStyle -+attr autofillInlineSuggestionStartIconStyle -+attr autofillInlineSuggestionSubtitle -+attr autofillInlineSuggestionTitle -+attr background -+attr backgroundImage -+attr backgroundSplit -+attr backgroundStacked -+attr backgroundTint -+attr backgroundTintMode -+attr barLength -+attr borderlessButtonStyle -+attr buttonBarButtonStyle -+attr buttonBarNegativeButtonStyle -+attr buttonBarNeutralButtonStyle -+attr buttonBarPositiveButtonStyle -+attr buttonBarStyle -+attr buttonCompat -+attr buttonGravity -+attr buttonIconDimen -+attr buttonPanelSideLayout -+attr buttonSize -+attr buttonStyle -+attr buttonStyleSmall -+attr buttonTint -+attr buttonTintMode -+attr checkMarkCompat -+attr checkMarkTint -+attr checkMarkTintMode -+attr checkboxStyle -+attr checkedTextViewStyle -+attr circleCrop -+attr closeIcon -+attr closeItemLayout -+attr collapseContentDescription -+attr collapseIcon -+attr color -+attr colorAccent -+attr colorBackgroundFloating -+attr colorButtonNormal -+attr colorControlActivated -+attr colorControlHighlight -+attr colorControlNormal -+attr colorError -+attr colorPrimary -+attr colorPrimaryDark -+attr colorScheme -+attr colorSwitchThumbNormal -+attr commitIcon -+attr contentDescription -+attr contentInsetEnd -+attr contentInsetEndWithActions -+attr contentInsetLeft -+attr contentInsetRight -+attr contentInsetStart -+attr contentInsetStartWithNavigation -+attr controlBackground -+attr coordinatorLayoutStyle -+attr customNavigationLayout -+attr defaultQueryHint -+attr dialogCornerRadius -+attr dialogPreferredPadding -+attr dialogTheme -+attr displayOptions -+attr divider -+attr dividerHorizontal -+attr dividerPadding -+attr dividerVertical -+attr drawableBottomCompat -+attr drawableEndCompat -+attr drawableLeftCompat -+attr drawableRightCompat -+attr drawableSize -+attr drawableStartCompat -+attr drawableTint -+attr drawableTintMode -+attr drawableTopCompat -+attr drawerArrowStyle -+attr dropDownListViewStyle -+attr dropdownListPreferredItemHeight -+attr editTextBackground -+attr editTextColor -+attr editTextStyle -+attr elevation -+attr emojiCompatEnabled -+attr expandActivityOverflowButtonDrawable -+attr fadeDuration -+attr failureImage -+attr failureImageScaleType -+attr firstBaselineToTopHeight -+attr font -+attr fontFamily -+attr fontProviderAuthority -+attr fontProviderCerts -+attr fontProviderFetchStrategy -+attr fontProviderFetchTimeout -+attr fontProviderPackage -+attr fontProviderQuery -+attr fontProviderSystemFontFamily -+attr fontStyle -+attr fontVariationSettings -+attr fontWeight -+attr gapBetweenBars -+attr goIcon -+attr height -+attr hideOnContentScroll -+attr homeAsUpIndicator -+attr homeLayout -+attr icon -+attr iconTint -+attr iconTintMode -+attr iconifiedByDefault -+attr imageAspectRatio -+attr imageAspectRatioAdjust -+attr imageButtonStyle -+attr indeterminateProgressStyle -+attr initialActivityCount -+attr isAutofillInlineSuggestionTheme -+attr isLightTheme -+attr itemPadding -+attr keylines -+attr lStar -+attr lastBaselineToBottomHeight -+attr layout -+attr layout_anchor -+attr layout_anchorGravity -+attr layout_behavior -+attr layout_dodgeInsetEdges -+attr layout_insetEdge -+attr layout_keyline -+attr lineHeight -+attr listChoiceBackgroundIndicator -+attr listChoiceIndicatorMultipleAnimated -+attr listChoiceIndicatorSingleAnimated -+attr listDividerAlertDialog -+attr listItemLayout -+attr listLayout -+attr listMenuViewStyle -+attr listPopupWindowStyle -+attr listPreferredItemHeight -+attr listPreferredItemHeightLarge -+attr listPreferredItemHeightSmall -+attr listPreferredItemPaddingEnd -+attr listPreferredItemPaddingLeft -+attr listPreferredItemPaddingRight -+attr listPreferredItemPaddingStart -+attr logo -+attr logoDescription -+attr mapbox_attributionClickable -+attr mapbox_attributionEnabled -+attr mapbox_attributionGravity -+attr mapbox_attributionIconColor -+attr mapbox_attributionMarginBottom -+attr mapbox_attributionMarginLeft -+attr mapbox_attributionMarginRight -+attr mapbox_attributionMarginTop -+attr mapbox_cameraAnchorX -+attr mapbox_cameraAnchorY -+attr mapbox_cameraBearing -+attr mapbox_cameraPaddingBottom -+attr mapbox_cameraPaddingLeft -+attr mapbox_cameraPaddingRight -+attr mapbox_cameraPaddingTop -+attr mapbox_cameraPitch -+attr mapbox_cameraTargetLat -+attr mapbox_cameraTargetLng -+attr mapbox_cameraZoom -+attr mapbox_compassClickable -+attr mapbox_compassEnabled -+attr mapbox_compassFadeWhenFacingNorth -+attr mapbox_compassGravity -+attr mapbox_compassImage -+attr mapbox_compassMarginBottom -+attr mapbox_compassMarginLeft -+attr mapbox_compassMarginRight -+attr mapbox_compassMarginTop -+attr mapbox_compassOpacity -+attr mapbox_compassRotation -+attr mapbox_compassVisibility -+attr mapbox_gesturesDoubleTapToZoomInEnabled -+attr mapbox_gesturesDoubleTouchToZoomOutEnabled -+attr mapbox_gesturesFocalPointX -+attr mapbox_gesturesFocalPointY -+attr mapbox_gesturesIncreasePinchToZoomThresholdWhenRotating -+attr mapbox_gesturesIncreaseRotateThresholdWhenPinchingToZoom -+attr mapbox_gesturesPinchScrollEnabled -+attr mapbox_gesturesPinchToZoomDecelerationEnabled -+attr mapbox_gesturesPinchToZoomEnabled -+attr mapbox_gesturesPitchEnabled -+attr mapbox_gesturesQuickZoomEnabled -+attr mapbox_gesturesRotateDecelerationEnabled -+attr mapbox_gesturesRotateEnabled -+attr mapbox_gesturesScrollDecelerationEnabled -+attr mapbox_gesturesScrollEnabled -+attr mapbox_gesturesScrollMode -+attr mapbox_gesturesSimultaneousRotateAndPinchToZoomEnabled -+attr mapbox_gesturesZoomAnimationAmount -+attr mapbox_locationComponentAccuracyRingBorderColor -+attr mapbox_locationComponentAccuracyRingColor -+attr mapbox_locationComponentEnabled -+attr mapbox_locationComponentLayerAbove -+attr mapbox_locationComponentLayerBelow -+attr mapbox_locationComponentLocationPuck -+attr mapbox_locationComponentLocationPuckLocationPuck2DBearingImage -+attr mapbox_locationComponentLocationPuckLocationPuck2DOpacity -+attr mapbox_locationComponentLocationPuckLocationPuck2DScaleExpression -+attr mapbox_locationComponentLocationPuckLocationPuck2DShadowImage -+attr mapbox_locationComponentLocationPuckLocationPuck2DTopImage -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelOpacity -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_x -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_y -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_z -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelScaleExpression -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_x -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_y -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelScale_z -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lat -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lon -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_z -+attr mapbox_locationComponentLocationPuckLocationPuck3DModelUri -+attr mapbox_locationComponentLocationPuckLocationPuck3DPosition_lat -+attr mapbox_locationComponentLocationPuckLocationPuck3DPosition_lon -+attr mapbox_locationComponentPuckBearingEnabled -+attr mapbox_locationComponentPuckBearingSource -+attr mapbox_locationComponentPulsingColor -+attr mapbox_locationComponentPulsingEnabled -+attr mapbox_locationComponentPulsingMaxRadius -+attr mapbox_locationComponentShowAccuracyRing -+attr mapbox_logoEnabled -+attr mapbox_logoGravity -+attr mapbox_logoMarginBottom -+attr mapbox_logoMarginLeft -+attr mapbox_logoMarginRight -+attr mapbox_logoMarginTop -+attr mapbox_mapAntialiasingSampleCount -+attr mapbox_mapConstrainMode -+attr mapbox_mapContextMode -+attr mapbox_mapCrossSourceCollisionsEnabled -+attr mapbox_mapFontFamily -+attr mapbox_mapGlyphRasterizationMode -+attr mapbox_mapOrientation -+attr mapbox_mapPixelRatio -+attr mapbox_mapSurface -+attr mapbox_mapViewportMode -+attr mapbox_optimizeForTerrainEnabled -+attr mapbox_resourcesAccessToken -+attr mapbox_resourcesBaseUrl -+attr mapbox_scaleBarBorderWidth -+attr mapbox_scaleBarEnabled -+attr mapbox_scaleBarGravity -+attr mapbox_scaleBarHeight -+attr mapbox_scaleBarIsMetricUnits -+attr mapbox_scaleBarMarginBottom -+attr mapbox_scaleBarMarginLeft -+attr mapbox_scaleBarMarginRight -+attr mapbox_scaleBarMarginTop -+attr mapbox_scaleBarPrimaryColor -+attr mapbox_scaleBarRatio -+attr mapbox_scaleBarRefreshInterval -+attr mapbox_scaleBarSecondaryColor -+attr mapbox_scaleBarShowTextBorder -+attr mapbox_scaleBarTextBarMargin -+attr mapbox_scaleBarTextBorderWidth -+attr mapbox_scaleBarTextColor -+attr mapbox_scaleBarTextSize -+attr mapbox_scaleBarUseContinuousRendering -+attr mapbox_styleUri -+attr maxButtonHeight -+attr measureWithLargestChild -+attr menu -+attr multiChoiceItemLayout -+attr navigationContentDescription -+attr navigationIcon -+attr navigationMode -+attr nestedScrollViewStyle -+attr numericModifiers -+attr overlapAnchor -+attr overlayImage -+attr paddingBottomNoButtons -+attr paddingEnd -+attr paddingStart -+attr paddingTopNoTitle -+attr panelBackground -+attr panelMenuListTheme -+attr panelMenuListWidth -+attr placeholderImage -+attr placeholderImageScaleType -+attr popupMenuStyle -+attr popupTheme -+attr popupWindowStyle -+attr preserveIconSpacing -+attr pressedStateOverlayImage -+attr progressBarAutoRotateInterval -+attr progressBarImage -+attr progressBarImageScaleType -+attr progressBarPadding -+attr progressBarStyle -+attr queryBackground -+attr queryHint -+attr queryPatterns -+attr radioButtonStyle -+attr ratingBarStyle -+attr ratingBarStyleIndicator -+attr ratingBarStyleSmall -+attr retryImage -+attr retryImageScaleType -+attr roundAsCircle -+attr roundBottomEnd -+attr roundBottomLeft -+attr roundBottomRight -+attr roundBottomStart -+attr roundTopEnd -+attr roundTopLeft -+attr roundTopRight -+attr roundTopStart -+attr roundWithOverlayColor -+attr roundedCornerRadius -+attr roundingBorderColor -+attr roundingBorderPadding -+attr roundingBorderWidth -+attr scopeUris -+attr searchHintIcon -+attr searchIcon -+attr searchViewStyle -+attr seekBarStyle -+attr selectableItemBackground -+attr selectableItemBackgroundBorderless -+attr shortcutMatchRequired -+attr showAsAction -+attr showDividers -+attr showText -+attr showTitle -+attr singleChoiceItemLayout -+attr spinBars -+attr spinnerDropDownItemStyle -+attr spinnerStyle -+attr splitTrack -+attr srcCompat -+attr state_above_anchor -+attr statusBarBackground -+attr subMenuArrow -+attr submitBackground -+attr subtitle -+attr subtitleTextAppearance -+attr subtitleTextColor -+attr subtitleTextStyle -+attr suggestionRowLayout -+attr swipeRefreshLayoutProgressSpinnerBackgroundColor -+attr switchMinWidth -+attr switchPadding -+attr switchStyle -+attr switchTextAppearance -+attr textAllCaps -+attr textAppearanceLargePopupMenu -+attr textAppearanceListItem -+attr textAppearanceListItemSecondary -+attr textAppearanceListItemSmall -+attr textAppearancePopupMenuHeader -+attr textAppearanceSearchResultSubtitle -+attr textAppearanceSearchResultTitle -+attr textAppearanceSmallPopupMenu -+attr textColorAlertDialogListItem -+attr textColorSearchUrl -+attr textLocale -+attr theme -+attr thickness -+attr thumbTextPadding -+attr thumbTint -+attr thumbTintMode -+attr tickMark -+attr tickMarkTint -+attr tickMarkTintMode -+attr tint -+attr tintMode -+attr title -+attr titleMargin -+attr titleMarginBottom -+attr titleMarginEnd -+attr titleMarginStart -+attr titleMarginTop -+attr titleMargins -+attr titleTextAppearance -+attr titleTextColor -+attr titleTextStyle -+attr toolbarNavigationButtonStyle -+attr toolbarStyle -+attr tooltipForegroundColor -+attr tooltipFrameBackground -+attr tooltipText -+attr track -+attr trackTint -+attr trackTintMode -+attr ttcIndex -+attr viewAspectRatio -+attr viewInflaterClass -+attr voiceIcon -+attr windowActionBar -+attr windowActionBarOverlay -+attr windowActionModeOverlay -+attr windowFixedHeightMajor -+attr windowFixedHeightMinor -+attr windowFixedWidthMajor -+attr windowFixedWidthMinor -+attr windowMinWidthMajor -+attr windowMinWidthMinor -+attr windowNoTitle -+bool abc_action_bar_embed_tabs -+bool abc_config_actionMenuItemAllCaps -+color abc_background_cache_hint_selector_material_dark -+color abc_background_cache_hint_selector_material_light -+color abc_btn_colored_borderless_text_material -+color abc_btn_colored_text_material -+color abc_color_highlight_material -+color abc_decor_view_status_guard -+color abc_decor_view_status_guard_light -+color abc_hint_foreground_material_dark -+color abc_hint_foreground_material_light -+color abc_primary_text_disable_only_material_dark -+color abc_primary_text_disable_only_material_light -+color abc_primary_text_material_dark -+color abc_primary_text_material_light -+color abc_search_url_text -+color abc_search_url_text_normal -+color abc_search_url_text_pressed -+color abc_search_url_text_selected -+color abc_secondary_text_material_dark -+color abc_secondary_text_material_light -+color abc_tint_btn_checkable -+color abc_tint_default -+color abc_tint_edittext -+color abc_tint_seek_thumb -+color abc_tint_spinner -+color abc_tint_switch_track -+color accent_material_dark -+color accent_material_light -+color androidx_core_ripple_material_light -+color androidx_core_secondary_text_default_material_light -+color background_floating_material_dark -+color background_floating_material_light -+color background_material_dark -+color background_material_light -+color bright_foreground_disabled_material_dark -+color bright_foreground_disabled_material_light -+color bright_foreground_inverse_material_dark -+color bright_foreground_inverse_material_light -+color bright_foreground_material_dark -+color bright_foreground_material_light -+color button_material_dark -+color button_material_light -+color call_notification_answer_color -+color call_notification_decline_color -+color catalyst_logbox_background -+color catalyst_redbox_background -+color common_google_signin_btn_text_dark -+color common_google_signin_btn_text_dark_default -+color common_google_signin_btn_text_dark_disabled -+color common_google_signin_btn_text_dark_focused -+color common_google_signin_btn_text_dark_pressed -+color common_google_signin_btn_text_light -+color common_google_signin_btn_text_light_default -+color common_google_signin_btn_text_light_disabled -+color common_google_signin_btn_text_light_focused -+color common_google_signin_btn_text_light_pressed -+color common_google_signin_btn_tint -+color dim_foreground_disabled_material_dark -+color dim_foreground_disabled_material_light -+color dim_foreground_material_dark -+color dim_foreground_material_light -+color error_color_material_dark -+color error_color_material_light -+color foreground_material_dark -+color foreground_material_light -+color highlighted_text_material_dark -+color highlighted_text_material_light -+color mapbox_blue -+color mapbox_gray -+color mapbox_gray_dark -+color mapbox_location_layer_blue -+color mapbox_location_layer_gray -+color material_blue_grey_800 -+color material_blue_grey_900 -+color material_blue_grey_950 -+color material_deep_teal_200 -+color material_deep_teal_500 -+color material_grey_100 -+color material_grey_300 -+color material_grey_50 -+color material_grey_600 -+color material_grey_800 -+color material_grey_850 -+color material_grey_900 -+color notification_action_color_filter -+color notification_icon_bg_color -+color primary_dark_material_dark -+color primary_dark_material_light -+color primary_material_dark -+color primary_material_light -+color primary_text_default_material_dark -+color primary_text_default_material_light -+color primary_text_disabled_material_dark -+color primary_text_disabled_material_light -+color ripple_material_dark -+color ripple_material_light -+color secondary_text_default_material_dark -+color secondary_text_default_material_light -+color secondary_text_disabled_material_dark -+color secondary_text_disabled_material_light -+color switch_thumb_disabled_material_dark -+color switch_thumb_disabled_material_light -+color switch_thumb_material_dark -+color switch_thumb_material_light -+color switch_thumb_normal_material_dark -+color switch_thumb_normal_material_light -+color tooltip_background_dark -+color tooltip_background_light -+dimen abc_action_bar_content_inset_material -+dimen abc_action_bar_content_inset_with_nav -+dimen abc_action_bar_default_height_material -+dimen abc_action_bar_default_padding_end_material -+dimen abc_action_bar_default_padding_start_material -+dimen abc_action_bar_elevation_material -+dimen abc_action_bar_icon_vertical_padding_material -+dimen abc_action_bar_overflow_padding_end_material -+dimen abc_action_bar_overflow_padding_start_material -+dimen abc_action_bar_stacked_max_height -+dimen abc_action_bar_stacked_tab_max_width -+dimen abc_action_bar_subtitle_bottom_margin_material -+dimen abc_action_bar_subtitle_top_margin_material -+dimen abc_action_button_min_height_material -+dimen abc_action_button_min_width_material -+dimen abc_action_button_min_width_overflow_material -+dimen abc_alert_dialog_button_bar_height -+dimen abc_alert_dialog_button_dimen -+dimen abc_button_inset_horizontal_material -+dimen abc_button_inset_vertical_material -+dimen abc_button_padding_horizontal_material -+dimen abc_button_padding_vertical_material -+dimen abc_cascading_menus_min_smallest_width -+dimen abc_config_prefDialogWidth -+dimen abc_control_corner_material -+dimen abc_control_inset_material -+dimen abc_control_padding_material -+dimen abc_dialog_corner_radius_material -+dimen abc_dialog_fixed_height_major -+dimen abc_dialog_fixed_height_minor -+dimen abc_dialog_fixed_width_major -+dimen abc_dialog_fixed_width_minor -+dimen abc_dialog_list_padding_bottom_no_buttons -+dimen abc_dialog_list_padding_top_no_title -+dimen abc_dialog_min_width_major -+dimen abc_dialog_min_width_minor -+dimen abc_dialog_padding_material -+dimen abc_dialog_padding_top_material -+dimen abc_dialog_title_divider_material -+dimen abc_disabled_alpha_material_dark -+dimen abc_disabled_alpha_material_light -+dimen abc_dropdownitem_icon_width -+dimen abc_dropdownitem_text_padding_left -+dimen abc_dropdownitem_text_padding_right -+dimen abc_edit_text_inset_bottom_material -+dimen abc_edit_text_inset_horizontal_material -+dimen abc_edit_text_inset_top_material -+dimen abc_floating_window_z -+dimen abc_list_item_height_large_material -+dimen abc_list_item_height_material -+dimen abc_list_item_height_small_material -+dimen abc_list_item_padding_horizontal_material -+dimen abc_panel_menu_list_width -+dimen abc_progress_bar_height_material -+dimen abc_search_view_preferred_height -+dimen abc_search_view_preferred_width -+dimen abc_seekbar_track_background_height_material -+dimen abc_seekbar_track_progress_height_material -+dimen abc_select_dialog_padding_start_material -+dimen abc_star_big -+dimen abc_star_medium -+dimen abc_star_small -+dimen abc_switch_padding -+dimen abc_text_size_body_1_material -+dimen abc_text_size_body_2_material -+dimen abc_text_size_button_material -+dimen abc_text_size_caption_material -+dimen abc_text_size_display_1_material -+dimen abc_text_size_display_2_material -+dimen abc_text_size_display_3_material -+dimen abc_text_size_display_4_material -+dimen abc_text_size_headline_material -+dimen abc_text_size_large_material -+dimen abc_text_size_medium_material -+dimen abc_text_size_menu_header_material -+dimen abc_text_size_menu_material -+dimen abc_text_size_small_material -+dimen abc_text_size_subhead_material -+dimen abc_text_size_subtitle_material_toolbar -+dimen abc_text_size_title_material -+dimen abc_text_size_title_material_toolbar -+dimen autofill_inline_suggestion_icon_size -+dimen compass_view_size -+dimen compat_button_inset_horizontal_material -+dimen compat_button_inset_vertical_material -+dimen compat_button_padding_horizontal_material -+dimen compat_button_padding_vertical_material -+dimen compat_control_corner_material -+dimen compat_notification_large_icon_max_height -+dimen compat_notification_large_icon_max_width -+dimen disabled_alpha_material_dark -+dimen disabled_alpha_material_light -+dimen highlight_alpha_material_colored -+dimen highlight_alpha_material_dark -+dimen highlight_alpha_material_light -+dimen hint_alpha_material_dark -+dimen hint_alpha_material_light -+dimen hint_pressed_alpha_material_dark -+dimen hint_pressed_alpha_material_light -+dimen mapbox_angular_velocity_multiplier -+dimen mapbox_defaultMultiTapMovementThreshold -+dimen mapbox_defaultScaleSpanSinceStartThreshold -+dimen mapbox_defaultShovePixelThreshold -+dimen mapbox_density_constant -+dimen mapbox_internalMinSpan23 -+dimen mapbox_internalMinSpan24 -+dimen mapbox_locationComponentTrackingInitialMoveThreshold -+dimen mapbox_locationComponentTrackingMultiFingerMoveThreshold -+dimen mapbox_minimum_angled_scale_speed -+dimen mapbox_minimum_angular_velocity -+dimen mapbox_minimum_scale_span_when_rotating -+dimen mapbox_minimum_scale_speed -+dimen mapbox_minimum_scale_velocity -+dimen mapbox_my_locationview_outer_circle -+dimen notification_action_icon_size -+dimen notification_action_text_size -+dimen notification_big_circle_margin -+dimen notification_content_margin_start -+dimen notification_large_icon_height -+dimen notification_large_icon_width -+dimen notification_main_column_padding_top -+dimen notification_media_narrow_margin -+dimen notification_right_icon_size -+dimen notification_right_side_padding_top -+dimen notification_small_icon_background_padding -+dimen notification_small_icon_size_as_large -+dimen notification_subtext_size -+dimen notification_top_pad -+dimen notification_top_pad_large_text -+dimen tooltip_corner_radius -+dimen tooltip_horizontal_padding -+dimen tooltip_margin -+dimen tooltip_precise_anchor_extra_offset -+dimen tooltip_precise_anchor_threshold -+dimen tooltip_vertical_padding -+dimen tooltip_y_offset_non_touch -+dimen tooltip_y_offset_touch -+drawable abc_ab_share_pack_mtrl_alpha -+drawable abc_action_bar_item_background_material -+drawable abc_btn_borderless_material -+drawable abc_btn_check_material -+drawable abc_btn_check_material_anim -+drawable abc_btn_check_to_on_mtrl_000 -+drawable abc_btn_check_to_on_mtrl_015 -+drawable abc_btn_colored_material -+drawable abc_btn_default_mtrl_shape -+drawable abc_btn_radio_material -+drawable abc_btn_radio_material_anim -+drawable abc_btn_radio_to_on_mtrl_000 -+drawable abc_btn_radio_to_on_mtrl_015 -+drawable abc_btn_switch_to_on_mtrl_00001 -+drawable abc_btn_switch_to_on_mtrl_00012 -+drawable abc_cab_background_internal_bg -+drawable abc_cab_background_top_material -+drawable abc_cab_background_top_mtrl_alpha -+drawable abc_control_background_material -+drawable abc_dialog_material_background -+drawable abc_edit_text_material -+drawable abc_ic_ab_back_material -+drawable abc_ic_arrow_drop_right_black_24dp -+drawable abc_ic_clear_material -+drawable abc_ic_commit_search_api_mtrl_alpha -+drawable abc_ic_go_search_api_material -+drawable abc_ic_menu_copy_mtrl_am_alpha -+drawable abc_ic_menu_cut_mtrl_alpha -+drawable abc_ic_menu_overflow_material -+drawable abc_ic_menu_paste_mtrl_am_alpha -+drawable abc_ic_menu_selectall_mtrl_alpha -+drawable abc_ic_menu_share_mtrl_alpha -+drawable abc_ic_search_api_material -+drawable abc_ic_voice_search_api_material -+drawable abc_item_background_holo_dark -+drawable abc_item_background_holo_light -+drawable abc_list_divider_material -+drawable abc_list_divider_mtrl_alpha -+drawable abc_list_focused_holo -+drawable abc_list_longpressed_holo -+drawable abc_list_pressed_holo_dark -+drawable abc_list_pressed_holo_light -+drawable abc_list_selector_background_transition_holo_dark -+drawable abc_list_selector_background_transition_holo_light -+drawable abc_list_selector_disabled_holo_dark -+drawable abc_list_selector_disabled_holo_light -+drawable abc_list_selector_holo_dark -+drawable abc_list_selector_holo_light -+drawable abc_menu_hardkey_panel_mtrl_mult -+drawable abc_popup_background_mtrl_mult -+drawable abc_ratingbar_indicator_material -+drawable abc_ratingbar_material -+drawable abc_ratingbar_small_material -+drawable abc_scrubber_control_off_mtrl_alpha -+drawable abc_scrubber_control_to_pressed_mtrl_000 -+drawable abc_scrubber_control_to_pressed_mtrl_005 -+drawable abc_scrubber_primary_mtrl_alpha -+drawable abc_scrubber_track_mtrl_alpha -+drawable abc_seekbar_thumb_material -+drawable abc_seekbar_tick_mark_material -+drawable abc_seekbar_track_material -+drawable abc_spinner_mtrl_am_alpha -+drawable abc_spinner_textfield_background_material -+drawable abc_star_black_48dp -+drawable abc_star_half_black_48dp -+drawable abc_switch_thumb_material -+drawable abc_switch_track_mtrl_alpha -+drawable abc_tab_indicator_material -+drawable abc_tab_indicator_mtrl_alpha -+drawable abc_text_cursor_material -+drawable abc_text_select_handle_left_mtrl -+drawable abc_text_select_handle_middle_mtrl -+drawable abc_text_select_handle_right_mtrl -+drawable abc_textfield_activated_mtrl_alpha -+drawable abc_textfield_default_mtrl_alpha -+drawable abc_textfield_search_activated_mtrl_alpha -+drawable abc_textfield_search_default_mtrl_alpha -+drawable abc_textfield_search_material -+drawable abc_vector_test -+drawable autofill_inline_suggestion_chip_background -+drawable btn_checkbox_checked_mtrl -+drawable btn_checkbox_checked_to_unchecked_mtrl_animation -+drawable btn_checkbox_unchecked_mtrl -+drawable btn_checkbox_unchecked_to_checked_mtrl_animation -+drawable btn_radio_off_mtrl -+drawable btn_radio_off_to_on_mtrl_animation -+drawable btn_radio_on_mtrl -+drawable btn_radio_on_to_off_mtrl_animation -+drawable common_full_open_on_phone -+drawable common_google_signin_btn_icon_dark -+drawable common_google_signin_btn_icon_dark_focused -+drawable common_google_signin_btn_icon_dark_normal -+drawable common_google_signin_btn_icon_dark_normal_background -+drawable common_google_signin_btn_icon_disabled -+drawable common_google_signin_btn_icon_light -+drawable common_google_signin_btn_icon_light_focused -+drawable common_google_signin_btn_icon_light_normal -+drawable common_google_signin_btn_icon_light_normal_background -+drawable common_google_signin_btn_text_dark -+drawable common_google_signin_btn_text_dark_focused -+drawable common_google_signin_btn_text_dark_normal -+drawable common_google_signin_btn_text_dark_normal_background -+drawable common_google_signin_btn_text_disabled -+drawable common_google_signin_btn_text_light -+drawable common_google_signin_btn_text_light_focused -+drawable common_google_signin_btn_text_light_normal -+drawable common_google_signin_btn_text_light_normal_background -+drawable empty -+drawable empty_drawable -+drawable googleg_disabled_color_18 -+drawable googleg_standard_color_18 -+drawable ic_call_answer -+drawable ic_call_answer_low -+drawable ic_call_answer_video -+drawable ic_call_answer_video_low -+drawable ic_call_decline -+drawable ic_call_decline_low -+drawable ic_resume -+drawable mapbox_attribution_default -+drawable mapbox_attribution_selected -+drawable mapbox_attribution_selector -+drawable mapbox_compass_icon -+drawable mapbox_info_bg_selector -+drawable mapbox_info_icon_default -+drawable mapbox_info_icon_selected -+drawable mapbox_logo_helmet -+drawable mapbox_logo_icon -+drawable mapbox_mylocation_bg_shape -+drawable mapbox_mylocation_icon_bearing -+drawable mapbox_mylocation_icon_default -+drawable mapbox_popup_window_transparent -+drawable mapbox_rounded_corner -+drawable mapbox_user_bearing_icon -+drawable mapbox_user_icon -+drawable mapbox_user_icon_shadow -+drawable mapbox_user_icon_stale -+drawable mapbox_user_puck_icon -+drawable mapbox_user_stroke_icon -+drawable notification_action_background -+drawable notification_bg -+drawable notification_bg_low -+drawable notification_bg_low_normal -+drawable notification_bg_low_pressed -+drawable notification_bg_normal -+drawable notification_bg_normal_pressed -+drawable notification_icon_background -+drawable notification_oversize_large_icon_bg -+drawable notification_template_icon_bg -+drawable notification_template_icon_low_bg -+drawable notification_tile_bg -+drawable notify_panel_notification_icon_bg -+drawable paused_in_debugger_background -+drawable paused_in_debugger_dialog_background -+drawable red_marker -+drawable redbox_top_border_background -+drawable ripple_effect -+drawable test_level_drawable -+drawable tooltip_frame_dark -+drawable tooltip_frame_light -+id accessibility_action_clickable_span -+id accessibility_actions -+id accessibility_collection -+id accessibility_collection_item -+id accessibility_custom_action_0 -+id accessibility_custom_action_1 -+id accessibility_custom_action_10 -+id accessibility_custom_action_11 -+id accessibility_custom_action_12 -+id accessibility_custom_action_13 -+id accessibility_custom_action_14 -+id accessibility_custom_action_15 -+id accessibility_custom_action_16 -+id accessibility_custom_action_17 -+id accessibility_custom_action_18 -+id accessibility_custom_action_19 -+id accessibility_custom_action_2 -+id accessibility_custom_action_20 -+id accessibility_custom_action_21 -+id accessibility_custom_action_22 -+id accessibility_custom_action_23 -+id accessibility_custom_action_24 -+id accessibility_custom_action_25 -+id accessibility_custom_action_26 -+id accessibility_custom_action_27 -+id accessibility_custom_action_28 -+id accessibility_custom_action_29 -+id accessibility_custom_action_3 -+id accessibility_custom_action_30 -+id accessibility_custom_action_31 -+id accessibility_custom_action_4 -+id accessibility_custom_action_5 -+id accessibility_custom_action_6 -+id accessibility_custom_action_7 -+id accessibility_custom_action_8 -+id accessibility_custom_action_9 -+id accessibility_hint -+id accessibility_label -+id accessibility_links -+id accessibility_role -+id accessibility_state -+id accessibility_state_expanded -+id accessibility_value -+id action_bar -+id action_bar_activity_content -+id action_bar_container -+id action_bar_root -+id action_bar_spinner -+id action_bar_subtitle -+id action_bar_title -+id action_container -+id action_context_bar -+id action_divider -+id action_image -+id action_menu_divider -+id action_menu_presenter -+id action_mode_bar -+id action_mode_bar_stub -+id action_mode_close_button -+id action_text -+id actions -+id activity_chooser_view_content -+id add -+id adjust_height -+id adjust_width -+id alertTitle -+id alert_title -+id all_glyphs_rasterized_locally -+id annotation_img -+id annotation_layout -+id annotation_view_container -+id async -+id auto -+id autofill_inline_suggestion_end_icon -+id autofill_inline_suggestion_start_icon -+id autofill_inline_suggestion_subtitle -+id autofill_inline_suggestion_title -+id blocking -+id bottom -+id button -+id buttonPanel -+id button_text -+id catalyst_redbox_title -+id center -+id centerCrop -+id centerInside -+id checkbox -+id checked -+id chronometer -+id content -+id contentPanel -+id course -+id custom -+id customPanel -+id dark -+id decor_content_parent -+id default_activity_button -+id default_viewport -+id dialog_button -+id downwards -+id edit_query -+id edit_text_id -+id end -+id expand_activities_button -+id expanded_menu -+id filter -+id fitBottomStart -+id fitCenter -+id fitEnd -+id fitStart -+id fitXY -+id flipped_y -+id focusCrop -+id forever -+id fps_text -+id fragment_container_view_tag -+id group_divider -+id heading -+id height_only -+id hide_ime_id -+id home -+id horizontal -+id horizontal_and_vertical -+id icon -+id icon_group -+id icon_only -+id ideographs_rasterized_locally -+id image -+id info -+id invalidate_transform -+id italic -+id labelled_by -+id left -+id lefttwards -+id light -+id line1 -+id line3 -+id listMode -+id list_item -+id location_puck_2_d -+id location_puck_3_d -+id mapView -+id message -+id mix_blend_mode -+id multiply -+id no_glyphs_rasterized_locally -+id none -+id normal -+id notification_background -+id notification_main_column -+id notification_main_column_container -+id off -+id on -+id parentPanel -+id pointer_events -+id progress_circular -+id progress_horizontal -+id radio -+id react_test_id -+id report_drawn -+id right -+id right_icon -+id right_side -+id rightwards -+id rn_frame_file -+id rn_frame_method -+id rn_redbox_dismiss_button -+id rn_redbox_line_separator -+id rn_redbox_loading_indicator -+id rn_redbox_reload_button -+id rn_redbox_report_button -+id rn_redbox_report_label -+id rn_redbox_stack -+id role -+id screen -+id scrollIndicatorDown -+id scrollIndicatorUp -+id scrollView -+id search_badge -+id search_bar -+id search_button -+id search_close_btn -+id search_edit_frame -+id search_go_btn -+id search_mag_icon -+id search_plate -+id search_src_text -+id search_voice_btn -+id select_dialog_listview -+id shared -+id shortcut -+id spacer -+id special_effects_controller_view_tag -+id split_action_bar -+id src_atop -+id src_in -+id src_over -+id standard -+id start -+id submenuarrow -+id submit_area -+id surface_view -+id tabMode -+id tag_accessibility_actions -+id tag_accessibility_clickable_spans -+id tag_accessibility_heading -+id tag_accessibility_pane_title -+id tag_on_apply_window_listener -+id tag_on_receive_content_listener -+id tag_on_receive_content_mime_types -+id tag_screen_reader_focusable -+id tag_state_description -+id tag_transition_group -+id tag_unhandled_key_event_manager -+id tag_unhandled_key_listeners -+id tag_window_insets_animation_callback -+id text -+id text2 -+id textSpacerNoButtons -+id textSpacerNoTitle -+id texture_view -+id time -+id title -+id titleDividerNoCustom -+id title_template -+id top -+id topPanel -+id transform -+id transform_origin -+id unchecked -+id uniform -+id unique -+id up -+id upwards -+id use_hardware_layer -+id vertical -+id view_clipped -+id view_tag_instance_handle -+id view_tag_native_id -+id view_tree_lifecycle_owner -+id view_tree_on_back_pressed_dispatcher_owner -+id view_tree_saved_state_registry_owner -+id view_tree_view_model_store_owner -+id visible_removing_fragment_view_tag -+id wide -+id width_and_height -+id wrap_content -+integer abc_config_activityDefaultDur -+integer abc_config_activityShortDur -+integer cancel_button_image_alpha -+integer config_tooltipAnimTime -+integer google_play_services_version -+integer react_native_dev_server_port -+integer status_bar_notification_info_maxnum -+interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 -+interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 -+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 -+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 -+interpolator btn_radio_to_off_mtrl_animation_interpolator_0 -+interpolator btn_radio_to_on_mtrl_animation_interpolator_0 -+interpolator fast_out_slow_in -+layout abc_action_bar_title_item -+layout abc_action_bar_up_container -+layout abc_action_menu_item_layout -+layout abc_action_menu_layout -+layout abc_action_mode_bar -+layout abc_action_mode_close_item_material -+layout abc_activity_chooser_view -+layout abc_activity_chooser_view_list_item -+layout abc_alert_dialog_button_bar_material -+layout abc_alert_dialog_material -+layout abc_alert_dialog_title_material -+layout abc_cascading_menu_item_layout -+layout abc_dialog_title_material -+layout abc_expanded_menu_layout -+layout abc_list_menu_item_checkbox -+layout abc_list_menu_item_icon -+layout abc_list_menu_item_layout -+layout abc_list_menu_item_radio -+layout abc_popup_menu_header_item_layout -+layout abc_popup_menu_item_layout -+layout abc_screen_content_include -+layout abc_screen_simple -+layout abc_screen_simple_overlay_action_mode -+layout abc_screen_toolbar -+layout abc_search_dropdown_item_icons_2line -+layout abc_search_view -+layout abc_select_dialog_material -+layout abc_tooltip -+layout activity_dummy -+layout alert_title_layout -+layout annotation -+layout autofill_inline_suggestion -+layout custom_dialog -+layout dev_loading_view -+layout fps_view -+layout ime_base_split_test_activity -+layout ime_secondary_split_test_activity -+layout mapbox_attribution_list_item -+layout notification_action -+layout notification_action_tombstone -+layout notification_template_custom_big -+layout notification_template_icon_group -+layout notification_template_part_chronometer -+layout notification_template_part_time -+layout paused_in_debugger_view -+layout redbox_item_frame -+layout redbox_item_title -+layout redbox_view -+layout select_dialog_item_material -+layout select_dialog_multichoice_material -+layout select_dialog_singlechoice_material -+layout support_simple_spinner_dropdown_item -+string abc_action_bar_home_description -+string abc_action_bar_up_description -+string abc_action_menu_overflow_description -+string abc_action_mode_done -+string abc_activity_chooser_view_see_all -+string abc_activitychooserview_choose_application -+string abc_capital_off -+string abc_capital_on -+string abc_menu_alt_shortcut_label -+string abc_menu_ctrl_shortcut_label -+string abc_menu_delete_shortcut_label -+string abc_menu_enter_shortcut_label -+string abc_menu_function_shortcut_label -+string abc_menu_meta_shortcut_label -+string abc_menu_shift_shortcut_label -+string abc_menu_space_shortcut_label -+string abc_menu_sym_shortcut_label -+string abc_prepend_shortcut_label -+string abc_search_hint -+string abc_searchview_description_clear -+string abc_searchview_description_query -+string abc_searchview_description_search -+string abc_searchview_description_submit -+string abc_searchview_description_voice -+string abc_shareactionprovider_share_with -+string abc_shareactionprovider_share_with_application -+string abc_toolbar_collapse_description -+string alert_description -+string androidx_startup -+string app_name -+string call_notification_answer_action -+string call_notification_answer_video_action -+string call_notification_decline_action -+string call_notification_hang_up_action -+string call_notification_incoming_text -+string call_notification_ongoing_text -+string call_notification_screening_text -+string catalyst_change_bundle_location -+string catalyst_copy_button -+string catalyst_debug_connecting -+string catalyst_debug_error -+string catalyst_debug_open -+string catalyst_debug_open_disabled -+string catalyst_dev_menu_header -+string catalyst_dev_menu_sub_header -+string catalyst_dismiss_button -+string catalyst_heap_capture -+string catalyst_hot_reloading -+string catalyst_hot_reloading_auto_disable -+string catalyst_hot_reloading_auto_enable -+string catalyst_hot_reloading_stop -+string catalyst_inspector_toggle -+string catalyst_loading_from_url -+string catalyst_open_debugger_error -+string catalyst_perf_monitor -+string catalyst_perf_monitor_stop -+string catalyst_reload -+string catalyst_reload_button -+string catalyst_reload_error -+string catalyst_report_button -+string catalyst_sample_profiler_toggle -+string catalyst_settings -+string catalyst_settings_title -+string combobox_description -+string common_google_play_services_enable_button -+string common_google_play_services_enable_text -+string common_google_play_services_enable_title -+string common_google_play_services_install_button -+string common_google_play_services_install_text -+string common_google_play_services_install_title -+string common_google_play_services_notification_channel_name -+string common_google_play_services_notification_ticker -+string common_google_play_services_unknown_issue -+string common_google_play_services_unsupported_text -+string common_google_play_services_update_button -+string common_google_play_services_update_text -+string common_google_play_services_update_title -+string common_google_play_services_updating_text -+string common_google_play_services_wear_update_text -+string common_open_on_phone -+string common_signin_button_text -+string common_signin_button_text_long -+string header_description -+string image_description -+string imagebutton_description -+string link_description -+string mapbox_attributionErrorNoBrowser -+string mapbox_attributionTelemetryMessage -+string mapbox_attributionTelemetryNegative -+string mapbox_attributionTelemetryNeutral -+string mapbox_attributionTelemetryPositive -+string mapbox_attributionTelemetryTitle -+string mapbox_attributionsDialogTitle -+string mapbox_compassContentDescription -+string mapbox_myLocationViewContentDescription -+string mapbox_privacy_policy -+string mapbox_telemetryImproveMap -+string mapbox_telemetryLink -+string mapbox_telemetrySettings -+string mapbox_warning_attribution_disabled -+string mapbox_warning_logo_disabled -+string menu_description -+string menubar_description -+string menuitem_description -+string progressbar_description -+string radiogroup_description -+string rn_tab_description -+string scrollbar_description -+string search_menu_title -+string spinbutton_description -+string state_busy_description -+string state_collapsed_description -+string state_expanded_description -+string state_mixed_description -+string state_off_description -+string state_on_description -+string state_unselected_description -+string status_bar_notification_info_overflow -+string summary_description -+string tablist_description -+string timer_description -+string toolbar_description -+style AlertDialog_AppCompat -+style AlertDialog_AppCompat_Light -+style Animation_AppCompat_Dialog -+style Animation_AppCompat_DropDownUp -+style Animation_AppCompat_Tooltip -+style Animation_Catalyst_LogBox -+style Animation_Catalyst_RedBox -+style Base_AlertDialog_AppCompat -+style Base_AlertDialog_AppCompat_Light -+style Base_Animation_AppCompat_Dialog -+style Base_Animation_AppCompat_DropDownUp -+style Base_Animation_AppCompat_Tooltip -+style Base_DialogWindowTitleBackground_AppCompat -+style Base_DialogWindowTitle_AppCompat -+style Base_TextAppearance_AppCompat -+style Base_TextAppearance_AppCompat_Body1 -+style Base_TextAppearance_AppCompat_Body2 -+style Base_TextAppearance_AppCompat_Button -+style Base_TextAppearance_AppCompat_Caption -+style Base_TextAppearance_AppCompat_Display1 -+style Base_TextAppearance_AppCompat_Display2 -+style Base_TextAppearance_AppCompat_Display3 -+style Base_TextAppearance_AppCompat_Display4 -+style Base_TextAppearance_AppCompat_Headline -+style Base_TextAppearance_AppCompat_Inverse -+style Base_TextAppearance_AppCompat_Large -+style Base_TextAppearance_AppCompat_Large_Inverse -+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -+style Base_TextAppearance_AppCompat_Medium -+style Base_TextAppearance_AppCompat_Medium_Inverse -+style Base_TextAppearance_AppCompat_Menu -+style Base_TextAppearance_AppCompat_SearchResult -+style Base_TextAppearance_AppCompat_SearchResult_Subtitle -+style Base_TextAppearance_AppCompat_SearchResult_Title -+style Base_TextAppearance_AppCompat_Small -+style Base_TextAppearance_AppCompat_Small_Inverse -+style Base_TextAppearance_AppCompat_Subhead -+style Base_TextAppearance_AppCompat_Subhead_Inverse -+style Base_TextAppearance_AppCompat_Title -+style Base_TextAppearance_AppCompat_Title_Inverse -+style Base_TextAppearance_AppCompat_Tooltip -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title -+style Base_TextAppearance_AppCompat_Widget_Button -+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -+style Base_TextAppearance_AppCompat_Widget_Button_Colored -+style Base_TextAppearance_AppCompat_Widget_Button_Inverse -+style Base_TextAppearance_AppCompat_Widget_DropDownItem -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -+style Base_TextAppearance_AppCompat_Widget_Switch -+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title -+style Base_ThemeOverlay_AppCompat -+style Base_ThemeOverlay_AppCompat_ActionBar -+style Base_ThemeOverlay_AppCompat_Dark -+style Base_ThemeOverlay_AppCompat_Dark_ActionBar -+style Base_ThemeOverlay_AppCompat_Dialog -+style Base_ThemeOverlay_AppCompat_Dialog_Alert -+style Base_ThemeOverlay_AppCompat_Light -+style Base_Theme_AppCompat -+style Base_Theme_AppCompat_CompactMenu -+style Base_Theme_AppCompat_Dialog -+style Base_Theme_AppCompat_DialogWhenLarge -+style Base_Theme_AppCompat_Dialog_Alert -+style Base_Theme_AppCompat_Dialog_FixedSize -+style Base_Theme_AppCompat_Dialog_MinWidth -+style Base_Theme_AppCompat_Light -+style Base_Theme_AppCompat_Light_DarkActionBar -+style Base_Theme_AppCompat_Light_Dialog -+style Base_Theme_AppCompat_Light_DialogWhenLarge -+style Base_Theme_AppCompat_Light_Dialog_Alert -+style Base_Theme_AppCompat_Light_Dialog_FixedSize -+style Base_Theme_AppCompat_Light_Dialog_MinWidth -+style Base_V21_ThemeOverlay_AppCompat_Dialog -+style Base_V21_Theme_AppCompat -+style Base_V21_Theme_AppCompat_Dialog -+style Base_V21_Theme_AppCompat_Light -+style Base_V21_Theme_AppCompat_Light_Dialog -+style Base_V22_Theme_AppCompat -+style Base_V22_Theme_AppCompat_Light -+style Base_V23_Theme_AppCompat -+style Base_V23_Theme_AppCompat_Light -+style Base_V26_Theme_AppCompat -+style Base_V26_Theme_AppCompat_Light -+style Base_V26_Widget_AppCompat_Toolbar -+style Base_V28_Theme_AppCompat -+style Base_V28_Theme_AppCompat_Light -+style Base_V7_ThemeOverlay_AppCompat_Dialog -+style Base_V7_Theme_AppCompat -+style Base_V7_Theme_AppCompat_Dialog -+style Base_V7_Theme_AppCompat_Light -+style Base_V7_Theme_AppCompat_Light_Dialog -+style Base_V7_Widget_AppCompat_AutoCompleteTextView -+style Base_V7_Widget_AppCompat_EditText -+style Base_V7_Widget_AppCompat_Toolbar -+style Base_Widget_AppCompat_ActionBar -+style Base_Widget_AppCompat_ActionBar_Solid -+style Base_Widget_AppCompat_ActionBar_TabBar -+style Base_Widget_AppCompat_ActionBar_TabText -+style Base_Widget_AppCompat_ActionBar_TabView -+style Base_Widget_AppCompat_ActionButton -+style Base_Widget_AppCompat_ActionButton_CloseMode -+style Base_Widget_AppCompat_ActionButton_Overflow -+style Base_Widget_AppCompat_ActionMode -+style Base_Widget_AppCompat_ActivityChooserView -+style Base_Widget_AppCompat_AutoCompleteTextView -+style Base_Widget_AppCompat_Button -+style Base_Widget_AppCompat_ButtonBar -+style Base_Widget_AppCompat_ButtonBar_AlertDialog -+style Base_Widget_AppCompat_Button_Borderless -+style Base_Widget_AppCompat_Button_Borderless_Colored -+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -+style Base_Widget_AppCompat_Button_Colored -+style Base_Widget_AppCompat_Button_Small -+style Base_Widget_AppCompat_CompoundButton_CheckBox -+style Base_Widget_AppCompat_CompoundButton_RadioButton -+style Base_Widget_AppCompat_CompoundButton_Switch -+style Base_Widget_AppCompat_DrawerArrowToggle -+style Base_Widget_AppCompat_DrawerArrowToggle_Common -+style Base_Widget_AppCompat_DropDownItem_Spinner -+style Base_Widget_AppCompat_EditText -+style Base_Widget_AppCompat_ImageButton -+style Base_Widget_AppCompat_Light_ActionBar -+style Base_Widget_AppCompat_Light_ActionBar_Solid -+style Base_Widget_AppCompat_Light_ActionBar_TabBar -+style Base_Widget_AppCompat_Light_ActionBar_TabText -+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -+style Base_Widget_AppCompat_Light_ActionBar_TabView -+style Base_Widget_AppCompat_Light_PopupMenu -+style Base_Widget_AppCompat_Light_PopupMenu_Overflow -+style Base_Widget_AppCompat_ListMenuView -+style Base_Widget_AppCompat_ListPopupWindow -+style Base_Widget_AppCompat_ListView -+style Base_Widget_AppCompat_ListView_DropDown -+style Base_Widget_AppCompat_ListView_Menu -+style Base_Widget_AppCompat_PopupMenu -+style Base_Widget_AppCompat_PopupMenu_Overflow -+style Base_Widget_AppCompat_PopupWindow -+style Base_Widget_AppCompat_ProgressBar -+style Base_Widget_AppCompat_ProgressBar_Horizontal -+style Base_Widget_AppCompat_RatingBar -+style Base_Widget_AppCompat_RatingBar_Indicator -+style Base_Widget_AppCompat_RatingBar_Small -+style Base_Widget_AppCompat_SearchView -+style Base_Widget_AppCompat_SearchView_ActionBar -+style Base_Widget_AppCompat_SeekBar -+style Base_Widget_AppCompat_SeekBar_Discrete -+style Base_Widget_AppCompat_Spinner -+style Base_Widget_AppCompat_Spinner_Underlined -+style Base_Widget_AppCompat_TextView -+style Base_Widget_AppCompat_TextView_SpinnerItem -+style Base_Widget_AppCompat_Toolbar -+style Base_Widget_AppCompat_Toolbar_Button_Navigation -+style CalendarDatePickerDialog -+style CalendarDatePickerStyle -+style DialogAnimationFade -+style DialogAnimationSlide -+style NoAnimationDialog -+style Platform_AppCompat -+style Platform_AppCompat_Light -+style Platform_ThemeOverlay_AppCompat -+style Platform_ThemeOverlay_AppCompat_Dark -+style Platform_ThemeOverlay_AppCompat_Light -+style Platform_V21_AppCompat -+style Platform_V21_AppCompat_Light -+style Platform_V25_AppCompat -+style Platform_V25_AppCompat_Light -+style Platform_Widget_AppCompat_Spinner -+style RtlOverlay_DialogWindowTitle_AppCompat -+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon -+style RtlOverlay_Widget_AppCompat_PopupMenuItem -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon -+style RtlOverlay_Widget_AppCompat_Search_DropDown -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text -+style RtlUnderlay_Widget_AppCompat_ActionButton -+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -+style SpinnerDatePickerDialog -+style SpinnerDatePickerStyle -+style TextAppearance_AppCompat -+style TextAppearance_AppCompat_Body1 -+style TextAppearance_AppCompat_Body2 -+style TextAppearance_AppCompat_Button -+style TextAppearance_AppCompat_Caption -+style TextAppearance_AppCompat_Display1 -+style TextAppearance_AppCompat_Display2 -+style TextAppearance_AppCompat_Display3 -+style TextAppearance_AppCompat_Display4 -+style TextAppearance_AppCompat_Headline -+style TextAppearance_AppCompat_Inverse -+style TextAppearance_AppCompat_Large -+style TextAppearance_AppCompat_Large_Inverse -+style TextAppearance_AppCompat_Light_SearchResult_Subtitle -+style TextAppearance_AppCompat_Light_SearchResult_Title -+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -+style TextAppearance_AppCompat_Medium -+style TextAppearance_AppCompat_Medium_Inverse -+style TextAppearance_AppCompat_Menu -+style TextAppearance_AppCompat_SearchResult_Subtitle -+style TextAppearance_AppCompat_SearchResult_Title -+style TextAppearance_AppCompat_Small -+style TextAppearance_AppCompat_Small_Inverse -+style TextAppearance_AppCompat_Subhead -+style TextAppearance_AppCompat_Subhead_Inverse -+style TextAppearance_AppCompat_Title -+style TextAppearance_AppCompat_Title_Inverse -+style TextAppearance_AppCompat_Tooltip -+style TextAppearance_AppCompat_Widget_ActionBar_Menu -+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle -+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -+style TextAppearance_AppCompat_Widget_ActionBar_Title -+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle -+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -+style TextAppearance_AppCompat_Widget_ActionMode_Title -+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -+style TextAppearance_AppCompat_Widget_Button -+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored -+style TextAppearance_AppCompat_Widget_Button_Colored -+style TextAppearance_AppCompat_Widget_Button_Inverse -+style TextAppearance_AppCompat_Widget_DropDownItem -+style TextAppearance_AppCompat_Widget_PopupMenu_Header -+style TextAppearance_AppCompat_Widget_PopupMenu_Large -+style TextAppearance_AppCompat_Widget_PopupMenu_Small -+style TextAppearance_AppCompat_Widget_Switch -+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem -+style TextAppearance_Compat_Notification -+style TextAppearance_Compat_Notification_Info -+style TextAppearance_Compat_Notification_Line2 -+style TextAppearance_Compat_Notification_Time -+style TextAppearance_Compat_Notification_Title -+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item -+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle -+style TextAppearance_Widget_AppCompat_Toolbar_Title -+style Theme -+style ThemeOverlay_AppCompat -+style ThemeOverlay_AppCompat_ActionBar -+style ThemeOverlay_AppCompat_Dark -+style ThemeOverlay_AppCompat_Dark_ActionBar -+style ThemeOverlay_AppCompat_DayNight -+style ThemeOverlay_AppCompat_DayNight_ActionBar -+style ThemeOverlay_AppCompat_Dialog -+style ThemeOverlay_AppCompat_Dialog_Alert -+style ThemeOverlay_AppCompat_Light -+style Theme_AppCompat -+style Theme_AppCompat_CompactMenu -+style Theme_AppCompat_DayNight -+style Theme_AppCompat_DayNight_DarkActionBar -+style Theme_AppCompat_DayNight_Dialog -+style Theme_AppCompat_DayNight_DialogWhenLarge -+style Theme_AppCompat_DayNight_Dialog_Alert -+style Theme_AppCompat_DayNight_Dialog_MinWidth -+style Theme_AppCompat_DayNight_NoActionBar -+style Theme_AppCompat_Dialog -+style Theme_AppCompat_DialogWhenLarge -+style Theme_AppCompat_Dialog_Alert -+style Theme_AppCompat_Dialog_MinWidth -+style Theme_AppCompat_Empty -+style Theme_AppCompat_Light -+style Theme_AppCompat_Light_DarkActionBar -+style Theme_AppCompat_Light_Dialog -+style Theme_AppCompat_Light_DialogWhenLarge -+style Theme_AppCompat_Light_Dialog_Alert -+style Theme_AppCompat_Light_Dialog_MinWidth -+style Theme_AppCompat_Light_NoActionBar -+style Theme_AppCompat_NoActionBar -+style Theme_AutofillInlineSuggestion -+style Theme_Catalyst -+style Theme_Catalyst_LogBox -+style Theme_Catalyst_RedBox -+style Theme_FullScreenDialog -+style Theme_FullScreenDialogAnimatedFade -+style Theme_FullScreenDialogAnimatedSlide -+style Theme_ReactNative_AppCompat_Light -+style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen -+style Theme_ReactNative_TextInput_DefaultBackground -+style Widget_AppCompat_ActionBar -+style Widget_AppCompat_ActionBar_Solid -+style Widget_AppCompat_ActionBar_TabBar -+style Widget_AppCompat_ActionBar_TabText -+style Widget_AppCompat_ActionBar_TabView -+style Widget_AppCompat_ActionButton -+style Widget_AppCompat_ActionButton_CloseMode -+style Widget_AppCompat_ActionButton_Overflow -+style Widget_AppCompat_ActionMode -+style Widget_AppCompat_ActivityChooserView -+style Widget_AppCompat_AutoCompleteTextView -+style Widget_AppCompat_Button -+style Widget_AppCompat_ButtonBar -+style Widget_AppCompat_ButtonBar_AlertDialog -+style Widget_AppCompat_Button_Borderless -+style Widget_AppCompat_Button_Borderless_Colored -+style Widget_AppCompat_Button_ButtonBar_AlertDialog -+style Widget_AppCompat_Button_Colored -+style Widget_AppCompat_Button_Small -+style Widget_AppCompat_CompoundButton_CheckBox -+style Widget_AppCompat_CompoundButton_RadioButton -+style Widget_AppCompat_CompoundButton_Switch -+style Widget_AppCompat_DrawerArrowToggle -+style Widget_AppCompat_DropDownItem_Spinner -+style Widget_AppCompat_EditText -+style Widget_AppCompat_ImageButton -+style Widget_AppCompat_Light_ActionBar -+style Widget_AppCompat_Light_ActionBar_Solid -+style Widget_AppCompat_Light_ActionBar_Solid_Inverse -+style Widget_AppCompat_Light_ActionBar_TabBar -+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse -+style Widget_AppCompat_Light_ActionBar_TabText -+style Widget_AppCompat_Light_ActionBar_TabText_Inverse -+style Widget_AppCompat_Light_ActionBar_TabView -+style Widget_AppCompat_Light_ActionBar_TabView_Inverse -+style Widget_AppCompat_Light_ActionButton -+style Widget_AppCompat_Light_ActionButton_CloseMode -+style Widget_AppCompat_Light_ActionButton_Overflow -+style Widget_AppCompat_Light_ActionMode_Inverse -+style Widget_AppCompat_Light_ActivityChooserView -+style Widget_AppCompat_Light_AutoCompleteTextView -+style Widget_AppCompat_Light_DropDownItem_Spinner -+style Widget_AppCompat_Light_ListPopupWindow -+style Widget_AppCompat_Light_ListView_DropDown -+style Widget_AppCompat_Light_PopupMenu -+style Widget_AppCompat_Light_PopupMenu_Overflow -+style Widget_AppCompat_Light_SearchView -+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar -+style Widget_AppCompat_ListMenuView -+style Widget_AppCompat_ListPopupWindow -+style Widget_AppCompat_ListView -+style Widget_AppCompat_ListView_DropDown -+style Widget_AppCompat_ListView_Menu -+style Widget_AppCompat_PopupMenu -+style Widget_AppCompat_PopupMenu_Overflow -+style Widget_AppCompat_PopupWindow -+style Widget_AppCompat_ProgressBar -+style Widget_AppCompat_ProgressBar_Horizontal -+style Widget_AppCompat_RatingBar -+style Widget_AppCompat_RatingBar_Indicator -+style Widget_AppCompat_RatingBar_Small -+style Widget_AppCompat_SearchView -+style Widget_AppCompat_SearchView_ActionBar -+style Widget_AppCompat_SeekBar -+style Widget_AppCompat_SeekBar_Discrete -+style Widget_AppCompat_Spinner -+style Widget_AppCompat_Spinner_DropDown -+style Widget_AppCompat_Spinner_DropDown_ActionBar -+style Widget_AppCompat_Spinner_Underlined -+style Widget_AppCompat_TextView -+style Widget_AppCompat_TextView_SpinnerItem -+style Widget_AppCompat_Toolbar -+style Widget_AppCompat_Toolbar_Button_Navigation -+style Widget_Autofill -+style Widget_Autofill_InlineSuggestionChip -+style Widget_Autofill_InlineSuggestionEndIconStyle -+style Widget_Autofill_InlineSuggestionStartIconStyle -+style Widget_Autofill_InlineSuggestionSubtitle -+style Widget_Autofill_InlineSuggestionTitle -+style Widget_Compat_NotificationActionContainer -+style Widget_Compat_NotificationActionText -+style Widget_Support_CoordinatorLayout -+style redboxButton -+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle -+styleable ActionBarLayout android_layout_gravity -+styleable ActionMenuItemView android_minWidth -+styleable ActionMenuView -+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle -+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount -+styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout -+styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -+styleable AnimatedStateListDrawableItem android_drawable android_id -+styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId -+styleable AppCompatEmojiHelper -+styleable AppCompatImageView android_src srcCompat tint tintMode -+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode -+styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance -+styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale -+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle -+styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme -+styleable ButtonBarLayout allowStacking -+styleable Capability queryPatterns shortcutMatchRequired -+styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode -+styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar -+styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode -+styleable CoordinatorLayout keylines statusBarBackground -+styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline -+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness -+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily -+styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex -+styleable Fragment android_id android_name android_tag -+styleable FragmentContainerView android_name android_tag -+styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio -+styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type -+styleable GradientColorItem android_color android_offset -+styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers -+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width -+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset -+styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust -+styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible -+styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText -+styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow -+styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor -+styleable PopupWindowBackgroundState state_above_anchor -+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle -+styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon -+styleable SignInButton buttonSize colorScheme scopeUris -+styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio -+styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme -+styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -+styleable StateListDrawableItem android_drawable -+styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor -+styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode -+styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale -+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor -+styleable View android_focusable android_theme paddingEnd paddingStart theme -+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode -+styleable ViewStubCompat android_id android_inflatedId android_layout -+styleable mapbox_MapView mapbox_attributionClickable mapbox_attributionEnabled mapbox_attributionGravity mapbox_attributionIconColor mapbox_attributionMarginBottom mapbox_attributionMarginLeft mapbox_attributionMarginRight mapbox_attributionMarginTop mapbox_cameraAnchorX mapbox_cameraAnchorY mapbox_cameraBearing mapbox_cameraPaddingBottom mapbox_cameraPaddingLeft mapbox_cameraPaddingRight mapbox_cameraPaddingTop mapbox_cameraPitch mapbox_cameraTargetLat mapbox_cameraTargetLng mapbox_cameraZoom mapbox_compassClickable mapbox_compassEnabled mapbox_compassFadeWhenFacingNorth mapbox_compassGravity mapbox_compassImage mapbox_compassMarginBottom mapbox_compassMarginLeft mapbox_compassMarginRight mapbox_compassMarginTop mapbox_compassOpacity mapbox_compassRotation mapbox_compassVisibility mapbox_gesturesDoubleTapToZoomInEnabled mapbox_gesturesDoubleTouchToZoomOutEnabled mapbox_gesturesFocalPointX mapbox_gesturesFocalPointY mapbox_gesturesIncreasePinchToZoomThresholdWhenRotating mapbox_gesturesIncreaseRotateThresholdWhenPinchingToZoom mapbox_gesturesPinchScrollEnabled mapbox_gesturesPinchToZoomDecelerationEnabled mapbox_gesturesPinchToZoomEnabled mapbox_gesturesPitchEnabled mapbox_gesturesQuickZoomEnabled mapbox_gesturesRotateDecelerationEnabled mapbox_gesturesRotateEnabled mapbox_gesturesScrollDecelerationEnabled mapbox_gesturesScrollEnabled mapbox_gesturesScrollMode mapbox_gesturesSimultaneousRotateAndPinchToZoomEnabled mapbox_gesturesZoomAnimationAmount mapbox_locationComponentAccuracyRingBorderColor mapbox_locationComponentAccuracyRingColor mapbox_locationComponentEnabled mapbox_locationComponentLayerAbove mapbox_locationComponentLayerBelow mapbox_locationComponentLocationPuck mapbox_locationComponentLocationPuckLocationPuck2DBearingImage mapbox_locationComponentLocationPuckLocationPuck2DOpacity mapbox_locationComponentLocationPuckLocationPuck2DScaleExpression mapbox_locationComponentLocationPuckLocationPuck2DShadowImage mapbox_locationComponentLocationPuckLocationPuck2DTopImage mapbox_locationComponentLocationPuckLocationPuck3DModelOpacity mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_x mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_y mapbox_locationComponentLocationPuckLocationPuck3DModelRotation_z mapbox_locationComponentLocationPuckLocationPuck3DModelScaleExpression mapbox_locationComponentLocationPuckLocationPuck3DModelScale_x mapbox_locationComponentLocationPuckLocationPuck3DModelScale_y mapbox_locationComponentLocationPuckLocationPuck3DModelScale_z mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lat mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_lon mapbox_locationComponentLocationPuckLocationPuck3DModelTranslation_z mapbox_locationComponentLocationPuckLocationPuck3DModelUri mapbox_locationComponentLocationPuckLocationPuck3DPosition_lat mapbox_locationComponentLocationPuckLocationPuck3DPosition_lon mapbox_locationComponentPuckBearingEnabled mapbox_locationComponentPuckBearingSource mapbox_locationComponentPulsingColor mapbox_locationComponentPulsingEnabled mapbox_locationComponentPulsingMaxRadius mapbox_locationComponentShowAccuracyRing mapbox_logoEnabled mapbox_logoGravity mapbox_logoMarginBottom mapbox_logoMarginLeft mapbox_logoMarginRight mapbox_logoMarginTop mapbox_mapAntialiasingSampleCount mapbox_mapConstrainMode mapbox_mapContextMode mapbox_mapCrossSourceCollisionsEnabled mapbox_mapFontFamily mapbox_mapGlyphRasterizationMode mapbox_mapOrientation mapbox_mapPixelRatio mapbox_mapSurface mapbox_mapViewportMode mapbox_optimizeForTerrainEnabled mapbox_resourcesAccessToken mapbox_resourcesBaseUrl mapbox_scaleBarBorderWidth mapbox_scaleBarEnabled mapbox_scaleBarGravity mapbox_scaleBarHeight mapbox_scaleBarIsMetricUnits mapbox_scaleBarMarginBottom mapbox_scaleBarMarginLeft mapbox_scaleBarMarginRight mapbox_scaleBarMarginTop mapbox_scaleBarPrimaryColor mapbox_scaleBarRatio mapbox_scaleBarRefreshInterval mapbox_scaleBarSecondaryColor mapbox_scaleBarShowTextBorder mapbox_scaleBarTextBarMargin mapbox_scaleBarTextBorderWidth mapbox_scaleBarTextColor mapbox_scaleBarTextSize mapbox_scaleBarUseContinuousRendering mapbox_styleUri -+xml rn_dev_preferences -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab -new file mode 100644 -index 0000000..3bcf2e0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream -new file mode 100644 -index 0000000..b532518 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len -new file mode 100644 -index 0000000..cb13e13 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len -new file mode 100644 -index 0000000..4e3f8d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values -new file mode 100644 -index 0000000..f783432 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at -new file mode 100644 -index 0000000..5c19bb8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s -new file mode 100644 -index 0000000..9205008 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s -@@ -0,0 +1 @@ -+ü1Þ* -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i -new file mode 100644 -index 0000000..7c7525b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab -new file mode 100644 -index 0000000..a18383f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream -new file mode 100644 -index 0000000..62b5252 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len -new file mode 100644 -index 0000000..9ab03c8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len -new file mode 100644 -index 0000000..51ef024 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at -new file mode 100644 -index 0000000..dd431d4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i -new file mode 100644 -index 0000000..ad76022 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab -new file mode 100644 -index 0000000..7263122 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream -new file mode 100644 -index 0000000..62b5252 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len -new file mode 100644 -index 0000000..9ab03c8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len -new file mode 100644 -index 0000000..51ef024 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values -new file mode 100644 -index 0000000..27d78ad -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at -new file mode 100644 -index 0000000..4ab89df -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s -new file mode 100644 -index 0000000..85a7e48 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s -@@ -0,0 +1 @@ -+î -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i -new file mode 100644 -index 0000000..ad76022 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab -new file mode 100644 -index 0000000..4c14737 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream -new file mode 100644 -index 0000000..3e17e9a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len -new file mode 100644 -index 0000000..e77f203 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len -new file mode 100644 -index 0000000..123d5b3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at -new file mode 100644 -index 0000000..0a639c2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i -new file mode 100644 -index 0000000..214b7b1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab -new file mode 100644 -index 0000000..0b15b3d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream -new file mode 100644 -index 0000000..9b92239 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len -new file mode 100644 -index 0000000..e0989a0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len -new file mode 100644 -index 0000000..a7b93bc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values -new file mode 100644 -index 0000000..e8b62af -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at -new file mode 100644 -index 0000000..2f67ccc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s -new file mode 100644 -index 0000000..168ed16 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s -@@ -0,0 +1 @@ -+þô -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i -new file mode 100644 -index 0000000..0593335 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab -new file mode 100644 -index 0000000..54f4418 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream -new file mode 100644 -index 0000000..b79d8b5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len -new file mode 100644 -index 0000000..54b7bb0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len -new file mode 100644 -index 0000000..73e7fcf -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at -new file mode 100644 -index 0000000..37b7cde -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i -new file mode 100644 -index 0000000..e34330e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab -new file mode 100644 -index 0000000..88a4b6d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream -new file mode 100644 -index 0000000..681a610 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len -new file mode 100644 -index 0000000..f3bcb31 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len -new file mode 100644 -index 0000000..d10ff48 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values -new file mode 100644 -index 0000000..f8431c7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at -new file mode 100644 -index 0000000..ee2ed94 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s -new file mode 100644 -index 0000000..82c6823 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i -new file mode 100644 -index 0000000..d333fc9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab -new file mode 100644 -index 0000000..035847e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream -new file mode 100644 -index 0000000..b532518 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len -new file mode 100644 -index 0000000..cb13e13 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len -new file mode 100644 -index 0000000..4e3f8d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values -new file mode 100644 -index 0000000..30018bf -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at -new file mode 100644 -index 0000000..2219676 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s -new file mode 100644 -index 0000000..54d0b58 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s -@@ -0,0 +1 @@ -+ÌD -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i -new file mode 100644 -index 0000000..7c7525b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab -new file mode 100644 -index 0000000..68638f3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream -new file mode 100644 -index 0000000..b0e0fc0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len -new file mode 100644 -index 0000000..98143f1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len -new file mode 100644 -index 0000000..7ce6409 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at -new file mode 100644 -index 0000000..a880ec4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i -new file mode 100644 -index 0000000..e82053a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab -new file mode 100644 -index 0000000..55c679f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream -new file mode 100644 -index 0000000..f774a0d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len -new file mode 100644 -index 0000000..0520dca -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len -new file mode 100644 -index 0000000..789b8d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at -new file mode 100644 -index 0000000..d3264fd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i -new file mode 100644 -index 0000000..6c4f466 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab -new file mode 100644 -index 0000000..dac8e49 ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab -@@ -0,0 +1,2 @@ -+144 -+0 -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab -new file mode 100644 -index 0000000..172cf06 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream -new file mode 100644 -index 0000000..b532518 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len -new file mode 100644 -index 0000000..cb13e13 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len -new file mode 100644 -index 0000000..4e3f8d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at -new file mode 100644 -index 0000000..b4ff591 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i -new file mode 100644 -index 0000000..7c7525b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab -new file mode 100644 -index 0000000..b7001c9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream -new file mode 100644 -index 0000000..48c7c30 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len -new file mode 100644 -index 0000000..01bdaa1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len -new file mode 100644 -index 0000000..4e3f8d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at -new file mode 100644 -index 0000000..56aae0c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i -new file mode 100644 -index 0000000..9c754cd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/@rnmapbox/maps/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/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab -new file mode 100644 -index 0000000..58797c1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream -new file mode 100644 -index 0000000..726b362 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len -new file mode 100644 -index 0000000..ecbf248 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len -new file mode 100644 -index 0000000..2fc45b7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values -new file mode 100644 -index 0000000..10c5b2b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at -new file mode 100644 -index 0000000..2d2d791 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s -new file mode 100644 -index 0000000..a5b742e ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s -@@ -0,0 +1 @@ -+í­Á…Í„ -\ No newline at end of file -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i -new file mode 100644 -index 0000000..872877f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len -new file mode 100644 -index 0000000..b9fffc7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin -new file mode 100644 -index 0000000..d717fdb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin -new file mode 100644 -index 0000000..7ba96da -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ -diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin -new file mode 100644 -index 0000000..cc1bd1f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ -diff --git a/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt -new file mode 100644 -index 0000000..083631b ---- /dev/null -+++ b/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt -@@ -0,0 +1,29 @@ -+-- Merging decision tree log --- -+manifest -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:1-5:12 -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:1-5:12 -+ package -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:70-98 -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml -+ xmlns:android -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:11-69 -+uses-permission#android.permission.INTERNET -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:5-67 -+ android:name -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:22-64 -+uses-permission#android.permission.ACCESS_COARSE_LOCATION -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:5-80 -+ android:name -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:22-78 -+uses-permission#android.permission.ACCESS_FINE_LOCATION -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:5-78 -+ android:name -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:22-76 -+uses-sdk -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml reason: use-sdk injection requested -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml -+ android:targetSdkVersion -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml -+ android:minSdkVersion -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin -new file mode 100644 -index 0000000..b5b093e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module -new file mode 100644 -index 0000000..0964712 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class -new file mode 100644 -index 0000000..18e18a8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class -new file mode 100644 -index 0000000..e664ef8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class -new file mode 100644 -index 0000000..e19cff6 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class -new file mode 100644 -index 0000000..06a9995 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class -new file mode 100644 -index 0000000..b361652 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class -new file mode 100644 -index 0000000..3070161 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class -new file mode 100644 -index 0000000..928ec66 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class -new file mode 100644 -index 0000000..b3e354e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class -new file mode 100644 -index 0000000..39dbcb2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class -new file mode 100644 -index 0000000..95887a0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class -new file mode 100644 -index 0000000..3249ceb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class -new file mode 100644 -index 0000000..5b5df10 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class -new file mode 100644 -index 0000000..d6033cb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class -new file mode 100644 -index 0000000..12e82d8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class -new file mode 100644 -index 0000000..d18fcf7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class -new file mode 100644 -index 0000000..453a5d2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class -new file mode 100644 -index 0000000..4c52068 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class -new file mode 100644 -index 0000000..4daa769 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class -new file mode 100644 -index 0000000..36e44e9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class -new file mode 100644 -index 0000000..f1143ee -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class -new file mode 100644 -index 0000000..a6e6f1a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class -new file mode 100644 -index 0000000..1c2c5db -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class -new file mode 100644 -index 0000000..ff361d2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class -new file mode 100644 -index 0000000..eb13c95 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class -new file mode 100644 -index 0000000..07c00e0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class -new file mode 100644 -index 0000000..5ea24cb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class -new file mode 100644 -index 0000000..8b23623 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class -new file mode 100644 -index 0000000..2563afc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class -new file mode 100644 -index 0000000..494d1bf -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class -new file mode 100644 -index 0000000..bfd7d40 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class -new file mode 100644 -index 0000000..c3b2728 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class -new file mode 100644 -index 0000000..41f27c7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class -new file mode 100644 -index 0000000..f0d3b41 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class -new file mode 100644 -index 0000000..32d3b8b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class -new file mode 100644 -index 0000000..dba4251 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class -new file mode 100644 -index 0000000..ee9f21e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class -new file mode 100644 -index 0000000..a8ad98a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class -new file mode 100644 -index 0000000..e0da102 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class -new file mode 100644 -index 0000000..972177b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class -new file mode 100644 -index 0000000..7c1c0e2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class -new file mode 100644 -index 0000000..cec39df -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class -new file mode 100644 -index 0000000..7196fcb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class -new file mode 100644 -index 0000000..7394822 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class -new file mode 100644 -index 0000000..0d48aa9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class -new file mode 100644 -index 0000000..5d8f296 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class -new file mode 100644 -index 0000000..58ce7e4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class -new file mode 100644 -index 0000000..1d0cb4d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class -new file mode 100644 -index 0000000..e6d3c4f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class -new file mode 100644 -index 0000000..6821c94 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class -new file mode 100644 -index 0000000..7a889c0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class -new file mode 100644 -index 0000000..09d6697 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class -new file mode 100644 -index 0000000..3ab7fdb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class -new file mode 100644 -index 0000000..d5457d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class -new file mode 100644 -index 0000000..4529ba2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class -new file mode 100644 -index 0000000..bebc741 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class -new file mode 100644 -index 0000000..1a144a2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class -new file mode 100644 -index 0000000..dfea4b2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class -new file mode 100644 -index 0000000..131be29 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class -new file mode 100644 -index 0000000..06a6dff -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class -new file mode 100644 -index 0000000..b23fe63 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class -new file mode 100644 -index 0000000..50d7675 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class -new file mode 100644 -index 0000000..f524a7f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class -new file mode 100644 -index 0000000..d3d8396 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class -new file mode 100644 -index 0000000..2bf7380 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class -new file mode 100644 -index 0000000..e88d4a6 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class -new file mode 100644 -index 0000000..073c794 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class -new file mode 100644 -index 0000000..68acb5c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class -new file mode 100644 -index 0000000..dd30dc0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class -new file mode 100644 -index 0000000..947de25 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class -new file mode 100644 -index 0000000..8a62cd2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class -new file mode 100644 -index 0000000..f88db2a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class -new file mode 100644 -index 0000000..0053d48 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class -new file mode 100644 -index 0000000..11ce507 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class -new file mode 100644 -index 0000000..c753a08 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class -new file mode 100644 -index 0000000..a5ddb0e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class -new file mode 100644 -index 0000000..8016118 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class -new file mode 100644 -index 0000000..6afc32d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class -new file mode 100644 -index 0000000..9a44805 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class -new file mode 100644 -index 0000000..71fd4d4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class -new file mode 100644 -index 0000000..d77720a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class -new file mode 100644 -index 0000000..2f0d8b0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class -new file mode 100644 -index 0000000..6f4bfd5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class -new file mode 100644 -index 0000000..3b6c8c9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class -new file mode 100644 -index 0000000..d581670 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class -new file mode 100644 -index 0000000..c3cd7e0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class -new file mode 100644 -index 0000000..d384993 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class -new file mode 100644 -index 0000000..3844cb3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class -new file mode 100644 -index 0000000..436b4f2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class -new file mode 100644 -index 0000000..9962166 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class -new file mode 100644 -index 0000000..87e61d7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class -new file mode 100644 -index 0000000..a05be2f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class -new file mode 100644 -index 0000000..d176d27 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class -new file mode 100644 -index 0000000..c7d5f6d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class -new file mode 100644 -index 0000000..250f05f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class -new file mode 100644 -index 0000000..e539c9a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class -new file mode 100644 -index 0000000..b6080a4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class -new file mode 100644 -index 0000000..eb78bde -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class -new file mode 100644 -index 0000000..68b6fc2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class -new file mode 100644 -index 0000000..dbb4f72 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class -new file mode 100644 -index 0000000..472c014 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class -new file mode 100644 -index 0000000..69c7541 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class -new file mode 100644 -index 0000000..1f94467 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class -new file mode 100644 -index 0000000..73eefbe -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class -new file mode 100644 -index 0000000..0217c35 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class -new file mode 100644 -index 0000000..64e7da5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class -new file mode 100644 -index 0000000..cdf21be -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class -new file mode 100644 -index 0000000..a71fd53 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class -new file mode 100644 -index 0000000..6275457 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class -new file mode 100644 -index 0000000..a9d9590 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class -new file mode 100644 -index 0000000..b01df95 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class -new file mode 100644 -index 0000000..a8cf5be -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class -new file mode 100644 -index 0000000..0576101 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class -new file mode 100644 -index 0000000..3e1200b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class -new file mode 100644 -index 0000000..ebf0dbb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class -new file mode 100644 -index 0000000..615b964 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class -new file mode 100644 -index 0000000..625b943 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class -new file mode 100644 -index 0000000..7562475 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class -new file mode 100644 -index 0000000..7e64b19 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class -new file mode 100644 -index 0000000..f3175e4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class -new file mode 100644 -index 0000000..82245b8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class -new file mode 100644 -index 0000000..678136b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class -new file mode 100644 -index 0000000..0d37f60 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class -new file mode 100644 -index 0000000..c117d62 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class -new file mode 100644 -index 0000000..b15ce38 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class -new file mode 100644 -index 0000000..1191446 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class -new file mode 100644 -index 0000000..f8f0f79 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class -new file mode 100644 -index 0000000..2c9b9ce -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class -new file mode 100644 -index 0000000..fb062ce -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class -new file mode 100644 -index 0000000..96fd17e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class -new file mode 100644 -index 0000000..63c1693 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class -new file mode 100644 -index 0000000..e406cd2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class -new file mode 100644 -index 0000000..da369e7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class -new file mode 100644 -index 0000000..e9e2321 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class -new file mode 100644 -index 0000000..abf652c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class -new file mode 100644 -index 0000000..3e4b6b1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class -new file mode 100644 -index 0000000..45b414c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class -new file mode 100644 -index 0000000..f150d5c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class -new file mode 100644 -index 0000000..e6f6579 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class -new file mode 100644 -index 0000000..1f56551 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class -new file mode 100644 -index 0000000..4dc8d3d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class -new file mode 100644 -index 0000000..8de4e41 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class -new file mode 100644 -index 0000000..3ce3729 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class -new file mode 100644 -index 0000000..322876f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class -new file mode 100644 -index 0000000..4c22015 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class -new file mode 100644 -index 0000000..ff90d7b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class -new file mode 100644 -index 0000000..7ab5d60 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class -new file mode 100644 -index 0000000..b3a81dc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class -new file mode 100644 -index 0000000..908464c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class -new file mode 100644 -index 0000000..1de3ca5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class -new file mode 100644 -index 0000000..9f1def1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class -new file mode 100644 -index 0000000..210fed9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class -new file mode 100644 -index 0000000..f12809f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class -new file mode 100644 -index 0000000..5b47c77 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class -new file mode 100644 -index 0000000..fe51af9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class -new file mode 100644 -index 0000000..e92f7c5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class -new file mode 100644 -index 0000000..668aa91 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class -new file mode 100644 -index 0000000..e13c7d4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class -new file mode 100644 -index 0000000..15b33ec -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class -new file mode 100644 -index 0000000..b3d4e19 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class -new file mode 100644 -index 0000000..657bdef -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class -new file mode 100644 -index 0000000..99f38f0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class -new file mode 100644 -index 0000000..b2e1a14 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class -new file mode 100644 -index 0000000..5b01d3b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class -new file mode 100644 -index 0000000..9824088 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class -new file mode 100644 -index 0000000..f357b9b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class -new file mode 100644 -index 0000000..c4c613f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class -new file mode 100644 -index 0000000..d0c198c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class -new file mode 100644 -index 0000000..8e2e020 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class -new file mode 100644 -index 0000000..e39c8f4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class -new file mode 100644 -index 0000000..7ad4879 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class -new file mode 100644 -index 0000000..488113d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class -new file mode 100644 -index 0000000..9a1afc5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class -new file mode 100644 -index 0000000..d47136f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class -new file mode 100644 -index 0000000..fa83b04 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class -new file mode 100644 -index 0000000..0f7fd4e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class -new file mode 100644 -index 0000000..f140ab5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class -new file mode 100644 -index 0000000..8153602 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class -new file mode 100644 -index 0000000..8266fac -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class -new file mode 100644 -index 0000000..a904064 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class -new file mode 100644 -index 0000000..bde85d1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class -new file mode 100644 -index 0000000..6f135ad -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class -new file mode 100644 -index 0000000..7df71f9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class -new file mode 100644 -index 0000000..4a9d8d7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class -new file mode 100644 -index 0000000..e064d9f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class -new file mode 100644 -index 0000000..f87be8f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class -new file mode 100644 -index 0000000..6f46b86 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class -new file mode 100644 -index 0000000..5391b6b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class -new file mode 100644 -index 0000000..09fe99b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class -new file mode 100644 -index 0000000..b5a82b7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class -new file mode 100644 -index 0000000..c5605ed -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class -new file mode 100644 -index 0000000..d23f9a4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class -new file mode 100644 -index 0000000..b42ebf6 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class -new file mode 100644 -index 0000000..a728fd3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class -new file mode 100644 -index 0000000..0429d1c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class -new file mode 100644 -index 0000000..7627d6a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class -new file mode 100644 -index 0000000..019ba05 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class -new file mode 100644 -index 0000000..93674e7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class -new file mode 100644 -index 0000000..205d4e3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class -new file mode 100644 -index 0000000..5f96909 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class -new file mode 100644 -index 0000000..f4ab75c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class -new file mode 100644 -index 0000000..db259d7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class -new file mode 100644 -index 0000000..3a7c36b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class -new file mode 100644 -index 0000000..1d93a54 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class -new file mode 100644 -index 0000000..9513260 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class -new file mode 100644 -index 0000000..baf5be7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class -new file mode 100644 -index 0000000..82024e8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class -new file mode 100644 -index 0000000..c89b33d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class -new file mode 100644 -index 0000000..8fa2771 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class -new file mode 100644 -index 0000000..bf875d9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class -new file mode 100644 -index 0000000..71a14dc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class -new file mode 100644 -index 0000000..c30fac7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class -new file mode 100644 -index 0000000..f4fdef8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class -new file mode 100644 -index 0000000..eee12e7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class -new file mode 100644 -index 0000000..9cbb843 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class -new file mode 100644 -index 0000000..cd0935e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class -new file mode 100644 -index 0000000..6d23ed9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class -new file mode 100644 -index 0000000..30f376b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class -new file mode 100644 -index 0000000..f6be87d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class -new file mode 100644 -index 0000000..652fa64 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class -new file mode 100644 -index 0000000..9cca8bb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class -new file mode 100644 -index 0000000..66304a3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class -new file mode 100644 -index 0000000..2ddb8e0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class -new file mode 100644 -index 0000000..c617327 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class -new file mode 100644 -index 0000000..c8cd9c3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class -new file mode 100644 -index 0000000..49a3294 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class -new file mode 100644 -index 0000000..bbb3403 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class -new file mode 100644 -index 0000000..42ab4a9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class -new file mode 100644 -index 0000000..9d2283b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class -new file mode 100644 -index 0000000..b15f81e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class -new file mode 100644 -index 0000000..56a746a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class -new file mode 100644 -index 0000000..3852b7f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class -new file mode 100644 -index 0000000..6c8fddc -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class -new file mode 100644 -index 0000000..4e708fe -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class -new file mode 100644 -index 0000000..46a2abd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class -new file mode 100644 -index 0000000..7b7281c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class -new file mode 100644 -index 0000000..1111ba1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class -new file mode 100644 -index 0000000..36f6b2d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class -new file mode 100644 -index 0000000..d2748bf -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class -new file mode 100644 -index 0000000..987f8f5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class -new file mode 100644 -index 0000000..323f83a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class -new file mode 100644 -index 0000000..ed5de63 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class -new file mode 100644 -index 0000000..edf1123 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class -new file mode 100644 -index 0000000..34dd6e9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class -new file mode 100644 -index 0000000..b5f8c56 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class -new file mode 100644 -index 0000000..8c6d69f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class -new file mode 100644 -index 0000000..53fccf7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class -new file mode 100644 -index 0000000..b655964 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class -new file mode 100644 -index 0000000..df219bb -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class -new file mode 100644 -index 0000000..a760f62 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class -new file mode 100644 -index 0000000..440d2f5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class -new file mode 100644 -index 0000000..fe31ff8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class -new file mode 100644 -index 0000000..5aa0a3c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class -new file mode 100644 -index 0000000..6bf61d4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class -new file mode 100644 -index 0000000..701f7a3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class -new file mode 100644 -index 0000000..e7b57ee -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class -new file mode 100644 -index 0000000..0685dad -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class -new file mode 100644 -index 0000000..c7f8291 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class -new file mode 100644 -index 0000000..cdd1032 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class -new file mode 100644 -index 0000000..6ce7949 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class -new file mode 100644 -index 0000000..097b021 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class -new file mode 100644 -index 0000000..96d908c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class -new file mode 100644 -index 0000000..0db9e09 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class -new file mode 100644 -index 0000000..261e6e2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class -new file mode 100644 -index 0000000..d020cfd -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class -new file mode 100644 -index 0000000..87a96ad -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class -new file mode 100644 -index 0000000..d0545e7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class -new file mode 100644 -index 0000000..aa868a5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class -new file mode 100644 -index 0000000..fc8da4b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class -new file mode 100644 -index 0000000..698f5a8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class -new file mode 100644 -index 0000000..356007e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class -new file mode 100644 -index 0000000..f4bab85 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class -new file mode 100644 -index 0000000..a1e48c9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class -new file mode 100644 -index 0000000..f8bffe7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class -new file mode 100644 -index 0000000..8ea8b59 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class -new file mode 100644 -index 0000000..c3a4b13 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class -new file mode 100644 -index 0000000..255842d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class -new file mode 100644 -index 0000000..fd29ac5 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class -new file mode 100644 -index 0000000..4687586 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class -new file mode 100644 -index 0000000..0fbe4ea -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class -new file mode 100644 -index 0000000..2d01010 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class -new file mode 100644 -index 0000000..725a082 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class -new file mode 100644 -index 0000000..9ab1100 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class -new file mode 100644 -index 0000000..fa7f692 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class -new file mode 100644 -index 0000000..f72d07c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class -new file mode 100644 -index 0000000..bc49711 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class -new file mode 100644 -index 0000000..1dcb077 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class -new file mode 100644 -index 0000000..fe8f3e1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class -new file mode 100644 -index 0000000..5030568 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class -new file mode 100644 -index 0000000..9d503c7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class -new file mode 100644 -index 0000000..78c7241 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class -new file mode 100644 -index 0000000..45a1900 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class -new file mode 100644 -index 0000000..b93881f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class -new file mode 100644 -index 0000000..9dc1bae -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class -new file mode 100644 -index 0000000..74b3a0e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class -new file mode 100644 -index 0000000..d27266b -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class -new file mode 100644 -index 0000000..b1b0c19 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class -new file mode 100644 -index 0000000..a24ea7a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class -new file mode 100644 -index 0000000..29d3955 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class -new file mode 100644 -index 0000000..f1ed445 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class -new file mode 100644 -index 0000000..52d71c4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class -new file mode 100644 -index 0000000..bdf1ef1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class -new file mode 100644 -index 0000000..2202124 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class -new file mode 100644 -index 0000000..19b219c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class -new file mode 100644 -index 0000000..31c2788 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class -new file mode 100644 -index 0000000..3aa9cd7 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class -new file mode 100644 -index 0000000..eddaa9c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class -new file mode 100644 -index 0000000..933e87a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class -new file mode 100644 -index 0000000..66a26d2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class -new file mode 100644 -index 0000000..6a3983f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class -new file mode 100644 -index 0000000..b5bc313 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class -new file mode 100644 -index 0000000..f1eca55 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class -new file mode 100644 -index 0000000..d5dd287 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class -new file mode 100644 -index 0000000..9a6a8d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class -new file mode 100644 -index 0000000..6e46fb8 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class -new file mode 100644 -index 0000000..099bbaa -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class -new file mode 100644 -index 0000000..c4da875 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class -new file mode 100644 -index 0000000..db9cac3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class -new file mode 100644 -index 0000000..f6ba141 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class -new file mode 100644 -index 0000000..b90cb15 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class -new file mode 100644 -index 0000000..9272141 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class -new file mode 100644 -index 0000000..ed18251 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class -new file mode 100644 -index 0000000..1a33e3c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class -new file mode 100644 -index 0000000..ec08578 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class -new file mode 100644 -index 0000000..f32e9d9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class -new file mode 100644 -index 0000000..617b70c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class -new file mode 100644 -index 0000000..871ff46 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class -new file mode 100644 -index 0000000..c0dd0c4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class -new file mode 100644 -index 0000000..791a8a4 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class -new file mode 100644 -index 0000000..c0f0646 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class -new file mode 100644 -index 0000000..81696a0 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class -new file mode 100644 -index 0000000..15c2c66 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class -new file mode 100644 -index 0000000..627da26 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class -new file mode 100644 -index 0000000..5169b3e -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class -new file mode 100644 -index 0000000..b5b915a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class -new file mode 100644 -index 0000000..21bfe99 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class -new file mode 100644 -index 0000000..cbee27f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class -new file mode 100644 -index 0000000..c89b92d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class -new file mode 100644 -index 0000000..324fbf9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class -new file mode 100644 -index 0000000..5c35f30 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class -new file mode 100644 -index 0000000..544eda2 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class -new file mode 100644 -index 0000000..a45c5db -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class -new file mode 100644 -index 0000000..a956493 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class -new file mode 100644 -index 0000000..6979817 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class -new file mode 100644 -index 0000000..0561426 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class -new file mode 100644 -index 0000000..c2e4fa1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class -new file mode 100644 -index 0000000..9a6a845 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class -new file mode 100644 -index 0000000..79987f9 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class -new file mode 100644 -index 0000000..d12654c -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class -new file mode 100644 -index 0000000..c08c4a1 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class -new file mode 100644 -index 0000000..85327d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class -new file mode 100644 -index 0000000..88bbd8d -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class -new file mode 100644 -index 0000000..4d244d3 -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class -new file mode 100644 -index 0000000..a10f52a -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class differ -diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class -new file mode 100644 -index 0000000..a33771f -Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class differ +@@ -113,6 +117,12 @@ android { + versionCode 1 + versionName "1.0" + buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() ++ ++ externalNativeBuild { ++ cmake { ++ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ } ++ } + } + + compileOptions { From 69d7408d15f21e8be1cced5fa81004902fa84cdd Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 18:03:43 +0200 Subject: [PATCH 19/50] chore: rename patches --- ...rkdown+0.1.288+001+android-enable-16kb-memory-page-size.patch} | 0 ...hlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch} | 0 ...x+maps+10.1.33+002+android-enable-16kb-memory-page-size.patch} | 0 ...expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch} | 0 ...es-core+2.3.12+002+android-enable-16kb-memory-page-size.patch} | 0 ...-context+5.4.0+001+android-enable-16kb-memory-page-size.patch} | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename patches/{@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch => @expensify+react-native-live-markdown+0.1.288+001+android-enable-16kb-memory-page-size.patch} (100%) rename patches/@react-native-firebase/crashlytics/{@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch => @react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch} (100%) rename patches/@rnmapbox/maps/{@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch => @rnmapbox+maps+10.1.33+002+android-enable-16kb-memory-page-size.patch} (100%) rename patches/{expo-av+15.1.5+003+android-jni-packaging-for-16kb-memory-page-size.patch => expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch} (100%) rename patches/{expo-modules-core+2.3.12+002+android-jni-packaging-for-16kb-memory-page-size.patch => expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch} (100%) rename patches/react-native-safe-area-context/{react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch => react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch} (100%) diff --git a/patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@expensify+react-native-live-markdown+0.1.288+001+android-enable-16kb-memory-page-size.patch similarity index 100% rename from patches/@expensify+react-native-live-markdown+0.1.288+001+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/@expensify+react-native-live-markdown+0.1.288+001+android-enable-16kb-memory-page-size.patch diff --git a/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch similarity index 100% rename from patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-enable-16kb-memory-page-size.patch similarity index 100% rename from patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-enable-16kb-memory-page-size.patch diff --git a/patches/expo-av+15.1.5+003+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch similarity index 100% rename from patches/expo-av+15.1.5+003+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch diff --git a/patches/expo-modules-core+2.3.12+002+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch similarity index 100% rename from patches/expo-modules-core+2.3.12+002+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch diff --git a/patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch similarity index 100% rename from patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch From 4a813f46c903ec33900c1a1edefa83686ae2b622 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 18:22:33 +0200 Subject: [PATCH 20/50] chore: react-native-pdf --- ...android-enable-16kb-memory-page-size.patch | 4433 +++++++++++++++++ 1 file changed, 4433 insertions(+) create mode 100644 patches/react-native-pdf+6.7.3+001+android-enable-16kb-memory-page-size.patch diff --git a/patches/react-native-pdf+6.7.3+001+android-enable-16kb-memory-page-size.patch b/patches/react-native-pdf+6.7.3+001+android-enable-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..9121660871617 --- /dev/null +++ b/patches/react-native-pdf+6.7.3+001+android-enable-16kb-memory-page-size.patch @@ -0,0 +1,4433 @@ +diff --git a/node_modules/react-native-pdf/android/build.gradle b/node_modules/react-native-pdf/android/build.gradle +index 2d76d8f..77e190a 100644 +--- a/node_modules/react-native-pdf/android/build.gradle ++++ b/node_modules/react-native-pdf/android/build.gradle +@@ -89,6 +89,12 @@ android { + minSdkVersion safeExtGet('minSdkVersion', 21) + targetSdkVersion safeExtGet('targetSdkVersion', 31) + buildConfigField("boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()) ++ ++ externalNativeBuild { ++ cmake { ++ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ } ++ } + } + + sourceSets.main { +@@ -106,6 +112,10 @@ android { + } + + packagingOptions { ++ jniLibs { ++ useLegacyPackaging true ++ } ++ + pickFirst 'lib/x86/libc++_shared.so' + pickFirst 'lib/x86_64/libjsc.so' + pickFirst 'lib/x86_64/libc++_shared.so' +@@ -124,5 +134,5 @@ dependencies { + // NOTE: The original repo at com.github.barteksc is abandoned by the maintainer; there will be no more updates coming from that repo. + // It was taken over by com.github.TalbotGooday; from now on please use this repo until (if ever) the Barteksc repo is resumed. + implementation 'com.github.TalbotGooday:AndroidPdfViewer:3.1.0-beta.3' +- implementation 'com.google.code.gson:gson:2.8.5' ++ implementation 'com.google.code.gson:gson:2.11.0' + } +diff --git a/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/results.bin b/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..c6d84e5 +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-pdf/android/build/generated/source/buildConfig/debug/org/wonday/pdf/BuildConfig.java b/node_modules/react-native-pdf/android/build/generated/source/buildConfig/debug/org/wonday/pdf/BuildConfig.java +new file mode 100644 +index 0000000..f9cb8cc +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/buildConfig/debug/org/wonday/pdf/BuildConfig.java +@@ -0,0 +1,12 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package org.wonday.pdf; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "org.wonday.pdf"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = true; ++} +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.java b/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.java +new file mode 100644 +index 0000000..e067c2f +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.java +@@ -0,0 +1,87 @@ ++/** ++* 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.ReadableArray; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class RNPDFPdfViewManagerDelegate & RNPDFPdfViewManagerInterface> extends BaseViewManagerDelegate { ++ public RNPDFPdfViewManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "path": ++ mViewManager.setPath(view, value == null ? null : (String) value); ++ break; ++ case "page": ++ mViewManager.setPage(view, value == null ? 0 : ((Double) value).intValue()); ++ break; ++ case "scale": ++ mViewManager.setScale(view, value == null ? 0f : ((Double) value).floatValue()); ++ break; ++ case "minScale": ++ mViewManager.setMinScale(view, value == null ? 0f : ((Double) value).floatValue()); ++ break; ++ case "maxScale": ++ mViewManager.setMaxScale(view, value == null ? 0f : ((Double) value).floatValue()); ++ break; ++ case "horizontal": ++ mViewManager.setHorizontal(view, value == null ? false : (boolean) value); ++ break; ++ case "enablePaging": ++ mViewManager.setEnablePaging(view, value == null ? false : (boolean) value); ++ break; ++ case "enableRTL": ++ mViewManager.setEnableRTL(view, value == null ? false : (boolean) value); ++ break; ++ case "enableAnnotationRendering": ++ mViewManager.setEnableAnnotationRendering(view, value == null ? false : (boolean) value); ++ break; ++ case "showsHorizontalScrollIndicator": ++ mViewManager.setShowsHorizontalScrollIndicator(view, value == null ? false : (boolean) value); ++ break; ++ case "showsVerticalScrollIndicator": ++ mViewManager.setShowsVerticalScrollIndicator(view, value == null ? false : (boolean) value); ++ break; ++ case "enableAntialiasing": ++ mViewManager.setEnableAntialiasing(view, value == null ? false : (boolean) value); ++ break; ++ case "fitPolicy": ++ mViewManager.setFitPolicy(view, value == null ? 0 : ((Double) value).intValue()); ++ break; ++ case "spacing": ++ mViewManager.setSpacing(view, value == null ? 0 : ((Double) value).intValue()); ++ break; ++ case "password": ++ mViewManager.setPassword(view, value == null ? null : (String) value); ++ break; ++ case "singlePage": ++ mViewManager.setSinglePage(view, value == null ? false : (boolean) value); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++ ++ @Override ++ public void receiveCommand(T view, String commandName, @Nullable ReadableArray args) { ++ switch (commandName) { ++ case "setNativePage": ++ mViewManager.setNativePage(view, args.getInt(0)); ++ break; ++ } ++ } ++} +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.java b/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.java +new file mode 100644 +index 0000000..e087cb3 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.java +@@ -0,0 +1,34 @@ ++/** ++* 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 RNPDFPdfViewManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setPath(T view, @Nullable String value); ++ void setPage(T view, int value); ++ void setScale(T view, float value); ++ void setMinScale(T view, float value); ++ void setMaxScale(T view, float value); ++ void setHorizontal(T view, boolean value); ++ void setEnablePaging(T view, boolean value); ++ void setEnableRTL(T view, boolean value); ++ void setEnableAnnotationRendering(T view, boolean value); ++ void setShowsHorizontalScrollIndicator(T view, boolean value); ++ void setShowsVerticalScrollIndicator(T view, boolean value); ++ void setEnableAntialiasing(T view, boolean value); ++ void setFitPolicy(T view, int value); ++ void setSpacing(T view, int value); ++ void setPassword(T view, @Nullable String value); ++ void setSinglePage(T view, boolean value); ++ void setNativePage(T view, int page); ++} +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/CMakeLists.txt +new file mode 100644 +index 0000000..dc19dc1 +--- /dev/null ++++ b/node_modules/react-native-pdf/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/rnpdf/*.cpp) ++ ++add_library( ++ react_codegen_rnpdf ++ OBJECT ++ ${react_codegen_SRCS} ++) ++ ++target_include_directories(react_codegen_rnpdf PUBLIC . react/renderer/components/rnpdf) ++ ++target_link_libraries( ++ react_codegen_rnpdf ++ 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_rnpdf ++ PRIVATE ++ -DLOG_TAG=\"ReactNative\" ++ -fexceptions ++ -frtti ++ -std=c++20 ++ -Wall ++) +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.cpp +new file mode 100644 +index 0000000..c81c5fc +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.cpp +@@ -0,0 +1,22 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateComponentDescriptorCpp.js ++ */ ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++void rnpdf_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry) { ++registry->add(concreteComponentDescriptorProvider()); ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.h +new file mode 100644 +index 0000000..1402029 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.h +@@ -0,0 +1,24 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateComponentDescriptorH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++using RNPDFPdfViewComponentDescriptor = ConcreteComponentDescriptor; ++ ++void rnpdf_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry); ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.cpp +new file mode 100644 +index 0000000..65aac50 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.cpp +@@ -0,0 +1,24 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateEventEmitterCpp.js ++ */ ++ ++#include ++ ++ ++namespace facebook::react { ++ ++void RNPDFPdfViewEventEmitter::onChange(OnChange $event) const { ++ dispatchEvent("change", [$event=std::move($event)](jsi::Runtime &runtime) { ++ auto $payload = jsi::Object(runtime); ++ $payload.setProperty(runtime, "message", $event.message); ++ return $payload; ++ }); ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.h +new file mode 100644 +index 0000000..ec3c6d7 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.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: GenerateEventEmitterH.js ++ */ ++#pragma once ++ ++#include ++ ++ ++namespace facebook::react { ++class RNPDFPdfViewEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnChange { ++ std::string message; ++ }; ++ void onChange(OnChange value) const; ++}; ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.cpp +new file mode 100644 +index 0000000..43fc343 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.cpp +@@ -0,0 +1,40 @@ ++ ++/** ++ * 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 { ++ ++RNPDFPdfViewProps::RNPDFPdfViewProps( ++ const PropsParserContext &context, ++ const RNPDFPdfViewProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ path(convertRawProp(context, rawProps, "path", sourceProps.path, {})), ++ page(convertRawProp(context, rawProps, "page", sourceProps.page, {0})), ++ scale(convertRawProp(context, rawProps, "scale", sourceProps.scale, {0.0})), ++ minScale(convertRawProp(context, rawProps, "minScale", sourceProps.minScale, {0.0})), ++ maxScale(convertRawProp(context, rawProps, "maxScale", sourceProps.maxScale, {0.0})), ++ horizontal(convertRawProp(context, rawProps, "horizontal", sourceProps.horizontal, {false})), ++ enablePaging(convertRawProp(context, rawProps, "enablePaging", sourceProps.enablePaging, {false})), ++ enableRTL(convertRawProp(context, rawProps, "enableRTL", sourceProps.enableRTL, {false})), ++ enableAnnotationRendering(convertRawProp(context, rawProps, "enableAnnotationRendering", sourceProps.enableAnnotationRendering, {false})), ++ showsHorizontalScrollIndicator(convertRawProp(context, rawProps, "showsHorizontalScrollIndicator", sourceProps.showsHorizontalScrollIndicator, {false})), ++ showsVerticalScrollIndicator(convertRawProp(context, rawProps, "showsVerticalScrollIndicator", sourceProps.showsVerticalScrollIndicator, {false})), ++ enableAntialiasing(convertRawProp(context, rawProps, "enableAntialiasing", sourceProps.enableAntialiasing, {false})), ++ fitPolicy(convertRawProp(context, rawProps, "fitPolicy", sourceProps.fitPolicy, {0})), ++ spacing(convertRawProp(context, rawProps, "spacing", sourceProps.spacing, {0})), ++ password(convertRawProp(context, rawProps, "password", sourceProps.password, {})), ++ singlePage(convertRawProp(context, rawProps, "singlePage", sourceProps.singlePage, {false})) ++ {} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.h +new file mode 100644 +index 0000000..077477a +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.h +@@ -0,0 +1,42 @@ ++ ++/** ++ * 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 ++ ++namespace facebook::react { ++ ++class RNPDFPdfViewProps final : public ViewProps { ++ public: ++ RNPDFPdfViewProps() = default; ++ RNPDFPdfViewProps(const PropsParserContext& context, const RNPDFPdfViewProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ std::string path{}; ++ int page{0}; ++ Float scale{0.0}; ++ Float minScale{0.0}; ++ Float maxScale{0.0}; ++ bool horizontal{false}; ++ bool enablePaging{false}; ++ bool enableRTL{false}; ++ bool enableAnnotationRendering{false}; ++ bool showsHorizontalScrollIndicator{false}; ++ bool showsVerticalScrollIndicator{false}; ++ bool enableAntialiasing{false}; ++ int fitPolicy{0}; ++ int spacing{0}; ++ std::string password{}; ++ bool singlePage{false}; ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.cpp +new file mode 100644 +index 0000000..a74c2eb +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.cpp +@@ -0,0 +1,17 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateShadowNodeCpp.js ++ */ ++ ++#include ++ ++namespace facebook::react { ++ ++extern const char RNPDFPdfViewComponentName[] = "RNPDFPdfView"; ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.h +new file mode 100644 +index 0000000..13bd342 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.h +@@ -0,0 +1,32 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateShadowNodeH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++JSI_EXPORT extern const char RNPDFPdfViewComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using RNPDFPdfViewShadowNode = ConcreteViewShadowNode< ++ RNPDFPdfViewComponentName, ++ RNPDFPdfViewProps, ++ RNPDFPdfViewEventEmitter, ++ RNPDFPdfViewState>; ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.cpp +new file mode 100644 +index 0000000..7fb743e +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/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-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.h +new file mode 100644 +index 0000000..591d315 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.h +@@ -0,0 +1,29 @@ ++/** ++ * 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 RNPDFPdfViewState { ++public: ++ RNPDFPdfViewState() = default; ++ ++#ifdef ANDROID ++ RNPDFPdfViewState(RNPDFPdfViewState 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-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI-generated.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI-generated.cpp +new file mode 100644 +index 0000000..306425f +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI-generated.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: GenerateModuleCpp.js ++ */ ++ ++#include "rnpdfJSI.h" ++ ++namespace facebook::react { ++ ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI.h +new file mode 100644 +index 0000000..ec16260 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI.h +@@ -0,0 +1,19 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf-generated.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf-generated.cpp +new file mode 100644 +index 0000000..7a1645e +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf-generated.cpp +@@ -0,0 +1,22 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJniCpp.js ++ */ ++ ++#include "rnpdf.h" ++ ++namespace facebook::react { ++ ++ ++ ++std::shared_ptr rnpdf_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { ++ ++ return nullptr; ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf.h +new file mode 100644 +index 0000000..bfe4487 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf.h +@@ -0,0 +1,24 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJniH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++JSI_EXPORT ++std::shared_ptr rnpdf_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); ++ ++} // namespace facebook::react +diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/schema.json b/node_modules/react-native-pdf/android/build/generated/source/codegen/schema.json +new file mode 100644 +index 0000000..1599500 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/schema.json +@@ -0,0 +1 @@ ++{"modules":{"RNPDFPdfView":{"type":"Component","components":{"RNPDFPdfView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onChange","optional":true,"bubblingType":"bubble","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"message","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"path","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"page","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}},{"name":"scale","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"minScale","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"maxScale","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"horizontal","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enablePaging","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enableRTL","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enableAnnotationRendering","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"showsHorizontalScrollIndicator","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"showsVerticalScrollIndicator","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enableAntialiasing","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"fitPolicy","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}},{"name":"spacing","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}},{"name":"password","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"singlePage","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}}],"commands":[{"name":"setNativePage","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","params":[{"name":"page","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}}],"returnTypeAnnotation":{"type":"VoidTypeAnnotation"}}}]}}}}} +\ No newline at end of file +diff --git a/node_modules/react-native-pdf/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-pdf/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..f25cf52 +--- /dev/null ++++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-pdf/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..ef0be3c +--- /dev/null ++++ b/node_modules/react-native-pdf/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": "org.wonday.pdf", ++ "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-pdf/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-pdf/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-pdf/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-pdf/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..b600dda +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-pdf/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..a2efae4 +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-pdf/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..978234b +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +@@ -0,0 +1,1999 @@ ++int anim abc_fade_in 0x0 ++int anim abc_fade_out 0x0 ++int anim abc_grow_fade_in_from_bottom 0x0 ++int anim abc_popup_enter 0x0 ++int anim abc_popup_exit 0x0 ++int anim abc_shrink_fade_out_from_bottom 0x0 ++int anim abc_slide_in_bottom 0x0 ++int anim abc_slide_in_top 0x0 ++int anim abc_slide_out_bottom 0x0 ++int anim abc_slide_out_top 0x0 ++int anim abc_tooltip_enter 0x0 ++int anim abc_tooltip_exit 0x0 ++int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 ++int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 ++int anim btn_checkbox_to_checked_icon_null_animation 0x0 ++int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 ++int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 ++int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 ++int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 ++int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 ++int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 ++int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 ++int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 ++int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 ++int anim catalyst_fade_in 0x0 ++int anim catalyst_fade_out 0x0 ++int anim catalyst_push_up_in 0x0 ++int anim catalyst_push_up_out 0x0 ++int anim catalyst_slide_down 0x0 ++int anim catalyst_slide_up 0x0 ++int anim fragment_fast_out_extra_slow_in 0x0 ++int animator fragment_close_enter 0x0 ++int animator fragment_close_exit 0x0 ++int animator fragment_fade_enter 0x0 ++int animator fragment_fade_exit 0x0 ++int animator fragment_open_enter 0x0 ++int animator fragment_open_exit 0x0 ++int attr actionBarDivider 0x0 ++int attr actionBarItemBackground 0x0 ++int attr actionBarPopupTheme 0x0 ++int attr actionBarSize 0x0 ++int attr actionBarSplitStyle 0x0 ++int attr actionBarStyle 0x0 ++int attr actionBarTabBarStyle 0x0 ++int attr actionBarTabStyle 0x0 ++int attr actionBarTabTextStyle 0x0 ++int attr actionBarTheme 0x0 ++int attr actionBarWidgetTheme 0x0 ++int attr actionButtonStyle 0x0 ++int attr actionDropDownStyle 0x0 ++int attr actionLayout 0x0 ++int attr actionMenuTextAppearance 0x0 ++int attr actionMenuTextColor 0x0 ++int attr actionModeBackground 0x0 ++int attr actionModeCloseButtonStyle 0x0 ++int attr actionModeCloseContentDescription 0x0 ++int attr actionModeCloseDrawable 0x0 ++int attr actionModeCopyDrawable 0x0 ++int attr actionModeCutDrawable 0x0 ++int attr actionModeFindDrawable 0x0 ++int attr actionModePasteDrawable 0x0 ++int attr actionModePopupWindowStyle 0x0 ++int attr actionModeSelectAllDrawable 0x0 ++int attr actionModeShareDrawable 0x0 ++int attr actionModeSplitBackground 0x0 ++int attr actionModeStyle 0x0 ++int attr actionModeTheme 0x0 ++int attr actionModeWebSearchDrawable 0x0 ++int attr actionOverflowButtonStyle 0x0 ++int attr actionOverflowMenuStyle 0x0 ++int attr actionProviderClass 0x0 ++int attr actionViewClass 0x0 ++int attr activityChooserViewStyle 0x0 ++int attr actualImageResource 0x0 ++int attr actualImageScaleType 0x0 ++int attr actualImageUri 0x0 ++int attr alertDialogButtonGroupStyle 0x0 ++int attr alertDialogCenterButtons 0x0 ++int attr alertDialogStyle 0x0 ++int attr alertDialogTheme 0x0 ++int attr allowStacking 0x0 ++int attr alpha 0x0 ++int attr alphabeticModifiers 0x0 ++int attr arrowHeadLength 0x0 ++int attr arrowShaftLength 0x0 ++int attr autoCompleteTextViewStyle 0x0 ++int attr autoSizeMaxTextSize 0x0 ++int attr autoSizeMinTextSize 0x0 ++int attr autoSizePresetSizes 0x0 ++int attr autoSizeStepGranularity 0x0 ++int attr autoSizeTextType 0x0 ++int attr autofillInlineSuggestionChip 0x0 ++int attr autofillInlineSuggestionEndIconStyle 0x0 ++int attr autofillInlineSuggestionStartIconStyle 0x0 ++int attr autofillInlineSuggestionSubtitle 0x0 ++int attr autofillInlineSuggestionTitle 0x0 ++int attr background 0x0 ++int attr backgroundImage 0x0 ++int attr backgroundSplit 0x0 ++int attr backgroundStacked 0x0 ++int attr backgroundTint 0x0 ++int attr backgroundTintMode 0x0 ++int attr barLength 0x0 ++int attr borderlessButtonStyle 0x0 ++int attr buttonBarButtonStyle 0x0 ++int attr buttonBarNegativeButtonStyle 0x0 ++int attr buttonBarNeutralButtonStyle 0x0 ++int attr buttonBarPositiveButtonStyle 0x0 ++int attr buttonBarStyle 0x0 ++int attr buttonCompat 0x0 ++int attr buttonGravity 0x0 ++int attr buttonIconDimen 0x0 ++int attr buttonPanelSideLayout 0x0 ++int attr buttonStyle 0x0 ++int attr buttonStyleSmall 0x0 ++int attr buttonTint 0x0 ++int attr buttonTintMode 0x0 ++int attr checkMarkCompat 0x0 ++int attr checkMarkTint 0x0 ++int attr checkMarkTintMode 0x0 ++int attr checkboxStyle 0x0 ++int attr checkedTextViewStyle 0x0 ++int attr closeIcon 0x0 ++int attr closeItemLayout 0x0 ++int attr collapseContentDescription 0x0 ++int attr collapseIcon 0x0 ++int attr color 0x0 ++int attr colorAccent 0x0 ++int attr colorBackgroundFloating 0x0 ++int attr colorButtonNormal 0x0 ++int attr colorControlActivated 0x0 ++int attr colorControlHighlight 0x0 ++int attr colorControlNormal 0x0 ++int attr colorError 0x0 ++int attr colorPrimary 0x0 ++int attr colorPrimaryDark 0x0 ++int attr colorSwitchThumbNormal 0x0 ++int attr commitIcon 0x0 ++int attr contentDescription 0x0 ++int attr contentInsetEnd 0x0 ++int attr contentInsetEndWithActions 0x0 ++int attr contentInsetLeft 0x0 ++int attr contentInsetRight 0x0 ++int attr contentInsetStart 0x0 ++int attr contentInsetStartWithNavigation 0x0 ++int attr controlBackground 0x0 ++int attr customNavigationLayout 0x0 ++int attr defaultQueryHint 0x0 ++int attr dialogCornerRadius 0x0 ++int attr dialogPreferredPadding 0x0 ++int attr dialogTheme 0x0 ++int attr displayOptions 0x0 ++int attr divider 0x0 ++int attr dividerHorizontal 0x0 ++int attr dividerPadding 0x0 ++int attr dividerVertical 0x0 ++int attr drawableBottomCompat 0x0 ++int attr drawableEndCompat 0x0 ++int attr drawableLeftCompat 0x0 ++int attr drawableRightCompat 0x0 ++int attr drawableSize 0x0 ++int attr drawableStartCompat 0x0 ++int attr drawableTint 0x0 ++int attr drawableTintMode 0x0 ++int attr drawableTopCompat 0x0 ++int attr drawerArrowStyle 0x0 ++int attr dropDownListViewStyle 0x0 ++int attr dropdownListPreferredItemHeight 0x0 ++int attr editTextBackground 0x0 ++int attr editTextColor 0x0 ++int attr editTextStyle 0x0 ++int attr elevation 0x0 ++int attr emojiCompatEnabled 0x0 ++int attr expandActivityOverflowButtonDrawable 0x0 ++int attr fadeDuration 0x0 ++int attr failureImage 0x0 ++int attr failureImageScaleType 0x0 ++int attr firstBaselineToTopHeight 0x0 ++int attr font 0x0 ++int attr fontFamily 0x0 ++int attr fontProviderAuthority 0x0 ++int attr fontProviderCerts 0x0 ++int attr fontProviderFetchStrategy 0x0 ++int attr fontProviderFetchTimeout 0x0 ++int attr fontProviderPackage 0x0 ++int attr fontProviderQuery 0x0 ++int attr fontProviderSystemFontFamily 0x0 ++int attr fontStyle 0x0 ++int attr fontVariationSettings 0x0 ++int attr fontWeight 0x0 ++int attr gapBetweenBars 0x0 ++int attr goIcon 0x0 ++int attr height 0x0 ++int attr hideOnContentScroll 0x0 ++int attr homeAsUpIndicator 0x0 ++int attr homeLayout 0x0 ++int attr icon 0x0 ++int attr iconTint 0x0 ++int attr iconTintMode 0x0 ++int attr iconifiedByDefault 0x0 ++int attr imageButtonStyle 0x0 ++int attr indeterminateProgressStyle 0x0 ++int attr initialActivityCount 0x0 ++int attr isAutofillInlineSuggestionTheme 0x0 ++int attr isLightTheme 0x0 ++int attr itemPadding 0x0 ++int attr lStar 0x0 ++int attr lastBaselineToBottomHeight 0x0 ++int attr layout 0x0 ++int attr lineHeight 0x0 ++int attr listChoiceBackgroundIndicator 0x0 ++int attr listChoiceIndicatorMultipleAnimated 0x0 ++int attr listChoiceIndicatorSingleAnimated 0x0 ++int attr listDividerAlertDialog 0x0 ++int attr listItemLayout 0x0 ++int attr listLayout 0x0 ++int attr listMenuViewStyle 0x0 ++int attr listPopupWindowStyle 0x0 ++int attr listPreferredItemHeight 0x0 ++int attr listPreferredItemHeightLarge 0x0 ++int attr listPreferredItemHeightSmall 0x0 ++int attr listPreferredItemPaddingEnd 0x0 ++int attr listPreferredItemPaddingLeft 0x0 ++int attr listPreferredItemPaddingRight 0x0 ++int attr listPreferredItemPaddingStart 0x0 ++int attr logo 0x0 ++int attr logoDescription 0x0 ++int attr maxButtonHeight 0x0 ++int attr measureWithLargestChild 0x0 ++int attr menu 0x0 ++int attr multiChoiceItemLayout 0x0 ++int attr navigationContentDescription 0x0 ++int attr navigationIcon 0x0 ++int attr navigationMode 0x0 ++int attr nestedScrollViewStyle 0x0 ++int attr numericModifiers 0x0 ++int attr overlapAnchor 0x0 ++int attr overlayImage 0x0 ++int attr paddingBottomNoButtons 0x0 ++int attr paddingEnd 0x0 ++int attr paddingStart 0x0 ++int attr paddingTopNoTitle 0x0 ++int attr panelBackground 0x0 ++int attr panelMenuListTheme 0x0 ++int attr panelMenuListWidth 0x0 ++int attr placeholderImage 0x0 ++int attr placeholderImageScaleType 0x0 ++int attr popupMenuStyle 0x0 ++int attr popupTheme 0x0 ++int attr popupWindowStyle 0x0 ++int attr preserveIconSpacing 0x0 ++int attr pressedStateOverlayImage 0x0 ++int attr progressBarAutoRotateInterval 0x0 ++int attr progressBarImage 0x0 ++int attr progressBarImageScaleType 0x0 ++int attr progressBarPadding 0x0 ++int attr progressBarStyle 0x0 ++int attr queryBackground 0x0 ++int attr queryHint 0x0 ++int attr queryPatterns 0x0 ++int attr radioButtonStyle 0x0 ++int attr ratingBarStyle 0x0 ++int attr ratingBarStyleIndicator 0x0 ++int attr ratingBarStyleSmall 0x0 ++int attr retryImage 0x0 ++int attr retryImageScaleType 0x0 ++int attr roundAsCircle 0x0 ++int attr roundBottomEnd 0x0 ++int attr roundBottomLeft 0x0 ++int attr roundBottomRight 0x0 ++int attr roundBottomStart 0x0 ++int attr roundTopEnd 0x0 ++int attr roundTopLeft 0x0 ++int attr roundTopRight 0x0 ++int attr roundTopStart 0x0 ++int attr roundWithOverlayColor 0x0 ++int attr roundedCornerRadius 0x0 ++int attr roundingBorderColor 0x0 ++int attr roundingBorderPadding 0x0 ++int attr roundingBorderWidth 0x0 ++int attr sb_handlerColor 0x0 ++int attr sb_horizontal 0x0 ++int attr sb_indicatorColor 0x0 ++int attr sb_indicatorTextColor 0x0 ++int attr searchHintIcon 0x0 ++int attr searchIcon 0x0 ++int attr searchViewStyle 0x0 ++int attr seekBarStyle 0x0 ++int attr selectableItemBackground 0x0 ++int attr selectableItemBackgroundBorderless 0x0 ++int attr shortcutMatchRequired 0x0 ++int attr showAsAction 0x0 ++int attr showDividers 0x0 ++int attr showText 0x0 ++int attr showTitle 0x0 ++int attr singleChoiceItemLayout 0x0 ++int attr spinBars 0x0 ++int attr spinnerDropDownItemStyle 0x0 ++int attr spinnerStyle 0x0 ++int attr splitTrack 0x0 ++int attr srcCompat 0x0 ++int attr state_above_anchor 0x0 ++int attr subMenuArrow 0x0 ++int attr submitBackground 0x0 ++int attr subtitle 0x0 ++int attr subtitleTextAppearance 0x0 ++int attr subtitleTextColor 0x0 ++int attr subtitleTextStyle 0x0 ++int attr suggestionRowLayout 0x0 ++int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 ++int attr switchMinWidth 0x0 ++int attr switchPadding 0x0 ++int attr switchStyle 0x0 ++int attr switchTextAppearance 0x0 ++int attr textAllCaps 0x0 ++int attr textAppearanceLargePopupMenu 0x0 ++int attr textAppearanceListItem 0x0 ++int attr textAppearanceListItemSecondary 0x0 ++int attr textAppearanceListItemSmall 0x0 ++int attr textAppearancePopupMenuHeader 0x0 ++int attr textAppearanceSearchResultSubtitle 0x0 ++int attr textAppearanceSearchResultTitle 0x0 ++int attr textAppearanceSmallPopupMenu 0x0 ++int attr textColorAlertDialogListItem 0x0 ++int attr textColorSearchUrl 0x0 ++int attr textLocale 0x0 ++int attr theme 0x0 ++int attr thickness 0x0 ++int attr thumbTextPadding 0x0 ++int attr thumbTint 0x0 ++int attr thumbTintMode 0x0 ++int attr tickMark 0x0 ++int attr tickMarkTint 0x0 ++int attr tickMarkTintMode 0x0 ++int attr tint 0x0 ++int attr tintMode 0x0 ++int attr title 0x0 ++int attr titleMargin 0x0 ++int attr titleMarginBottom 0x0 ++int attr titleMarginEnd 0x0 ++int attr titleMarginStart 0x0 ++int attr titleMarginTop 0x0 ++int attr titleMargins 0x0 ++int attr titleTextAppearance 0x0 ++int attr titleTextColor 0x0 ++int attr titleTextStyle 0x0 ++int attr toolbarNavigationButtonStyle 0x0 ++int attr toolbarStyle 0x0 ++int attr tooltipForegroundColor 0x0 ++int attr tooltipFrameBackground 0x0 ++int attr tooltipText 0x0 ++int attr track 0x0 ++int attr trackTint 0x0 ++int attr trackTintMode 0x0 ++int attr ttcIndex 0x0 ++int attr viewAspectRatio 0x0 ++int attr viewInflaterClass 0x0 ++int attr voiceIcon 0x0 ++int attr windowActionBar 0x0 ++int attr windowActionBarOverlay 0x0 ++int attr windowActionModeOverlay 0x0 ++int attr windowFixedHeightMajor 0x0 ++int attr windowFixedHeightMinor 0x0 ++int attr windowFixedWidthMajor 0x0 ++int attr windowFixedWidthMinor 0x0 ++int attr windowMinWidthMajor 0x0 ++int attr windowMinWidthMinor 0x0 ++int attr windowNoTitle 0x0 ++int bool abc_action_bar_embed_tabs 0x0 ++int bool abc_config_actionMenuItemAllCaps 0x0 ++int color abc_background_cache_hint_selector_material_dark 0x0 ++int color abc_background_cache_hint_selector_material_light 0x0 ++int color abc_btn_colored_borderless_text_material 0x0 ++int color abc_btn_colored_text_material 0x0 ++int color abc_color_highlight_material 0x0 ++int color abc_decor_view_status_guard 0x0 ++int color abc_decor_view_status_guard_light 0x0 ++int color abc_hint_foreground_material_dark 0x0 ++int color abc_hint_foreground_material_light 0x0 ++int color abc_primary_text_disable_only_material_dark 0x0 ++int color abc_primary_text_disable_only_material_light 0x0 ++int color abc_primary_text_material_dark 0x0 ++int color abc_primary_text_material_light 0x0 ++int color abc_search_url_text 0x0 ++int color abc_search_url_text_normal 0x0 ++int color abc_search_url_text_pressed 0x0 ++int color abc_search_url_text_selected 0x0 ++int color abc_secondary_text_material_dark 0x0 ++int color abc_secondary_text_material_light 0x0 ++int color abc_tint_btn_checkable 0x0 ++int color abc_tint_default 0x0 ++int color abc_tint_edittext 0x0 ++int color abc_tint_seek_thumb 0x0 ++int color abc_tint_spinner 0x0 ++int color abc_tint_switch_track 0x0 ++int color accent_material_dark 0x0 ++int color accent_material_light 0x0 ++int color androidx_core_ripple_material_light 0x0 ++int color androidx_core_secondary_text_default_material_light 0x0 ++int color background_floating_material_dark 0x0 ++int color background_floating_material_light 0x0 ++int color background_material_dark 0x0 ++int color background_material_light 0x0 ++int color bright_foreground_disabled_material_dark 0x0 ++int color bright_foreground_disabled_material_light 0x0 ++int color bright_foreground_inverse_material_dark 0x0 ++int color bright_foreground_inverse_material_light 0x0 ++int color bright_foreground_material_dark 0x0 ++int color bright_foreground_material_light 0x0 ++int color button_material_dark 0x0 ++int color button_material_light 0x0 ++int color call_notification_answer_color 0x0 ++int color call_notification_decline_color 0x0 ++int color catalyst_logbox_background 0x0 ++int color catalyst_redbox_background 0x0 ++int color dim_foreground_disabled_material_dark 0x0 ++int color dim_foreground_disabled_material_light 0x0 ++int color dim_foreground_material_dark 0x0 ++int color dim_foreground_material_light 0x0 ++int color error_color_material_dark 0x0 ++int color error_color_material_light 0x0 ++int color foreground_material_dark 0x0 ++int color foreground_material_light 0x0 ++int color highlighted_text_material_dark 0x0 ++int color highlighted_text_material_light 0x0 ++int color material_blue_grey_800 0x0 ++int color material_blue_grey_900 0x0 ++int color material_blue_grey_950 0x0 ++int color material_deep_teal_200 0x0 ++int color material_deep_teal_500 0x0 ++int color material_grey_100 0x0 ++int color material_grey_300 0x0 ++int color material_grey_50 0x0 ++int color material_grey_600 0x0 ++int color material_grey_800 0x0 ++int color material_grey_850 0x0 ++int color material_grey_900 0x0 ++int color notification_action_color_filter 0x0 ++int color notification_icon_bg_color 0x0 ++int color primary_dark_material_dark 0x0 ++int color primary_dark_material_light 0x0 ++int color primary_material_dark 0x0 ++int color primary_material_light 0x0 ++int color primary_text_default_material_dark 0x0 ++int color primary_text_default_material_light 0x0 ++int color primary_text_disabled_material_dark 0x0 ++int color primary_text_disabled_material_light 0x0 ++int color ripple_material_dark 0x0 ++int color ripple_material_light 0x0 ++int color secondary_text_default_material_dark 0x0 ++int color secondary_text_default_material_light 0x0 ++int color secondary_text_disabled_material_dark 0x0 ++int color secondary_text_disabled_material_light 0x0 ++int color switch_thumb_disabled_material_dark 0x0 ++int color switch_thumb_disabled_material_light 0x0 ++int color switch_thumb_material_dark 0x0 ++int color switch_thumb_material_light 0x0 ++int color switch_thumb_normal_material_dark 0x0 ++int color switch_thumb_normal_material_light 0x0 ++int color tooltip_background_dark 0x0 ++int color tooltip_background_light 0x0 ++int dimen abc_action_bar_content_inset_material 0x0 ++int dimen abc_action_bar_content_inset_with_nav 0x0 ++int dimen abc_action_bar_default_height_material 0x0 ++int dimen abc_action_bar_default_padding_end_material 0x0 ++int dimen abc_action_bar_default_padding_start_material 0x0 ++int dimen abc_action_bar_elevation_material 0x0 ++int dimen abc_action_bar_icon_vertical_padding_material 0x0 ++int dimen abc_action_bar_overflow_padding_end_material 0x0 ++int dimen abc_action_bar_overflow_padding_start_material 0x0 ++int dimen abc_action_bar_stacked_max_height 0x0 ++int dimen abc_action_bar_stacked_tab_max_width 0x0 ++int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 ++int dimen abc_action_bar_subtitle_top_margin_material 0x0 ++int dimen abc_action_button_min_height_material 0x0 ++int dimen abc_action_button_min_width_material 0x0 ++int dimen abc_action_button_min_width_overflow_material 0x0 ++int dimen abc_alert_dialog_button_bar_height 0x0 ++int dimen abc_alert_dialog_button_dimen 0x0 ++int dimen abc_button_inset_horizontal_material 0x0 ++int dimen abc_button_inset_vertical_material 0x0 ++int dimen abc_button_padding_horizontal_material 0x0 ++int dimen abc_button_padding_vertical_material 0x0 ++int dimen abc_cascading_menus_min_smallest_width 0x0 ++int dimen abc_config_prefDialogWidth 0x0 ++int dimen abc_control_corner_material 0x0 ++int dimen abc_control_inset_material 0x0 ++int dimen abc_control_padding_material 0x0 ++int dimen abc_dialog_corner_radius_material 0x0 ++int dimen abc_dialog_fixed_height_major 0x0 ++int dimen abc_dialog_fixed_height_minor 0x0 ++int dimen abc_dialog_fixed_width_major 0x0 ++int dimen abc_dialog_fixed_width_minor 0x0 ++int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 ++int dimen abc_dialog_list_padding_top_no_title 0x0 ++int dimen abc_dialog_min_width_major 0x0 ++int dimen abc_dialog_min_width_minor 0x0 ++int dimen abc_dialog_padding_material 0x0 ++int dimen abc_dialog_padding_top_material 0x0 ++int dimen abc_dialog_title_divider_material 0x0 ++int dimen abc_disabled_alpha_material_dark 0x0 ++int dimen abc_disabled_alpha_material_light 0x0 ++int dimen abc_dropdownitem_icon_width 0x0 ++int dimen abc_dropdownitem_text_padding_left 0x0 ++int dimen abc_dropdownitem_text_padding_right 0x0 ++int dimen abc_edit_text_inset_bottom_material 0x0 ++int dimen abc_edit_text_inset_horizontal_material 0x0 ++int dimen abc_edit_text_inset_top_material 0x0 ++int dimen abc_floating_window_z 0x0 ++int dimen abc_list_item_height_large_material 0x0 ++int dimen abc_list_item_height_material 0x0 ++int dimen abc_list_item_height_small_material 0x0 ++int dimen abc_list_item_padding_horizontal_material 0x0 ++int dimen abc_panel_menu_list_width 0x0 ++int dimen abc_progress_bar_height_material 0x0 ++int dimen abc_search_view_preferred_height 0x0 ++int dimen abc_search_view_preferred_width 0x0 ++int dimen abc_seekbar_track_background_height_material 0x0 ++int dimen abc_seekbar_track_progress_height_material 0x0 ++int dimen abc_select_dialog_padding_start_material 0x0 ++int dimen abc_star_big 0x0 ++int dimen abc_star_medium 0x0 ++int dimen abc_star_small 0x0 ++int dimen abc_switch_padding 0x0 ++int dimen abc_text_size_body_1_material 0x0 ++int dimen abc_text_size_body_2_material 0x0 ++int dimen abc_text_size_button_material 0x0 ++int dimen abc_text_size_caption_material 0x0 ++int dimen abc_text_size_display_1_material 0x0 ++int dimen abc_text_size_display_2_material 0x0 ++int dimen abc_text_size_display_3_material 0x0 ++int dimen abc_text_size_display_4_material 0x0 ++int dimen abc_text_size_headline_material 0x0 ++int dimen abc_text_size_large_material 0x0 ++int dimen abc_text_size_medium_material 0x0 ++int dimen abc_text_size_menu_header_material 0x0 ++int dimen abc_text_size_menu_material 0x0 ++int dimen abc_text_size_small_material 0x0 ++int dimen abc_text_size_subhead_material 0x0 ++int dimen abc_text_size_subtitle_material_toolbar 0x0 ++int dimen abc_text_size_title_material 0x0 ++int dimen abc_text_size_title_material_toolbar 0x0 ++int dimen autofill_inline_suggestion_icon_size 0x0 ++int dimen compat_button_inset_horizontal_material 0x0 ++int dimen compat_button_inset_vertical_material 0x0 ++int dimen compat_button_padding_horizontal_material 0x0 ++int dimen compat_button_padding_vertical_material 0x0 ++int dimen compat_control_corner_material 0x0 ++int dimen compat_notification_large_icon_max_height 0x0 ++int dimen compat_notification_large_icon_max_width 0x0 ++int dimen disabled_alpha_material_dark 0x0 ++int dimen disabled_alpha_material_light 0x0 ++int dimen highlight_alpha_material_colored 0x0 ++int dimen highlight_alpha_material_dark 0x0 ++int dimen highlight_alpha_material_light 0x0 ++int dimen hint_alpha_material_dark 0x0 ++int dimen hint_alpha_material_light 0x0 ++int dimen hint_pressed_alpha_material_dark 0x0 ++int dimen hint_pressed_alpha_material_light 0x0 ++int dimen notification_action_icon_size 0x0 ++int dimen notification_action_text_size 0x0 ++int dimen notification_big_circle_margin 0x0 ++int dimen notification_content_margin_start 0x0 ++int dimen notification_large_icon_height 0x0 ++int dimen notification_large_icon_width 0x0 ++int dimen notification_main_column_padding_top 0x0 ++int dimen notification_media_narrow_margin 0x0 ++int dimen notification_right_icon_size 0x0 ++int dimen notification_right_side_padding_top 0x0 ++int dimen notification_small_icon_background_padding 0x0 ++int dimen notification_small_icon_size_as_large 0x0 ++int dimen notification_subtext_size 0x0 ++int dimen notification_top_pad 0x0 ++int dimen notification_top_pad_large_text 0x0 ++int dimen tooltip_corner_radius 0x0 ++int dimen tooltip_horizontal_padding 0x0 ++int dimen tooltip_margin 0x0 ++int dimen tooltip_precise_anchor_extra_offset 0x0 ++int dimen tooltip_precise_anchor_threshold 0x0 ++int dimen tooltip_vertical_padding 0x0 ++int dimen tooltip_y_offset_non_touch 0x0 ++int dimen tooltip_y_offset_touch 0x0 ++int drawable abc_ab_share_pack_mtrl_alpha 0x0 ++int drawable abc_action_bar_item_background_material 0x0 ++int drawable abc_btn_borderless_material 0x0 ++int drawable abc_btn_check_material 0x0 ++int drawable abc_btn_check_material_anim 0x0 ++int drawable abc_btn_check_to_on_mtrl_000 0x0 ++int drawable abc_btn_check_to_on_mtrl_015 0x0 ++int drawable abc_btn_colored_material 0x0 ++int drawable abc_btn_default_mtrl_shape 0x0 ++int drawable abc_btn_radio_material 0x0 ++int drawable abc_btn_radio_material_anim 0x0 ++int drawable abc_btn_radio_to_on_mtrl_000 0x0 ++int drawable abc_btn_radio_to_on_mtrl_015 0x0 ++int drawable abc_btn_switch_to_on_mtrl_00001 0x0 ++int drawable abc_btn_switch_to_on_mtrl_00012 0x0 ++int drawable abc_cab_background_internal_bg 0x0 ++int drawable abc_cab_background_top_material 0x0 ++int drawable abc_cab_background_top_mtrl_alpha 0x0 ++int drawable abc_control_background_material 0x0 ++int drawable abc_dialog_material_background 0x0 ++int drawable abc_edit_text_material 0x0 ++int drawable abc_ic_ab_back_material 0x0 ++int drawable abc_ic_arrow_drop_right_black_24dp 0x0 ++int drawable abc_ic_clear_material 0x0 ++int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 ++int drawable abc_ic_go_search_api_material 0x0 ++int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 ++int drawable abc_ic_menu_cut_mtrl_alpha 0x0 ++int drawable abc_ic_menu_overflow_material 0x0 ++int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 ++int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 ++int drawable abc_ic_menu_share_mtrl_alpha 0x0 ++int drawable abc_ic_search_api_material 0x0 ++int drawable abc_ic_voice_search_api_material 0x0 ++int drawable abc_item_background_holo_dark 0x0 ++int drawable abc_item_background_holo_light 0x0 ++int drawable abc_list_divider_material 0x0 ++int drawable abc_list_divider_mtrl_alpha 0x0 ++int drawable abc_list_focused_holo 0x0 ++int drawable abc_list_longpressed_holo 0x0 ++int drawable abc_list_pressed_holo_dark 0x0 ++int drawable abc_list_pressed_holo_light 0x0 ++int drawable abc_list_selector_background_transition_holo_dark 0x0 ++int drawable abc_list_selector_background_transition_holo_light 0x0 ++int drawable abc_list_selector_disabled_holo_dark 0x0 ++int drawable abc_list_selector_disabled_holo_light 0x0 ++int drawable abc_list_selector_holo_dark 0x0 ++int drawable abc_list_selector_holo_light 0x0 ++int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 ++int drawable abc_popup_background_mtrl_mult 0x0 ++int drawable abc_ratingbar_indicator_material 0x0 ++int drawable abc_ratingbar_material 0x0 ++int drawable abc_ratingbar_small_material 0x0 ++int drawable abc_scrubber_control_off_mtrl_alpha 0x0 ++int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 ++int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 ++int drawable abc_scrubber_primary_mtrl_alpha 0x0 ++int drawable abc_scrubber_track_mtrl_alpha 0x0 ++int drawable abc_seekbar_thumb_material 0x0 ++int drawable abc_seekbar_tick_mark_material 0x0 ++int drawable abc_seekbar_track_material 0x0 ++int drawable abc_spinner_mtrl_am_alpha 0x0 ++int drawable abc_spinner_textfield_background_material 0x0 ++int drawable abc_star_black_48dp 0x0 ++int drawable abc_star_half_black_48dp 0x0 ++int drawable abc_switch_thumb_material 0x0 ++int drawable abc_switch_track_mtrl_alpha 0x0 ++int drawable abc_tab_indicator_material 0x0 ++int drawable abc_tab_indicator_mtrl_alpha 0x0 ++int drawable abc_text_cursor_material 0x0 ++int drawable abc_text_select_handle_left_mtrl 0x0 ++int drawable abc_text_select_handle_middle_mtrl 0x0 ++int drawable abc_text_select_handle_right_mtrl 0x0 ++int drawable abc_textfield_activated_mtrl_alpha 0x0 ++int drawable abc_textfield_default_mtrl_alpha 0x0 ++int drawable abc_textfield_search_activated_mtrl_alpha 0x0 ++int drawable abc_textfield_search_default_mtrl_alpha 0x0 ++int drawable abc_textfield_search_material 0x0 ++int drawable abc_vector_test 0x0 ++int drawable autofill_inline_suggestion_chip_background 0x0 ++int drawable btn_checkbox_checked_mtrl 0x0 ++int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 ++int drawable btn_checkbox_unchecked_mtrl 0x0 ++int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 ++int drawable btn_radio_off_mtrl 0x0 ++int drawable btn_radio_off_to_on_mtrl_animation 0x0 ++int drawable btn_radio_on_mtrl 0x0 ++int drawable btn_radio_on_to_off_mtrl_animation 0x0 ++int drawable default_scroll_handle_bottom 0x0 ++int drawable default_scroll_handle_left 0x0 ++int drawable default_scroll_handle_right 0x0 ++int drawable default_scroll_handle_top 0x0 ++int drawable ic_call_answer 0x0 ++int drawable ic_call_answer_low 0x0 ++int drawable ic_call_answer_video 0x0 ++int drawable ic_call_answer_video_low 0x0 ++int drawable ic_call_decline 0x0 ++int drawable ic_call_decline_low 0x0 ++int drawable ic_resume 0x0 ++int drawable notification_action_background 0x0 ++int drawable notification_bg 0x0 ++int drawable notification_bg_low 0x0 ++int drawable notification_bg_low_normal 0x0 ++int drawable notification_bg_low_pressed 0x0 ++int drawable notification_bg_normal 0x0 ++int drawable notification_bg_normal_pressed 0x0 ++int drawable notification_icon_background 0x0 ++int drawable notification_oversize_large_icon_bg 0x0 ++int drawable notification_template_icon_bg 0x0 ++int drawable notification_template_icon_low_bg 0x0 ++int drawable notification_tile_bg 0x0 ++int drawable notify_panel_notification_icon_bg 0x0 ++int drawable paused_in_debugger_background 0x0 ++int drawable paused_in_debugger_dialog_background 0x0 ++int drawable redbox_top_border_background 0x0 ++int drawable ripple_effect 0x0 ++int drawable test_level_drawable 0x0 ++int drawable tooltip_frame_dark 0x0 ++int drawable tooltip_frame_light 0x0 ++int id accessibility_action_clickable_span 0x0 ++int id accessibility_actions 0x0 ++int id accessibility_collection 0x0 ++int id accessibility_collection_item 0x0 ++int id accessibility_custom_action_0 0x0 ++int id accessibility_custom_action_1 0x0 ++int id accessibility_custom_action_10 0x0 ++int id accessibility_custom_action_11 0x0 ++int id accessibility_custom_action_12 0x0 ++int id accessibility_custom_action_13 0x0 ++int id accessibility_custom_action_14 0x0 ++int id accessibility_custom_action_15 0x0 ++int id accessibility_custom_action_16 0x0 ++int id accessibility_custom_action_17 0x0 ++int id accessibility_custom_action_18 0x0 ++int id accessibility_custom_action_19 0x0 ++int id accessibility_custom_action_2 0x0 ++int id accessibility_custom_action_20 0x0 ++int id accessibility_custom_action_21 0x0 ++int id accessibility_custom_action_22 0x0 ++int id accessibility_custom_action_23 0x0 ++int id accessibility_custom_action_24 0x0 ++int id accessibility_custom_action_25 0x0 ++int id accessibility_custom_action_26 0x0 ++int id accessibility_custom_action_27 0x0 ++int id accessibility_custom_action_28 0x0 ++int id accessibility_custom_action_29 0x0 ++int id accessibility_custom_action_3 0x0 ++int id accessibility_custom_action_30 0x0 ++int id accessibility_custom_action_31 0x0 ++int id accessibility_custom_action_4 0x0 ++int id accessibility_custom_action_5 0x0 ++int id accessibility_custom_action_6 0x0 ++int id accessibility_custom_action_7 0x0 ++int id accessibility_custom_action_8 0x0 ++int id accessibility_custom_action_9 0x0 ++int id accessibility_hint 0x0 ++int id accessibility_label 0x0 ++int id accessibility_links 0x0 ++int id accessibility_role 0x0 ++int id accessibility_state 0x0 ++int id accessibility_state_expanded 0x0 ++int id accessibility_value 0x0 ++int id action_bar 0x0 ++int id action_bar_activity_content 0x0 ++int id action_bar_container 0x0 ++int id action_bar_root 0x0 ++int id action_bar_spinner 0x0 ++int id action_bar_subtitle 0x0 ++int id action_bar_title 0x0 ++int id action_container 0x0 ++int id action_context_bar 0x0 ++int id action_divider 0x0 ++int id action_image 0x0 ++int id action_menu_divider 0x0 ++int id action_menu_presenter 0x0 ++int id action_mode_bar 0x0 ++int id action_mode_bar_stub 0x0 ++int id action_mode_close_button 0x0 ++int id action_text 0x0 ++int id actions 0x0 ++int id activity_chooser_view_content 0x0 ++int id add 0x0 ++int id alertTitle 0x0 ++int id alert_title 0x0 ++int id async 0x0 ++int id autofill_inline_suggestion_end_icon 0x0 ++int id autofill_inline_suggestion_start_icon 0x0 ++int id autofill_inline_suggestion_subtitle 0x0 ++int id autofill_inline_suggestion_title 0x0 ++int id blocking 0x0 ++int id button 0x0 ++int id buttonPanel 0x0 ++int id button_text 0x0 ++int id catalyst_redbox_title 0x0 ++int id center 0x0 ++int id centerCrop 0x0 ++int id centerInside 0x0 ++int id checkbox 0x0 ++int id checked 0x0 ++int id chronometer 0x0 ++int id content 0x0 ++int id contentPanel 0x0 ++int id custom 0x0 ++int id customPanel 0x0 ++int id decor_content_parent 0x0 ++int id default_activity_button 0x0 ++int id dialog_button 0x0 ++int id edit_query 0x0 ++int id edit_text_id 0x0 ++int id expand_activities_button 0x0 ++int id expanded_menu 0x0 ++int id filter 0x0 ++int id fitBottomStart 0x0 ++int id fitCenter 0x0 ++int id fitEnd 0x0 ++int id fitStart 0x0 ++int id fitXY 0x0 ++int id focusCrop 0x0 ++int id forever 0x0 ++int id fps_text 0x0 ++int id fragment_container_view_tag 0x0 ++int id group_divider 0x0 ++int id hide_ime_id 0x0 ++int id home 0x0 ++int id icon 0x0 ++int id icon_group 0x0 ++int id image 0x0 ++int id info 0x0 ++int id invalidate_transform 0x0 ++int id italic 0x0 ++int id labelled_by 0x0 ++int id line1 0x0 ++int id line3 0x0 ++int id listMode 0x0 ++int id list_item 0x0 ++int id message 0x0 ++int id mix_blend_mode 0x0 ++int id multiply 0x0 ++int id none 0x0 ++int id normal 0x0 ++int id notification_background 0x0 ++int id notification_main_column 0x0 ++int id notification_main_column_container 0x0 ++int id off 0x0 ++int id on 0x0 ++int id parentPanel 0x0 ++int id pointer_events 0x0 ++int id progress_circular 0x0 ++int id progress_horizontal 0x0 ++int id radio 0x0 ++int id react_test_id 0x0 ++int id report_drawn 0x0 ++int id right_icon 0x0 ++int id right_side 0x0 ++int id rn_frame_file 0x0 ++int id rn_frame_method 0x0 ++int id rn_redbox_dismiss_button 0x0 ++int id rn_redbox_line_separator 0x0 ++int id rn_redbox_loading_indicator 0x0 ++int id rn_redbox_reload_button 0x0 ++int id rn_redbox_report_button 0x0 ++int id rn_redbox_report_label 0x0 ++int id rn_redbox_stack 0x0 ++int id role 0x0 ++int id screen 0x0 ++int id scrollIndicatorDown 0x0 ++int id scrollIndicatorUp 0x0 ++int id scrollView 0x0 ++int id search_badge 0x0 ++int id search_bar 0x0 ++int id search_button 0x0 ++int id search_close_btn 0x0 ++int id search_edit_frame 0x0 ++int id search_go_btn 0x0 ++int id search_mag_icon 0x0 ++int id search_plate 0x0 ++int id search_src_text 0x0 ++int id search_voice_btn 0x0 ++int id select_dialog_listview 0x0 ++int id shortcut 0x0 ++int id spacer 0x0 ++int id special_effects_controller_view_tag 0x0 ++int id split_action_bar 0x0 ++int id src_atop 0x0 ++int id src_in 0x0 ++int id src_over 0x0 ++int id submenuarrow 0x0 ++int id submit_area 0x0 ++int id tabMode 0x0 ++int id tag_accessibility_actions 0x0 ++int id tag_accessibility_clickable_spans 0x0 ++int id tag_accessibility_heading 0x0 ++int id tag_accessibility_pane_title 0x0 ++int id tag_on_apply_window_listener 0x0 ++int id tag_on_receive_content_listener 0x0 ++int id tag_on_receive_content_mime_types 0x0 ++int id tag_screen_reader_focusable 0x0 ++int id tag_state_description 0x0 ++int id tag_transition_group 0x0 ++int id tag_unhandled_key_event_manager 0x0 ++int id tag_unhandled_key_listeners 0x0 ++int id tag_window_insets_animation_callback 0x0 ++int id text 0x0 ++int id text2 0x0 ++int id textSpacerNoButtons 0x0 ++int id textSpacerNoTitle 0x0 ++int id time 0x0 ++int id title 0x0 ++int id titleDividerNoCustom 0x0 ++int id title_template 0x0 ++int id topPanel 0x0 ++int id transform 0x0 ++int id transform_origin 0x0 ++int id unchecked 0x0 ++int id uniform 0x0 ++int id up 0x0 ++int id use_hardware_layer 0x0 ++int id view_clipped 0x0 ++int id view_tag_instance_handle 0x0 ++int id view_tag_native_id 0x0 ++int id view_tree_lifecycle_owner 0x0 ++int id view_tree_on_back_pressed_dispatcher_owner 0x0 ++int id view_tree_saved_state_registry_owner 0x0 ++int id view_tree_view_model_store_owner 0x0 ++int id visible_removing_fragment_view_tag 0x0 ++int id wrap_content 0x0 ++int integer abc_config_activityDefaultDur 0x0 ++int integer abc_config_activityShortDur 0x0 ++int integer cancel_button_image_alpha 0x0 ++int integer config_tooltipAnimTime 0x0 ++int integer react_native_dev_server_port 0x0 ++int integer status_bar_notification_info_maxnum 0x0 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 ++int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 ++int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 ++int interpolator fast_out_slow_in 0x0 ++int layout abc_action_bar_title_item 0x0 ++int layout abc_action_bar_up_container 0x0 ++int layout abc_action_menu_item_layout 0x0 ++int layout abc_action_menu_layout 0x0 ++int layout abc_action_mode_bar 0x0 ++int layout abc_action_mode_close_item_material 0x0 ++int layout abc_activity_chooser_view 0x0 ++int layout abc_activity_chooser_view_list_item 0x0 ++int layout abc_alert_dialog_button_bar_material 0x0 ++int layout abc_alert_dialog_material 0x0 ++int layout abc_alert_dialog_title_material 0x0 ++int layout abc_cascading_menu_item_layout 0x0 ++int layout abc_dialog_title_material 0x0 ++int layout abc_expanded_menu_layout 0x0 ++int layout abc_list_menu_item_checkbox 0x0 ++int layout abc_list_menu_item_icon 0x0 ++int layout abc_list_menu_item_layout 0x0 ++int layout abc_list_menu_item_radio 0x0 ++int layout abc_popup_menu_header_item_layout 0x0 ++int layout abc_popup_menu_item_layout 0x0 ++int layout abc_screen_content_include 0x0 ++int layout abc_screen_simple 0x0 ++int layout abc_screen_simple_overlay_action_mode 0x0 ++int layout abc_screen_toolbar 0x0 ++int layout abc_search_dropdown_item_icons_2line 0x0 ++int layout abc_search_view 0x0 ++int layout abc_select_dialog_material 0x0 ++int layout abc_tooltip 0x0 ++int layout alert_title_layout 0x0 ++int layout autofill_inline_suggestion 0x0 ++int layout custom_dialog 0x0 ++int layout dev_loading_view 0x0 ++int layout fps_view 0x0 ++int layout ime_base_split_test_activity 0x0 ++int layout ime_secondary_split_test_activity 0x0 ++int layout notification_action 0x0 ++int layout notification_action_tombstone 0x0 ++int layout notification_template_custom_big 0x0 ++int layout notification_template_icon_group 0x0 ++int layout notification_template_part_chronometer 0x0 ++int layout notification_template_part_time 0x0 ++int layout paused_in_debugger_view 0x0 ++int layout redbox_item_frame 0x0 ++int layout redbox_item_title 0x0 ++int layout redbox_view 0x0 ++int layout select_dialog_item_material 0x0 ++int layout select_dialog_multichoice_material 0x0 ++int layout select_dialog_singlechoice_material 0x0 ++int layout support_simple_spinner_dropdown_item 0x0 ++int string abc_action_bar_home_description 0x0 ++int string abc_action_bar_up_description 0x0 ++int string abc_action_menu_overflow_description 0x0 ++int string abc_action_mode_done 0x0 ++int string abc_activity_chooser_view_see_all 0x0 ++int string abc_activitychooserview_choose_application 0x0 ++int string abc_capital_off 0x0 ++int string abc_capital_on 0x0 ++int string abc_menu_alt_shortcut_label 0x0 ++int string abc_menu_ctrl_shortcut_label 0x0 ++int string abc_menu_delete_shortcut_label 0x0 ++int string abc_menu_enter_shortcut_label 0x0 ++int string abc_menu_function_shortcut_label 0x0 ++int string abc_menu_meta_shortcut_label 0x0 ++int string abc_menu_shift_shortcut_label 0x0 ++int string abc_menu_space_shortcut_label 0x0 ++int string abc_menu_sym_shortcut_label 0x0 ++int string abc_prepend_shortcut_label 0x0 ++int string abc_search_hint 0x0 ++int string abc_searchview_description_clear 0x0 ++int string abc_searchview_description_query 0x0 ++int string abc_searchview_description_search 0x0 ++int string abc_searchview_description_submit 0x0 ++int string abc_searchview_description_voice 0x0 ++int string abc_shareactionprovider_share_with 0x0 ++int string abc_shareactionprovider_share_with_application 0x0 ++int string abc_toolbar_collapse_description 0x0 ++int string alert_description 0x0 ++int string call_notification_answer_action 0x0 ++int string call_notification_answer_video_action 0x0 ++int string call_notification_decline_action 0x0 ++int string call_notification_hang_up_action 0x0 ++int string call_notification_incoming_text 0x0 ++int string call_notification_ongoing_text 0x0 ++int string call_notification_screening_text 0x0 ++int string catalyst_change_bundle_location 0x0 ++int string catalyst_copy_button 0x0 ++int string catalyst_debug_connecting 0x0 ++int string catalyst_debug_error 0x0 ++int string catalyst_debug_open 0x0 ++int string catalyst_debug_open_disabled 0x0 ++int string catalyst_dev_menu_header 0x0 ++int string catalyst_dev_menu_sub_header 0x0 ++int string catalyst_dismiss_button 0x0 ++int string catalyst_heap_capture 0x0 ++int string catalyst_hot_reloading 0x0 ++int string catalyst_hot_reloading_auto_disable 0x0 ++int string catalyst_hot_reloading_auto_enable 0x0 ++int string catalyst_hot_reloading_stop 0x0 ++int string catalyst_inspector_toggle 0x0 ++int string catalyst_loading_from_url 0x0 ++int string catalyst_open_debugger_error 0x0 ++int string catalyst_perf_monitor 0x0 ++int string catalyst_perf_monitor_stop 0x0 ++int string catalyst_reload 0x0 ++int string catalyst_reload_button 0x0 ++int string catalyst_reload_error 0x0 ++int string catalyst_report_button 0x0 ++int string catalyst_sample_profiler_toggle 0x0 ++int string catalyst_settings 0x0 ++int string catalyst_settings_title 0x0 ++int string combobox_description 0x0 ++int string header_description 0x0 ++int string image_description 0x0 ++int string imagebutton_description 0x0 ++int string link_description 0x0 ++int string menu_description 0x0 ++int string menubar_description 0x0 ++int string menuitem_description 0x0 ++int string progressbar_description 0x0 ++int string radiogroup_description 0x0 ++int string rn_tab_description 0x0 ++int string scrollbar_description 0x0 ++int string search_menu_title 0x0 ++int string spinbutton_description 0x0 ++int string state_busy_description 0x0 ++int string state_collapsed_description 0x0 ++int string state_expanded_description 0x0 ++int string state_mixed_description 0x0 ++int string state_off_description 0x0 ++int string state_on_description 0x0 ++int string state_unselected_description 0x0 ++int string status_bar_notification_info_overflow 0x0 ++int string summary_description 0x0 ++int string tablist_description 0x0 ++int string timer_description 0x0 ++int string toolbar_description 0x0 ++int style AlertDialog_AppCompat 0x0 ++int style AlertDialog_AppCompat_Light 0x0 ++int style Animation_AppCompat_Dialog 0x0 ++int style Animation_AppCompat_DropDownUp 0x0 ++int style Animation_AppCompat_Tooltip 0x0 ++int style Animation_Catalyst_LogBox 0x0 ++int style Animation_Catalyst_RedBox 0x0 ++int style Base_AlertDialog_AppCompat 0x0 ++int style Base_AlertDialog_AppCompat_Light 0x0 ++int style Base_Animation_AppCompat_Dialog 0x0 ++int style Base_Animation_AppCompat_DropDownUp 0x0 ++int style Base_Animation_AppCompat_Tooltip 0x0 ++int style Base_DialogWindowTitleBackground_AppCompat 0x0 ++int style Base_DialogWindowTitle_AppCompat 0x0 ++int style Base_TextAppearance_AppCompat 0x0 ++int style Base_TextAppearance_AppCompat_Body1 0x0 ++int style Base_TextAppearance_AppCompat_Body2 0x0 ++int style Base_TextAppearance_AppCompat_Button 0x0 ++int style Base_TextAppearance_AppCompat_Caption 0x0 ++int style Base_TextAppearance_AppCompat_Display1 0x0 ++int style Base_TextAppearance_AppCompat_Display2 0x0 ++int style Base_TextAppearance_AppCompat_Display3 0x0 ++int style Base_TextAppearance_AppCompat_Display4 0x0 ++int style Base_TextAppearance_AppCompat_Headline 0x0 ++int style Base_TextAppearance_AppCompat_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Large 0x0 ++int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 ++int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 ++int style Base_TextAppearance_AppCompat_Medium 0x0 ++int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Menu 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 ++int style Base_TextAppearance_AppCompat_Small 0x0 ++int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Subhead 0x0 ++int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Title 0x0 ++int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Tooltip 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 ++int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 ++int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 ++int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 ++int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 ++int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 ++int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 ++int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 ++int style Base_ThemeOverlay_AppCompat 0x0 ++int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 ++int style Base_ThemeOverlay_AppCompat_Dark 0x0 ++int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 ++int style Base_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 ++int style Base_ThemeOverlay_AppCompat_Light 0x0 ++int style Base_Theme_AppCompat 0x0 ++int style Base_Theme_AppCompat_CompactMenu 0x0 ++int style Base_Theme_AppCompat_Dialog 0x0 ++int style Base_Theme_AppCompat_DialogWhenLarge 0x0 ++int style Base_Theme_AppCompat_Dialog_Alert 0x0 ++int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 ++int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 ++int style Base_Theme_AppCompat_Light 0x0 ++int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 ++int style Base_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 ++int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 ++int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_V21_Theme_AppCompat 0x0 ++int style Base_V21_Theme_AppCompat_Dialog 0x0 ++int style Base_V21_Theme_AppCompat_Light 0x0 ++int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_V22_Theme_AppCompat 0x0 ++int style Base_V22_Theme_AppCompat_Light 0x0 ++int style Base_V23_Theme_AppCompat 0x0 ++int style Base_V23_Theme_AppCompat_Light 0x0 ++int style Base_V26_Theme_AppCompat 0x0 ++int style Base_V26_Theme_AppCompat_Light 0x0 ++int style Base_V26_Widget_AppCompat_Toolbar 0x0 ++int style Base_V28_Theme_AppCompat 0x0 ++int style Base_V28_Theme_AppCompat_Light 0x0 ++int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 ++int style Base_V7_Theme_AppCompat 0x0 ++int style Base_V7_Theme_AppCompat_Dialog 0x0 ++int style Base_V7_Theme_AppCompat_Light 0x0 ++int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 ++int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Base_V7_Widget_AppCompat_EditText 0x0 ++int style Base_V7_Widget_AppCompat_Toolbar 0x0 ++int style Base_Widget_AppCompat_ActionBar 0x0 ++int style Base_Widget_AppCompat_ActionBar_Solid 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabText 0x0 ++int style Base_Widget_AppCompat_ActionBar_TabView 0x0 ++int style Base_Widget_AppCompat_ActionButton 0x0 ++int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 ++int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 ++int style Base_Widget_AppCompat_ActionMode 0x0 ++int style Base_Widget_AppCompat_ActivityChooserView 0x0 ++int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Base_Widget_AppCompat_Button 0x0 ++int style Base_Widget_AppCompat_ButtonBar 0x0 ++int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 ++int style Base_Widget_AppCompat_Button_Borderless 0x0 ++int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 ++int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 ++int style Base_Widget_AppCompat_Button_Colored 0x0 ++int style Base_Widget_AppCompat_Button_Small 0x0 ++int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 ++int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 ++int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 ++int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 ++int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 ++int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 ++int style Base_Widget_AppCompat_EditText 0x0 ++int style Base_Widget_AppCompat_ImageButton 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 ++int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 ++int style Base_Widget_AppCompat_Light_PopupMenu 0x0 ++int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 ++int style Base_Widget_AppCompat_ListMenuView 0x0 ++int style Base_Widget_AppCompat_ListPopupWindow 0x0 ++int style Base_Widget_AppCompat_ListView 0x0 ++int style Base_Widget_AppCompat_ListView_DropDown 0x0 ++int style Base_Widget_AppCompat_ListView_Menu 0x0 ++int style Base_Widget_AppCompat_PopupMenu 0x0 ++int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 ++int style Base_Widget_AppCompat_PopupWindow 0x0 ++int style Base_Widget_AppCompat_ProgressBar 0x0 ++int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 ++int style Base_Widget_AppCompat_RatingBar 0x0 ++int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 ++int style Base_Widget_AppCompat_RatingBar_Small 0x0 ++int style Base_Widget_AppCompat_SearchView 0x0 ++int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 ++int style Base_Widget_AppCompat_SeekBar 0x0 ++int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 ++int style Base_Widget_AppCompat_Spinner 0x0 ++int style Base_Widget_AppCompat_Spinner_Underlined 0x0 ++int style Base_Widget_AppCompat_TextView 0x0 ++int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 ++int style Base_Widget_AppCompat_Toolbar 0x0 ++int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 ++int style CalendarDatePickerDialog 0x0 ++int style CalendarDatePickerStyle 0x0 ++int style DialogAnimationFade 0x0 ++int style DialogAnimationSlide 0x0 ++int style NoAnimationDialog 0x0 ++int style Platform_AppCompat 0x0 ++int style Platform_AppCompat_Light 0x0 ++int style Platform_ThemeOverlay_AppCompat 0x0 ++int style Platform_ThemeOverlay_AppCompat_Dark 0x0 ++int style Platform_ThemeOverlay_AppCompat_Light 0x0 ++int style Platform_V21_AppCompat 0x0 ++int style Platform_V21_AppCompat_Light 0x0 ++int style Platform_V25_AppCompat 0x0 ++int style Platform_V25_AppCompat_Light 0x0 ++int style Platform_Widget_AppCompat_Spinner 0x0 ++int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 ++int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 ++int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 ++int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 ++int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 ++int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 ++int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 ++int style SpinnerDatePickerDialog 0x0 ++int style SpinnerDatePickerStyle 0x0 ++int style TextAppearance_AppCompat 0x0 ++int style TextAppearance_AppCompat_Body1 0x0 ++int style TextAppearance_AppCompat_Body2 0x0 ++int style TextAppearance_AppCompat_Button 0x0 ++int style TextAppearance_AppCompat_Caption 0x0 ++int style TextAppearance_AppCompat_Display1 0x0 ++int style TextAppearance_AppCompat_Display2 0x0 ++int style TextAppearance_AppCompat_Display3 0x0 ++int style TextAppearance_AppCompat_Display4 0x0 ++int style TextAppearance_AppCompat_Headline 0x0 ++int style TextAppearance_AppCompat_Inverse 0x0 ++int style TextAppearance_AppCompat_Large 0x0 ++int style TextAppearance_AppCompat_Large_Inverse 0x0 ++int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 ++int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 ++int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 ++int style TextAppearance_AppCompat_Medium 0x0 ++int style TextAppearance_AppCompat_Medium_Inverse 0x0 ++int style TextAppearance_AppCompat_Menu 0x0 ++int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 ++int style TextAppearance_AppCompat_SearchResult_Title 0x0 ++int style TextAppearance_AppCompat_Small 0x0 ++int style TextAppearance_AppCompat_Small_Inverse 0x0 ++int style TextAppearance_AppCompat_Subhead 0x0 ++int style TextAppearance_AppCompat_Subhead_Inverse 0x0 ++int style TextAppearance_AppCompat_Title 0x0 ++int style TextAppearance_AppCompat_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Tooltip 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 ++int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 ++int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_Button 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 ++int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 ++int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 ++int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 ++int style TextAppearance_AppCompat_Widget_Switch 0x0 ++int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 ++int style TextAppearance_Compat_Notification 0x0 ++int style TextAppearance_Compat_Notification_Info 0x0 ++int style TextAppearance_Compat_Notification_Line2 0x0 ++int style TextAppearance_Compat_Notification_Time 0x0 ++int style TextAppearance_Compat_Notification_Title 0x0 ++int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 ++int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 ++int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 ++int style Theme 0x0 ++int style ThemeOverlay_AppCompat 0x0 ++int style ThemeOverlay_AppCompat_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_Dark 0x0 ++int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_DayNight 0x0 ++int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 ++int style ThemeOverlay_AppCompat_Dialog 0x0 ++int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 ++int style ThemeOverlay_AppCompat_Light 0x0 ++int style Theme_AppCompat 0x0 ++int style Theme_AppCompat_CompactMenu 0x0 ++int style Theme_AppCompat_DayNight 0x0 ++int style Theme_AppCompat_DayNight_DarkActionBar 0x0 ++int style Theme_AppCompat_DayNight_Dialog 0x0 ++int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 ++int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 ++int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_DayNight_NoActionBar 0x0 ++int style Theme_AppCompat_Dialog 0x0 ++int style Theme_AppCompat_DialogWhenLarge 0x0 ++int style Theme_AppCompat_Dialog_Alert 0x0 ++int style Theme_AppCompat_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_Empty 0x0 ++int style Theme_AppCompat_Light 0x0 ++int style Theme_AppCompat_Light_DarkActionBar 0x0 ++int style Theme_AppCompat_Light_Dialog 0x0 ++int style Theme_AppCompat_Light_DialogWhenLarge 0x0 ++int style Theme_AppCompat_Light_Dialog_Alert 0x0 ++int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 ++int style Theme_AppCompat_Light_NoActionBar 0x0 ++int style Theme_AppCompat_NoActionBar 0x0 ++int style Theme_AutofillInlineSuggestion 0x0 ++int style Theme_Catalyst 0x0 ++int style Theme_Catalyst_LogBox 0x0 ++int style Theme_Catalyst_RedBox 0x0 ++int style Theme_FullScreenDialog 0x0 ++int style Theme_FullScreenDialogAnimatedFade 0x0 ++int style Theme_FullScreenDialogAnimatedSlide 0x0 ++int style Theme_ReactNative_AppCompat_Light 0x0 ++int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0 ++int style Theme_ReactNative_TextInput_DefaultBackground 0x0 ++int style Widget_AppCompat_ActionBar 0x0 ++int style Widget_AppCompat_ActionBar_Solid 0x0 ++int style Widget_AppCompat_ActionBar_TabBar 0x0 ++int style Widget_AppCompat_ActionBar_TabText 0x0 ++int style Widget_AppCompat_ActionBar_TabView 0x0 ++int style Widget_AppCompat_ActionButton 0x0 ++int style Widget_AppCompat_ActionButton_CloseMode 0x0 ++int style Widget_AppCompat_ActionButton_Overflow 0x0 ++int style Widget_AppCompat_ActionMode 0x0 ++int style Widget_AppCompat_ActivityChooserView 0x0 ++int style Widget_AppCompat_AutoCompleteTextView 0x0 ++int style Widget_AppCompat_Button 0x0 ++int style Widget_AppCompat_ButtonBar 0x0 ++int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 ++int style Widget_AppCompat_Button_Borderless 0x0 ++int style Widget_AppCompat_Button_Borderless_Colored 0x0 ++int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 ++int style Widget_AppCompat_Button_Colored 0x0 ++int style Widget_AppCompat_Button_Small 0x0 ++int style Widget_AppCompat_CompoundButton_CheckBox 0x0 ++int style Widget_AppCompat_CompoundButton_RadioButton 0x0 ++int style Widget_AppCompat_CompoundButton_Switch 0x0 ++int style Widget_AppCompat_DrawerArrowToggle 0x0 ++int style Widget_AppCompat_DropDownItem_Spinner 0x0 ++int style Widget_AppCompat_EditText 0x0 ++int style Widget_AppCompat_ImageButton 0x0 ++int style Widget_AppCompat_Light_ActionBar 0x0 ++int style Widget_AppCompat_Light_ActionBar_Solid 0x0 ++int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabText 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabView 0x0 ++int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 ++int style Widget_AppCompat_Light_ActionButton 0x0 ++int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 ++int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 ++int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 ++int style Widget_AppCompat_Light_ActivityChooserView 0x0 ++int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 ++int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 ++int style Widget_AppCompat_Light_ListPopupWindow 0x0 ++int style Widget_AppCompat_Light_ListView_DropDown 0x0 ++int style Widget_AppCompat_Light_PopupMenu 0x0 ++int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 ++int style Widget_AppCompat_Light_SearchView 0x0 ++int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 ++int style Widget_AppCompat_ListMenuView 0x0 ++int style Widget_AppCompat_ListPopupWindow 0x0 ++int style Widget_AppCompat_ListView 0x0 ++int style Widget_AppCompat_ListView_DropDown 0x0 ++int style Widget_AppCompat_ListView_Menu 0x0 ++int style Widget_AppCompat_PopupMenu 0x0 ++int style Widget_AppCompat_PopupMenu_Overflow 0x0 ++int style Widget_AppCompat_PopupWindow 0x0 ++int style Widget_AppCompat_ProgressBar 0x0 ++int style Widget_AppCompat_ProgressBar_Horizontal 0x0 ++int style Widget_AppCompat_RatingBar 0x0 ++int style Widget_AppCompat_RatingBar_Indicator 0x0 ++int style Widget_AppCompat_RatingBar_Small 0x0 ++int style Widget_AppCompat_SearchView 0x0 ++int style Widget_AppCompat_SearchView_ActionBar 0x0 ++int style Widget_AppCompat_SeekBar 0x0 ++int style Widget_AppCompat_SeekBar_Discrete 0x0 ++int style Widget_AppCompat_Spinner 0x0 ++int style Widget_AppCompat_Spinner_DropDown 0x0 ++int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 ++int style Widget_AppCompat_Spinner_Underlined 0x0 ++int style Widget_AppCompat_TextView 0x0 ++int style Widget_AppCompat_TextView_SpinnerItem 0x0 ++int style Widget_AppCompat_Toolbar 0x0 ++int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 ++int style Widget_Autofill 0x0 ++int style Widget_Autofill_InlineSuggestionChip 0x0 ++int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0 ++int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0 ++int style Widget_Autofill_InlineSuggestionSubtitle 0x0 ++int style Widget_Autofill_InlineSuggestionTitle 0x0 ++int style Widget_Compat_NotificationActionContainer 0x0 ++int style Widget_Compat_NotificationActionText 0x0 ++int style redboxButton 0x0 ++int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable ActionBar_background 0 ++int styleable ActionBar_backgroundSplit 1 ++int styleable ActionBar_backgroundStacked 2 ++int styleable ActionBar_contentInsetEnd 3 ++int styleable ActionBar_contentInsetEndWithActions 4 ++int styleable ActionBar_contentInsetLeft 5 ++int styleable ActionBar_contentInsetRight 6 ++int styleable ActionBar_contentInsetStart 7 ++int styleable ActionBar_contentInsetStartWithNavigation 8 ++int styleable ActionBar_customNavigationLayout 9 ++int styleable ActionBar_displayOptions 10 ++int styleable ActionBar_divider 11 ++int styleable ActionBar_elevation 12 ++int styleable ActionBar_height 13 ++int styleable ActionBar_hideOnContentScroll 14 ++int styleable ActionBar_homeAsUpIndicator 15 ++int styleable ActionBar_homeLayout 16 ++int styleable ActionBar_icon 17 ++int styleable ActionBar_indeterminateProgressStyle 18 ++int styleable ActionBar_itemPadding 19 ++int styleable ActionBar_logo 20 ++int styleable ActionBar_navigationMode 21 ++int styleable ActionBar_popupTheme 22 ++int styleable ActionBar_progressBarPadding 23 ++int styleable ActionBar_progressBarStyle 24 ++int styleable ActionBar_subtitle 25 ++int styleable ActionBar_subtitleTextStyle 26 ++int styleable ActionBar_title 27 ++int styleable ActionBar_titleTextStyle 28 ++int[] styleable ActionBarLayout { 0x10100b3 } ++int styleable ActionBarLayout_android_layout_gravity 0 ++int[] styleable ActionMenuItemView { 0x101013f } ++int styleable ActionMenuItemView_android_minWidth 0 ++int[] styleable ActionMenuView { } ++int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable ActionMode_background 0 ++int styleable ActionMode_backgroundSplit 1 ++int styleable ActionMode_closeItemLayout 2 ++int styleable ActionMode_height 3 ++int styleable ActionMode_subtitleTextStyle 4 ++int styleable ActionMode_titleTextStyle 5 ++int[] styleable ActivityChooserView { 0x0, 0x0 } ++int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 ++int styleable ActivityChooserView_initialActivityCount 1 ++int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AlertDialog_android_layout 0 ++int styleable AlertDialog_buttonIconDimen 1 ++int styleable AlertDialog_buttonPanelSideLayout 2 ++int styleable AlertDialog_listItemLayout 3 ++int styleable AlertDialog_listLayout 4 ++int styleable AlertDialog_multiChoiceItemLayout 5 ++int styleable AlertDialog_showTitle 6 ++int styleable AlertDialog_singleChoiceItemLayout 7 ++int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } ++int styleable AnimatedStateListDrawableCompat_android_constantSize 0 ++int styleable AnimatedStateListDrawableCompat_android_dither 1 ++int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 ++int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 ++int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 ++int styleable AnimatedStateListDrawableCompat_android_visible 5 ++int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } ++int styleable AnimatedStateListDrawableItem_android_drawable 0 ++int styleable AnimatedStateListDrawableItem_android_id 1 ++int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } ++int styleable AnimatedStateListDrawableTransition_android_drawable 0 ++int styleable AnimatedStateListDrawableTransition_android_fromId 1 ++int styleable AnimatedStateListDrawableTransition_android_reversible 2 ++int styleable AnimatedStateListDrawableTransition_android_toId 3 ++int[] styleable AppCompatEmojiHelper { } ++int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } ++int styleable AppCompatImageView_android_src 0 ++int styleable AppCompatImageView_srcCompat 1 ++int styleable AppCompatImageView_tint 2 ++int styleable AppCompatImageView_tintMode 3 ++int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } ++int styleable AppCompatSeekBar_android_thumb 0 ++int styleable AppCompatSeekBar_tickMark 1 ++int styleable AppCompatSeekBar_tickMarkTint 2 ++int styleable AppCompatSeekBar_tickMarkTintMode 3 ++int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } ++int styleable AppCompatTextHelper_android_drawableBottom 0 ++int styleable AppCompatTextHelper_android_drawableEnd 1 ++int styleable AppCompatTextHelper_android_drawableLeft 2 ++int styleable AppCompatTextHelper_android_drawableRight 3 ++int styleable AppCompatTextHelper_android_drawableStart 4 ++int styleable AppCompatTextHelper_android_drawableTop 5 ++int styleable AppCompatTextHelper_android_textAppearance 6 ++int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AppCompatTextView_android_textAppearance 0 ++int styleable AppCompatTextView_autoSizeMaxTextSize 1 ++int styleable AppCompatTextView_autoSizeMinTextSize 2 ++int styleable AppCompatTextView_autoSizePresetSizes 3 ++int styleable AppCompatTextView_autoSizeStepGranularity 4 ++int styleable AppCompatTextView_autoSizeTextType 5 ++int styleable AppCompatTextView_drawableBottomCompat 6 ++int styleable AppCompatTextView_drawableEndCompat 7 ++int styleable AppCompatTextView_drawableLeftCompat 8 ++int styleable AppCompatTextView_drawableRightCompat 9 ++int styleable AppCompatTextView_drawableStartCompat 10 ++int styleable AppCompatTextView_drawableTint 11 ++int styleable AppCompatTextView_drawableTintMode 12 ++int styleable AppCompatTextView_drawableTopCompat 13 ++int styleable AppCompatTextView_emojiCompatEnabled 14 ++int styleable AppCompatTextView_firstBaselineToTopHeight 15 ++int styleable AppCompatTextView_fontFamily 16 ++int styleable AppCompatTextView_fontVariationSettings 17 ++int styleable AppCompatTextView_lastBaselineToBottomHeight 18 ++int styleable AppCompatTextView_lineHeight 19 ++int styleable AppCompatTextView_textAllCaps 20 ++int styleable AppCompatTextView_textLocale 21 ++int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable AppCompatTheme_actionBarDivider 0 ++int styleable AppCompatTheme_actionBarItemBackground 1 ++int styleable AppCompatTheme_actionBarPopupTheme 2 ++int styleable AppCompatTheme_actionBarSize 3 ++int styleable AppCompatTheme_actionBarSplitStyle 4 ++int styleable AppCompatTheme_actionBarStyle 5 ++int styleable AppCompatTheme_actionBarTabBarStyle 6 ++int styleable AppCompatTheme_actionBarTabStyle 7 ++int styleable AppCompatTheme_actionBarTabTextStyle 8 ++int styleable AppCompatTheme_actionBarTheme 9 ++int styleable AppCompatTheme_actionBarWidgetTheme 10 ++int styleable AppCompatTheme_actionButtonStyle 11 ++int styleable AppCompatTheme_actionDropDownStyle 12 ++int styleable AppCompatTheme_actionMenuTextAppearance 13 ++int styleable AppCompatTheme_actionMenuTextColor 14 ++int styleable AppCompatTheme_actionModeBackground 15 ++int styleable AppCompatTheme_actionModeCloseButtonStyle 16 ++int styleable AppCompatTheme_actionModeCloseContentDescription 17 ++int styleable AppCompatTheme_actionModeCloseDrawable 18 ++int styleable AppCompatTheme_actionModeCopyDrawable 19 ++int styleable AppCompatTheme_actionModeCutDrawable 20 ++int styleable AppCompatTheme_actionModeFindDrawable 21 ++int styleable AppCompatTheme_actionModePasteDrawable 22 ++int styleable AppCompatTheme_actionModePopupWindowStyle 23 ++int styleable AppCompatTheme_actionModeSelectAllDrawable 24 ++int styleable AppCompatTheme_actionModeShareDrawable 25 ++int styleable AppCompatTheme_actionModeSplitBackground 26 ++int styleable AppCompatTheme_actionModeStyle 27 ++int styleable AppCompatTheme_actionModeTheme 28 ++int styleable AppCompatTheme_actionModeWebSearchDrawable 29 ++int styleable AppCompatTheme_actionOverflowButtonStyle 30 ++int styleable AppCompatTheme_actionOverflowMenuStyle 31 ++int styleable AppCompatTheme_activityChooserViewStyle 32 ++int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 ++int styleable AppCompatTheme_alertDialogCenterButtons 34 ++int styleable AppCompatTheme_alertDialogStyle 35 ++int styleable AppCompatTheme_alertDialogTheme 36 ++int styleable AppCompatTheme_android_windowAnimationStyle 37 ++int styleable AppCompatTheme_android_windowIsFloating 38 ++int styleable AppCompatTheme_autoCompleteTextViewStyle 39 ++int styleable AppCompatTheme_borderlessButtonStyle 40 ++int styleable AppCompatTheme_buttonBarButtonStyle 41 ++int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 ++int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 ++int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 ++int styleable AppCompatTheme_buttonBarStyle 45 ++int styleable AppCompatTheme_buttonStyle 46 ++int styleable AppCompatTheme_buttonStyleSmall 47 ++int styleable AppCompatTheme_checkboxStyle 48 ++int styleable AppCompatTheme_checkedTextViewStyle 49 ++int styleable AppCompatTheme_colorAccent 50 ++int styleable AppCompatTheme_colorBackgroundFloating 51 ++int styleable AppCompatTheme_colorButtonNormal 52 ++int styleable AppCompatTheme_colorControlActivated 53 ++int styleable AppCompatTheme_colorControlHighlight 54 ++int styleable AppCompatTheme_colorControlNormal 55 ++int styleable AppCompatTheme_colorError 56 ++int styleable AppCompatTheme_colorPrimary 57 ++int styleable AppCompatTheme_colorPrimaryDark 58 ++int styleable AppCompatTheme_colorSwitchThumbNormal 59 ++int styleable AppCompatTheme_controlBackground 60 ++int styleable AppCompatTheme_dialogCornerRadius 61 ++int styleable AppCompatTheme_dialogPreferredPadding 62 ++int styleable AppCompatTheme_dialogTheme 63 ++int styleable AppCompatTheme_dividerHorizontal 64 ++int styleable AppCompatTheme_dividerVertical 65 ++int styleable AppCompatTheme_dropDownListViewStyle 66 ++int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 ++int styleable AppCompatTheme_editTextBackground 68 ++int styleable AppCompatTheme_editTextColor 69 ++int styleable AppCompatTheme_editTextStyle 70 ++int styleable AppCompatTheme_homeAsUpIndicator 71 ++int styleable AppCompatTheme_imageButtonStyle 72 ++int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 ++int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 ++int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 ++int styleable AppCompatTheme_listDividerAlertDialog 76 ++int styleable AppCompatTheme_listMenuViewStyle 77 ++int styleable AppCompatTheme_listPopupWindowStyle 78 ++int styleable AppCompatTheme_listPreferredItemHeight 79 ++int styleable AppCompatTheme_listPreferredItemHeightLarge 80 ++int styleable AppCompatTheme_listPreferredItemHeightSmall 81 ++int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 ++int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 ++int styleable AppCompatTheme_listPreferredItemPaddingRight 84 ++int styleable AppCompatTheme_listPreferredItemPaddingStart 85 ++int styleable AppCompatTheme_panelBackground 86 ++int styleable AppCompatTheme_panelMenuListTheme 87 ++int styleable AppCompatTheme_panelMenuListWidth 88 ++int styleable AppCompatTheme_popupMenuStyle 89 ++int styleable AppCompatTheme_popupWindowStyle 90 ++int styleable AppCompatTheme_radioButtonStyle 91 ++int styleable AppCompatTheme_ratingBarStyle 92 ++int styleable AppCompatTheme_ratingBarStyleIndicator 93 ++int styleable AppCompatTheme_ratingBarStyleSmall 94 ++int styleable AppCompatTheme_searchViewStyle 95 ++int styleable AppCompatTheme_seekBarStyle 96 ++int styleable AppCompatTheme_selectableItemBackground 97 ++int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 ++int styleable AppCompatTheme_spinnerDropDownItemStyle 99 ++int styleable AppCompatTheme_spinnerStyle 100 ++int styleable AppCompatTheme_switchStyle 101 ++int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 ++int styleable AppCompatTheme_textAppearanceListItem 103 ++int styleable AppCompatTheme_textAppearanceListItemSecondary 104 ++int styleable AppCompatTheme_textAppearanceListItemSmall 105 ++int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 ++int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 ++int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 ++int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 ++int styleable AppCompatTheme_textColorAlertDialogListItem 110 ++int styleable AppCompatTheme_textColorSearchUrl 111 ++int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 ++int styleable AppCompatTheme_toolbarStyle 113 ++int styleable AppCompatTheme_tooltipForegroundColor 114 ++int styleable AppCompatTheme_tooltipFrameBackground 115 ++int styleable AppCompatTheme_viewInflaterClass 116 ++int styleable AppCompatTheme_windowActionBar 117 ++int styleable AppCompatTheme_windowActionBarOverlay 118 ++int styleable AppCompatTheme_windowActionModeOverlay 119 ++int styleable AppCompatTheme_windowFixedHeightMajor 120 ++int styleable AppCompatTheme_windowFixedHeightMinor 121 ++int styleable AppCompatTheme_windowFixedWidthMajor 122 ++int styleable AppCompatTheme_windowFixedWidthMinor 123 ++int styleable AppCompatTheme_windowMinWidthMajor 124 ++int styleable AppCompatTheme_windowMinWidthMinor 125 ++int styleable AppCompatTheme_windowNoTitle 126 ++int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 ++int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 ++int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 ++int[] styleable ButtonBarLayout { 0x0 } ++int styleable ButtonBarLayout_allowStacking 0 ++int[] styleable Capability { 0x0, 0x0 } ++int styleable Capability_queryPatterns 0 ++int styleable Capability_shortcutMatchRequired 1 ++int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } ++int styleable CheckedTextView_android_checkMark 0 ++int styleable CheckedTextView_checkMarkCompat 1 ++int styleable CheckedTextView_checkMarkTint 2 ++int styleable CheckedTextView_checkMarkTintMode 3 ++int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } ++int styleable ColorStateListItem_alpha 0 ++int styleable ColorStateListItem_android_alpha 1 ++int styleable ColorStateListItem_android_color 2 ++int styleable ColorStateListItem_android_lStar 3 ++int styleable ColorStateListItem_lStar 4 ++int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } ++int styleable CompoundButton_android_button 0 ++int styleable CompoundButton_buttonCompat 1 ++int styleable CompoundButton_buttonTint 2 ++int styleable CompoundButton_buttonTintMode 3 ++int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable DrawerArrowToggle_arrowHeadLength 0 ++int styleable DrawerArrowToggle_arrowShaftLength 1 ++int styleable DrawerArrowToggle_barLength 2 ++int styleable DrawerArrowToggle_color 3 ++int styleable DrawerArrowToggle_drawableSize 4 ++int styleable DrawerArrowToggle_gapBetweenBars 5 ++int styleable DrawerArrowToggle_spinBars 6 ++int styleable DrawerArrowToggle_thickness 7 ++int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable FontFamily_fontProviderAuthority 0 ++int styleable FontFamily_fontProviderCerts 1 ++int styleable FontFamily_fontProviderFetchStrategy 2 ++int styleable FontFamily_fontProviderFetchTimeout 3 ++int styleable FontFamily_fontProviderPackage 4 ++int styleable FontFamily_fontProviderQuery 5 ++int styleable FontFamily_fontProviderSystemFontFamily 6 ++int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable FontFamilyFont_android_font 0 ++int styleable FontFamilyFont_android_fontStyle 1 ++int styleable FontFamilyFont_android_fontVariationSettings 2 ++int styleable FontFamilyFont_android_fontWeight 3 ++int styleable FontFamilyFont_android_ttcIndex 4 ++int styleable FontFamilyFont_font 5 ++int styleable FontFamilyFont_fontStyle 6 ++int styleable FontFamilyFont_fontVariationSettings 7 ++int styleable FontFamilyFont_fontWeight 8 ++int styleable FontFamilyFont_ttcIndex 9 ++int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } ++int styleable Fragment_android_id 0 ++int styleable Fragment_android_name 1 ++int styleable Fragment_android_tag 2 ++int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } ++int styleable FragmentContainerView_android_name 0 ++int styleable FragmentContainerView_android_tag 1 ++int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable GenericDraweeHierarchy_actualImageScaleType 0 ++int styleable GenericDraweeHierarchy_backgroundImage 1 ++int styleable GenericDraweeHierarchy_fadeDuration 2 ++int styleable GenericDraweeHierarchy_failureImage 3 ++int styleable GenericDraweeHierarchy_failureImageScaleType 4 ++int styleable GenericDraweeHierarchy_overlayImage 5 ++int styleable GenericDraweeHierarchy_placeholderImage 6 ++int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 ++int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 ++int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 ++int styleable GenericDraweeHierarchy_progressBarImage 10 ++int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 ++int styleable GenericDraweeHierarchy_retryImage 12 ++int styleable GenericDraweeHierarchy_retryImageScaleType 13 ++int styleable GenericDraweeHierarchy_roundAsCircle 14 ++int styleable GenericDraweeHierarchy_roundBottomEnd 15 ++int styleable GenericDraweeHierarchy_roundBottomLeft 16 ++int styleable GenericDraweeHierarchy_roundBottomRight 17 ++int styleable GenericDraweeHierarchy_roundBottomStart 18 ++int styleable GenericDraweeHierarchy_roundTopEnd 19 ++int styleable GenericDraweeHierarchy_roundTopLeft 20 ++int styleable GenericDraweeHierarchy_roundTopRight 21 ++int styleable GenericDraweeHierarchy_roundTopStart 22 ++int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 ++int styleable GenericDraweeHierarchy_roundedCornerRadius 24 ++int styleable GenericDraweeHierarchy_roundingBorderColor 25 ++int styleable GenericDraweeHierarchy_roundingBorderPadding 26 ++int styleable GenericDraweeHierarchy_roundingBorderWidth 27 ++int styleable GenericDraweeHierarchy_viewAspectRatio 28 ++int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } ++int styleable GradientColor_android_centerColor 0 ++int styleable GradientColor_android_centerX 1 ++int styleable GradientColor_android_centerY 2 ++int styleable GradientColor_android_endColor 3 ++int styleable GradientColor_android_endX 4 ++int styleable GradientColor_android_endY 5 ++int styleable GradientColor_android_gradientRadius 6 ++int styleable GradientColor_android_startColor 7 ++int styleable GradientColor_android_startX 8 ++int styleable GradientColor_android_startY 9 ++int styleable GradientColor_android_tileMode 10 ++int styleable GradientColor_android_type 11 ++int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } ++int styleable GradientColorItem_android_color 0 ++int styleable GradientColorItem_android_offset 1 ++int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } ++int styleable LinearLayoutCompat_android_baselineAligned 0 ++int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 ++int styleable LinearLayoutCompat_android_gravity 2 ++int styleable LinearLayoutCompat_android_orientation 3 ++int styleable LinearLayoutCompat_android_weightSum 4 ++int styleable LinearLayoutCompat_divider 5 ++int styleable LinearLayoutCompat_dividerPadding 6 ++int styleable LinearLayoutCompat_measureWithLargestChild 7 ++int styleable LinearLayoutCompat_showDividers 8 ++int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } ++int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 ++int styleable LinearLayoutCompat_Layout_android_layout_height 1 ++int styleable LinearLayoutCompat_Layout_android_layout_weight 2 ++int styleable LinearLayoutCompat_Layout_android_layout_width 3 ++int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } ++int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 ++int styleable ListPopupWindow_android_dropDownVerticalOffset 1 ++int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } ++int styleable MenuGroup_android_checkableBehavior 0 ++int styleable MenuGroup_android_enabled 1 ++int styleable MenuGroup_android_id 2 ++int styleable MenuGroup_android_menuCategory 3 ++int styleable MenuGroup_android_orderInCategory 4 ++int styleable MenuGroup_android_visible 5 ++int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable MenuItem_actionLayout 0 ++int styleable MenuItem_actionProviderClass 1 ++int styleable MenuItem_actionViewClass 2 ++int styleable MenuItem_alphabeticModifiers 3 ++int styleable MenuItem_android_alphabeticShortcut 4 ++int styleable MenuItem_android_checkable 5 ++int styleable MenuItem_android_checked 6 ++int styleable MenuItem_android_enabled 7 ++int styleable MenuItem_android_icon 8 ++int styleable MenuItem_android_id 9 ++int styleable MenuItem_android_menuCategory 10 ++int styleable MenuItem_android_numericShortcut 11 ++int styleable MenuItem_android_onClick 12 ++int styleable MenuItem_android_orderInCategory 13 ++int styleable MenuItem_android_title 14 ++int styleable MenuItem_android_titleCondensed 15 ++int styleable MenuItem_android_visible 16 ++int styleable MenuItem_contentDescription 17 ++int styleable MenuItem_iconTint 18 ++int styleable MenuItem_iconTintMode 19 ++int styleable MenuItem_numericModifiers 20 ++int styleable MenuItem_showAsAction 21 ++int styleable MenuItem_tooltipText 22 ++int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } ++int styleable MenuView_android_headerBackground 0 ++int styleable MenuView_android_horizontalDivider 1 ++int styleable MenuView_android_itemBackground 2 ++int styleable MenuView_android_itemIconDisabledAlpha 3 ++int styleable MenuView_android_itemTextAppearance 4 ++int styleable MenuView_android_verticalDivider 5 ++int styleable MenuView_android_windowAnimationStyle 6 ++int styleable MenuView_preserveIconSpacing 7 ++int styleable MenuView_subMenuArrow 8 ++int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } ++int styleable PopupWindow_android_popupAnimationStyle 0 ++int styleable PopupWindow_android_popupBackground 1 ++int styleable PopupWindow_overlapAnchor 2 ++int[] styleable PopupWindowBackgroundState { 0x0 } ++int styleable PopupWindowBackgroundState_state_above_anchor 0 ++int[] styleable RecycleListView { 0x0, 0x0 } ++int styleable RecycleListView_paddingBottomNoButtons 0 ++int styleable RecycleListView_paddingTopNoTitle 1 ++int[] styleable ScrollBar { 0x0, 0x0, 0x0, 0x0 } ++int styleable ScrollBar_sb_handlerColor 0 ++int styleable ScrollBar_sb_horizontal 1 ++int styleable ScrollBar_sb_indicatorColor 2 ++int styleable ScrollBar_sb_indicatorTextColor 3 ++int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SearchView_android_focusable 0 ++int styleable SearchView_android_imeOptions 1 ++int styleable SearchView_android_inputType 2 ++int styleable SearchView_android_maxWidth 3 ++int styleable SearchView_closeIcon 4 ++int styleable SearchView_commitIcon 5 ++int styleable SearchView_defaultQueryHint 6 ++int styleable SearchView_goIcon 7 ++int styleable SearchView_iconifiedByDefault 8 ++int styleable SearchView_layout 9 ++int styleable SearchView_queryBackground 10 ++int styleable SearchView_queryHint 11 ++int styleable SearchView_searchHintIcon 12 ++int styleable SearchView_searchIcon 13 ++int styleable SearchView_submitBackground 14 ++int styleable SearchView_suggestionRowLayout 15 ++int styleable SearchView_voiceIcon 16 ++int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SimpleDraweeView_actualImageResource 0 ++int styleable SimpleDraweeView_actualImageUri 1 ++int styleable SimpleDraweeView_backgroundImage 2 ++int styleable SimpleDraweeView_fadeDuration 3 ++int styleable SimpleDraweeView_failureImage 4 ++int styleable SimpleDraweeView_failureImageScaleType 5 ++int styleable SimpleDraweeView_overlayImage 6 ++int styleable SimpleDraweeView_placeholderImage 7 ++int styleable SimpleDraweeView_placeholderImageScaleType 8 ++int styleable SimpleDraweeView_pressedStateOverlayImage 9 ++int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 ++int styleable SimpleDraweeView_progressBarImage 11 ++int styleable SimpleDraweeView_progressBarImageScaleType 12 ++int styleable SimpleDraweeView_retryImage 13 ++int styleable SimpleDraweeView_retryImageScaleType 14 ++int styleable SimpleDraweeView_roundAsCircle 15 ++int styleable SimpleDraweeView_roundBottomEnd 16 ++int styleable SimpleDraweeView_roundBottomLeft 17 ++int styleable SimpleDraweeView_roundBottomRight 18 ++int styleable SimpleDraweeView_roundBottomStart 19 ++int styleable SimpleDraweeView_roundTopEnd 20 ++int styleable SimpleDraweeView_roundTopLeft 21 ++int styleable SimpleDraweeView_roundTopRight 22 ++int styleable SimpleDraweeView_roundTopStart 23 ++int styleable SimpleDraweeView_roundWithOverlayColor 24 ++int styleable SimpleDraweeView_roundedCornerRadius 25 ++int styleable SimpleDraweeView_roundingBorderColor 26 ++int styleable SimpleDraweeView_roundingBorderPadding 27 ++int styleable SimpleDraweeView_roundingBorderWidth 28 ++int styleable SimpleDraweeView_viewAspectRatio 29 ++int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } ++int styleable Spinner_android_dropDownWidth 0 ++int styleable Spinner_android_entries 1 ++int styleable Spinner_android_popupBackground 2 ++int styleable Spinner_android_prompt 3 ++int styleable Spinner_popupTheme 4 ++int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } ++int styleable StateListDrawable_android_constantSize 0 ++int styleable StateListDrawable_android_dither 1 ++int styleable StateListDrawable_android_enterFadeDuration 2 ++int styleable StateListDrawable_android_exitFadeDuration 3 ++int styleable StateListDrawable_android_variablePadding 4 ++int styleable StateListDrawable_android_visible 5 ++int[] styleable StateListDrawableItem { 0x1010199 } ++int styleable StateListDrawableItem_android_drawable 0 ++int[] styleable SwipeRefreshLayout { 0x0 } ++int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 ++int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable SwitchCompat_android_textOff 0 ++int styleable SwitchCompat_android_textOn 1 ++int styleable SwitchCompat_android_thumb 2 ++int styleable SwitchCompat_showText 3 ++int styleable SwitchCompat_splitTrack 4 ++int styleable SwitchCompat_switchMinWidth 5 ++int styleable SwitchCompat_switchPadding 6 ++int styleable SwitchCompat_switchTextAppearance 7 ++int styleable SwitchCompat_thumbTextPadding 8 ++int styleable SwitchCompat_thumbTint 9 ++int styleable SwitchCompat_thumbTintMode 10 ++int styleable SwitchCompat_track 11 ++int styleable SwitchCompat_trackTint 12 ++int styleable SwitchCompat_trackTintMode 13 ++int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } ++int styleable TextAppearance_android_fontFamily 0 ++int styleable TextAppearance_android_shadowColor 1 ++int styleable TextAppearance_android_shadowDx 2 ++int styleable TextAppearance_android_shadowDy 3 ++int styleable TextAppearance_android_shadowRadius 4 ++int styleable TextAppearance_android_textColor 5 ++int styleable TextAppearance_android_textColorHint 6 ++int styleable TextAppearance_android_textColorLink 7 ++int styleable TextAppearance_android_textFontWeight 8 ++int styleable TextAppearance_android_textSize 9 ++int styleable TextAppearance_android_textStyle 10 ++int styleable TextAppearance_android_typeface 11 ++int styleable TextAppearance_fontFamily 12 ++int styleable TextAppearance_fontVariationSettings 13 ++int styleable TextAppearance_textAllCaps 14 ++int styleable TextAppearance_textLocale 15 ++int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } ++int styleable Toolbar_android_gravity 0 ++int styleable Toolbar_android_minHeight 1 ++int styleable Toolbar_buttonGravity 2 ++int styleable Toolbar_collapseContentDescription 3 ++int styleable Toolbar_collapseIcon 4 ++int styleable Toolbar_contentInsetEnd 5 ++int styleable Toolbar_contentInsetEndWithActions 6 ++int styleable Toolbar_contentInsetLeft 7 ++int styleable Toolbar_contentInsetRight 8 ++int styleable Toolbar_contentInsetStart 9 ++int styleable Toolbar_contentInsetStartWithNavigation 10 ++int styleable Toolbar_logo 11 ++int styleable Toolbar_logoDescription 12 ++int styleable Toolbar_maxButtonHeight 13 ++int styleable Toolbar_menu 14 ++int styleable Toolbar_navigationContentDescription 15 ++int styleable Toolbar_navigationIcon 16 ++int styleable Toolbar_popupTheme 17 ++int styleable Toolbar_subtitle 18 ++int styleable Toolbar_subtitleTextAppearance 19 ++int styleable Toolbar_subtitleTextColor 20 ++int styleable Toolbar_title 21 ++int styleable Toolbar_titleMargin 22 ++int styleable Toolbar_titleMarginBottom 23 ++int styleable Toolbar_titleMarginEnd 24 ++int styleable Toolbar_titleMarginStart 25 ++int styleable Toolbar_titleMarginTop 26 ++int styleable Toolbar_titleMargins 27 ++int styleable Toolbar_titleTextAppearance 28 ++int styleable Toolbar_titleTextColor 29 ++int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } ++int styleable View_android_focusable 0 ++int styleable View_android_theme 1 ++int styleable View_paddingEnd 2 ++int styleable View_paddingStart 3 ++int styleable View_theme 4 ++int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } ++int styleable ViewBackgroundHelper_android_background 0 ++int styleable ViewBackgroundHelper_backgroundTint 1 ++int styleable ViewBackgroundHelper_backgroundTintMode 2 ++int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } ++int styleable ViewStubCompat_android_id 0 ++int styleable ViewStubCompat_android_inflatedId 1 ++int styleable ViewStubCompat_android_layout 2 ++int xml rn_dev_preferences 0x0 +diff --git a/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..579c2b3 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Tue Jun 24 13:45:25 CEST 2025 +diff --git a/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..3a46cbd +--- /dev/null ++++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..a6130ec +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..2a13610 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-pdf/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-pdf/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..7a5c896 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.class +new file mode 100644 +index 0000000..830e7bd +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.class differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.class +new file mode 100644 +index 0000000..3164688 +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.class differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/BuildConfig.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/BuildConfig.class +new file mode 100644 +index 0000000..0f553e5 +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/BuildConfig.class differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfManager.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfManager.class +new file mode 100644 +index 0000000..8405645 +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfManager.class differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView$1.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView$1.class +new file mode 100644 +index 0000000..a262bf4 +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView$1.class differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView.class +new file mode 100644 +index 0000000..f98f5f8 +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView.class differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/RNPDFPackage.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/RNPDFPackage.class +new file mode 100644 +index 0000000..b9f32ad +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/RNPDFPackage.class differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-pdf/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-pdf/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-pdf/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-pdf/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..d3b4f64 +--- /dev/null ++++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-pdf/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..f25cf52 +--- /dev/null ++++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-pdf/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-pdf/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-pdf/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-pdf/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-pdf/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..af8fb17 +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-pdf/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-pdf/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..305af70 +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1,1488 @@ ++org.wonday.pdf ++anim abc_fade_in ++anim abc_fade_out ++anim abc_grow_fade_in_from_bottom ++anim abc_popup_enter ++anim abc_popup_exit ++anim abc_shrink_fade_out_from_bottom ++anim abc_slide_in_bottom ++anim abc_slide_in_top ++anim abc_slide_out_bottom ++anim abc_slide_out_top ++anim abc_tooltip_enter ++anim abc_tooltip_exit ++anim btn_checkbox_to_checked_box_inner_merged_animation ++anim btn_checkbox_to_checked_box_outer_merged_animation ++anim btn_checkbox_to_checked_icon_null_animation ++anim btn_checkbox_to_unchecked_box_inner_merged_animation ++anim btn_checkbox_to_unchecked_check_path_merged_animation ++anim btn_checkbox_to_unchecked_icon_null_animation ++anim btn_radio_to_off_mtrl_dot_group_animation ++anim btn_radio_to_off_mtrl_ring_outer_animation ++anim btn_radio_to_off_mtrl_ring_outer_path_animation ++anim btn_radio_to_on_mtrl_dot_group_animation ++anim btn_radio_to_on_mtrl_ring_outer_animation ++anim btn_radio_to_on_mtrl_ring_outer_path_animation ++anim catalyst_fade_in ++anim catalyst_fade_out ++anim catalyst_push_up_in ++anim catalyst_push_up_out ++anim catalyst_slide_down ++anim catalyst_slide_up ++anim fragment_fast_out_extra_slow_in ++animator fragment_close_enter ++animator fragment_close_exit ++animator fragment_fade_enter ++animator fragment_fade_exit ++animator fragment_open_enter ++animator fragment_open_exit ++attr actionBarDivider ++attr actionBarItemBackground ++attr actionBarPopupTheme ++attr actionBarSize ++attr actionBarSplitStyle ++attr actionBarStyle ++attr actionBarTabBarStyle ++attr actionBarTabStyle ++attr actionBarTabTextStyle ++attr actionBarTheme ++attr actionBarWidgetTheme ++attr actionButtonStyle ++attr actionDropDownStyle ++attr actionLayout ++attr actionMenuTextAppearance ++attr actionMenuTextColor ++attr actionModeBackground ++attr actionModeCloseButtonStyle ++attr actionModeCloseContentDescription ++attr actionModeCloseDrawable ++attr actionModeCopyDrawable ++attr actionModeCutDrawable ++attr actionModeFindDrawable ++attr actionModePasteDrawable ++attr actionModePopupWindowStyle ++attr actionModeSelectAllDrawable ++attr actionModeShareDrawable ++attr actionModeSplitBackground ++attr actionModeStyle ++attr actionModeTheme ++attr actionModeWebSearchDrawable ++attr actionOverflowButtonStyle ++attr actionOverflowMenuStyle ++attr actionProviderClass ++attr actionViewClass ++attr activityChooserViewStyle ++attr actualImageResource ++attr actualImageScaleType ++attr actualImageUri ++attr alertDialogButtonGroupStyle ++attr alertDialogCenterButtons ++attr alertDialogStyle ++attr alertDialogTheme ++attr allowStacking ++attr alpha ++attr alphabeticModifiers ++attr arrowHeadLength ++attr arrowShaftLength ++attr autoCompleteTextViewStyle ++attr autoSizeMaxTextSize ++attr autoSizeMinTextSize ++attr autoSizePresetSizes ++attr autoSizeStepGranularity ++attr autoSizeTextType ++attr autofillInlineSuggestionChip ++attr autofillInlineSuggestionEndIconStyle ++attr autofillInlineSuggestionStartIconStyle ++attr autofillInlineSuggestionSubtitle ++attr autofillInlineSuggestionTitle ++attr background ++attr backgroundImage ++attr backgroundSplit ++attr backgroundStacked ++attr backgroundTint ++attr backgroundTintMode ++attr barLength ++attr borderlessButtonStyle ++attr buttonBarButtonStyle ++attr buttonBarNegativeButtonStyle ++attr buttonBarNeutralButtonStyle ++attr buttonBarPositiveButtonStyle ++attr buttonBarStyle ++attr buttonCompat ++attr buttonGravity ++attr buttonIconDimen ++attr buttonPanelSideLayout ++attr buttonStyle ++attr buttonStyleSmall ++attr buttonTint ++attr buttonTintMode ++attr checkMarkCompat ++attr checkMarkTint ++attr checkMarkTintMode ++attr checkboxStyle ++attr checkedTextViewStyle ++attr closeIcon ++attr closeItemLayout ++attr collapseContentDescription ++attr collapseIcon ++attr color ++attr colorAccent ++attr colorBackgroundFloating ++attr colorButtonNormal ++attr colorControlActivated ++attr colorControlHighlight ++attr colorControlNormal ++attr colorError ++attr colorPrimary ++attr colorPrimaryDark ++attr colorSwitchThumbNormal ++attr commitIcon ++attr contentDescription ++attr contentInsetEnd ++attr contentInsetEndWithActions ++attr contentInsetLeft ++attr contentInsetRight ++attr contentInsetStart ++attr contentInsetStartWithNavigation ++attr controlBackground ++attr customNavigationLayout ++attr defaultQueryHint ++attr dialogCornerRadius ++attr dialogPreferredPadding ++attr dialogTheme ++attr displayOptions ++attr divider ++attr dividerHorizontal ++attr dividerPadding ++attr dividerVertical ++attr drawableBottomCompat ++attr drawableEndCompat ++attr drawableLeftCompat ++attr drawableRightCompat ++attr drawableSize ++attr drawableStartCompat ++attr drawableTint ++attr drawableTintMode ++attr drawableTopCompat ++attr drawerArrowStyle ++attr dropDownListViewStyle ++attr dropdownListPreferredItemHeight ++attr editTextBackground ++attr editTextColor ++attr editTextStyle ++attr elevation ++attr emojiCompatEnabled ++attr expandActivityOverflowButtonDrawable ++attr fadeDuration ++attr failureImage ++attr failureImageScaleType ++attr firstBaselineToTopHeight ++attr font ++attr fontFamily ++attr fontProviderAuthority ++attr fontProviderCerts ++attr fontProviderFetchStrategy ++attr fontProviderFetchTimeout ++attr fontProviderPackage ++attr fontProviderQuery ++attr fontProviderSystemFontFamily ++attr fontStyle ++attr fontVariationSettings ++attr fontWeight ++attr gapBetweenBars ++attr goIcon ++attr height ++attr hideOnContentScroll ++attr homeAsUpIndicator ++attr homeLayout ++attr icon ++attr iconTint ++attr iconTintMode ++attr iconifiedByDefault ++attr imageButtonStyle ++attr indeterminateProgressStyle ++attr initialActivityCount ++attr isAutofillInlineSuggestionTheme ++attr isLightTheme ++attr itemPadding ++attr lStar ++attr lastBaselineToBottomHeight ++attr layout ++attr lineHeight ++attr listChoiceBackgroundIndicator ++attr listChoiceIndicatorMultipleAnimated ++attr listChoiceIndicatorSingleAnimated ++attr listDividerAlertDialog ++attr listItemLayout ++attr listLayout ++attr listMenuViewStyle ++attr listPopupWindowStyle ++attr listPreferredItemHeight ++attr listPreferredItemHeightLarge ++attr listPreferredItemHeightSmall ++attr listPreferredItemPaddingEnd ++attr listPreferredItemPaddingLeft ++attr listPreferredItemPaddingRight ++attr listPreferredItemPaddingStart ++attr logo ++attr logoDescription ++attr maxButtonHeight ++attr measureWithLargestChild ++attr menu ++attr multiChoiceItemLayout ++attr navigationContentDescription ++attr navigationIcon ++attr navigationMode ++attr nestedScrollViewStyle ++attr numericModifiers ++attr overlapAnchor ++attr overlayImage ++attr paddingBottomNoButtons ++attr paddingEnd ++attr paddingStart ++attr paddingTopNoTitle ++attr panelBackground ++attr panelMenuListTheme ++attr panelMenuListWidth ++attr placeholderImage ++attr placeholderImageScaleType ++attr popupMenuStyle ++attr popupTheme ++attr popupWindowStyle ++attr preserveIconSpacing ++attr pressedStateOverlayImage ++attr progressBarAutoRotateInterval ++attr progressBarImage ++attr progressBarImageScaleType ++attr progressBarPadding ++attr progressBarStyle ++attr queryBackground ++attr queryHint ++attr queryPatterns ++attr radioButtonStyle ++attr ratingBarStyle ++attr ratingBarStyleIndicator ++attr ratingBarStyleSmall ++attr retryImage ++attr retryImageScaleType ++attr roundAsCircle ++attr roundBottomEnd ++attr roundBottomLeft ++attr roundBottomRight ++attr roundBottomStart ++attr roundTopEnd ++attr roundTopLeft ++attr roundTopRight ++attr roundTopStart ++attr roundWithOverlayColor ++attr roundedCornerRadius ++attr roundingBorderColor ++attr roundingBorderPadding ++attr roundingBorderWidth ++attr sb_handlerColor ++attr sb_horizontal ++attr sb_indicatorColor ++attr sb_indicatorTextColor ++attr searchHintIcon ++attr searchIcon ++attr searchViewStyle ++attr seekBarStyle ++attr selectableItemBackground ++attr selectableItemBackgroundBorderless ++attr shortcutMatchRequired ++attr showAsAction ++attr showDividers ++attr showText ++attr showTitle ++attr singleChoiceItemLayout ++attr spinBars ++attr spinnerDropDownItemStyle ++attr spinnerStyle ++attr splitTrack ++attr srcCompat ++attr state_above_anchor ++attr subMenuArrow ++attr submitBackground ++attr subtitle ++attr subtitleTextAppearance ++attr subtitleTextColor ++attr subtitleTextStyle ++attr suggestionRowLayout ++attr swipeRefreshLayoutProgressSpinnerBackgroundColor ++attr switchMinWidth ++attr switchPadding ++attr switchStyle ++attr switchTextAppearance ++attr textAllCaps ++attr textAppearanceLargePopupMenu ++attr textAppearanceListItem ++attr textAppearanceListItemSecondary ++attr textAppearanceListItemSmall ++attr textAppearancePopupMenuHeader ++attr textAppearanceSearchResultSubtitle ++attr textAppearanceSearchResultTitle ++attr textAppearanceSmallPopupMenu ++attr textColorAlertDialogListItem ++attr textColorSearchUrl ++attr textLocale ++attr theme ++attr thickness ++attr thumbTextPadding ++attr thumbTint ++attr thumbTintMode ++attr tickMark ++attr tickMarkTint ++attr tickMarkTintMode ++attr tint ++attr tintMode ++attr title ++attr titleMargin ++attr titleMarginBottom ++attr titleMarginEnd ++attr titleMarginStart ++attr titleMarginTop ++attr titleMargins ++attr titleTextAppearance ++attr titleTextColor ++attr titleTextStyle ++attr toolbarNavigationButtonStyle ++attr toolbarStyle ++attr tooltipForegroundColor ++attr tooltipFrameBackground ++attr tooltipText ++attr track ++attr trackTint ++attr trackTintMode ++attr ttcIndex ++attr viewAspectRatio ++attr viewInflaterClass ++attr voiceIcon ++attr windowActionBar ++attr windowActionBarOverlay ++attr windowActionModeOverlay ++attr windowFixedHeightMajor ++attr windowFixedHeightMinor ++attr windowFixedWidthMajor ++attr windowFixedWidthMinor ++attr windowMinWidthMajor ++attr windowMinWidthMinor ++attr windowNoTitle ++bool abc_action_bar_embed_tabs ++bool abc_config_actionMenuItemAllCaps ++color abc_background_cache_hint_selector_material_dark ++color abc_background_cache_hint_selector_material_light ++color abc_btn_colored_borderless_text_material ++color abc_btn_colored_text_material ++color abc_color_highlight_material ++color abc_decor_view_status_guard ++color abc_decor_view_status_guard_light ++color abc_hint_foreground_material_dark ++color abc_hint_foreground_material_light ++color abc_primary_text_disable_only_material_dark ++color abc_primary_text_disable_only_material_light ++color abc_primary_text_material_dark ++color abc_primary_text_material_light ++color abc_search_url_text ++color abc_search_url_text_normal ++color abc_search_url_text_pressed ++color abc_search_url_text_selected ++color abc_secondary_text_material_dark ++color abc_secondary_text_material_light ++color abc_tint_btn_checkable ++color abc_tint_default ++color abc_tint_edittext ++color abc_tint_seek_thumb ++color abc_tint_spinner ++color abc_tint_switch_track ++color accent_material_dark ++color accent_material_light ++color androidx_core_ripple_material_light ++color androidx_core_secondary_text_default_material_light ++color background_floating_material_dark ++color background_floating_material_light ++color background_material_dark ++color background_material_light ++color bright_foreground_disabled_material_dark ++color bright_foreground_disabled_material_light ++color bright_foreground_inverse_material_dark ++color bright_foreground_inverse_material_light ++color bright_foreground_material_dark ++color bright_foreground_material_light ++color button_material_dark ++color button_material_light ++color call_notification_answer_color ++color call_notification_decline_color ++color catalyst_logbox_background ++color catalyst_redbox_background ++color dim_foreground_disabled_material_dark ++color dim_foreground_disabled_material_light ++color dim_foreground_material_dark ++color dim_foreground_material_light ++color error_color_material_dark ++color error_color_material_light ++color foreground_material_dark ++color foreground_material_light ++color highlighted_text_material_dark ++color highlighted_text_material_light ++color material_blue_grey_800 ++color material_blue_grey_900 ++color material_blue_grey_950 ++color material_deep_teal_200 ++color material_deep_teal_500 ++color material_grey_100 ++color material_grey_300 ++color material_grey_50 ++color material_grey_600 ++color material_grey_800 ++color material_grey_850 ++color material_grey_900 ++color notification_action_color_filter ++color notification_icon_bg_color ++color primary_dark_material_dark ++color primary_dark_material_light ++color primary_material_dark ++color primary_material_light ++color primary_text_default_material_dark ++color primary_text_default_material_light ++color primary_text_disabled_material_dark ++color primary_text_disabled_material_light ++color ripple_material_dark ++color ripple_material_light ++color secondary_text_default_material_dark ++color secondary_text_default_material_light ++color secondary_text_disabled_material_dark ++color secondary_text_disabled_material_light ++color switch_thumb_disabled_material_dark ++color switch_thumb_disabled_material_light ++color switch_thumb_material_dark ++color switch_thumb_material_light ++color switch_thumb_normal_material_dark ++color switch_thumb_normal_material_light ++color tooltip_background_dark ++color tooltip_background_light ++dimen abc_action_bar_content_inset_material ++dimen abc_action_bar_content_inset_with_nav ++dimen abc_action_bar_default_height_material ++dimen abc_action_bar_default_padding_end_material ++dimen abc_action_bar_default_padding_start_material ++dimen abc_action_bar_elevation_material ++dimen abc_action_bar_icon_vertical_padding_material ++dimen abc_action_bar_overflow_padding_end_material ++dimen abc_action_bar_overflow_padding_start_material ++dimen abc_action_bar_stacked_max_height ++dimen abc_action_bar_stacked_tab_max_width ++dimen abc_action_bar_subtitle_bottom_margin_material ++dimen abc_action_bar_subtitle_top_margin_material ++dimen abc_action_button_min_height_material ++dimen abc_action_button_min_width_material ++dimen abc_action_button_min_width_overflow_material ++dimen abc_alert_dialog_button_bar_height ++dimen abc_alert_dialog_button_dimen ++dimen abc_button_inset_horizontal_material ++dimen abc_button_inset_vertical_material ++dimen abc_button_padding_horizontal_material ++dimen abc_button_padding_vertical_material ++dimen abc_cascading_menus_min_smallest_width ++dimen abc_config_prefDialogWidth ++dimen abc_control_corner_material ++dimen abc_control_inset_material ++dimen abc_control_padding_material ++dimen abc_dialog_corner_radius_material ++dimen abc_dialog_fixed_height_major ++dimen abc_dialog_fixed_height_minor ++dimen abc_dialog_fixed_width_major ++dimen abc_dialog_fixed_width_minor ++dimen abc_dialog_list_padding_bottom_no_buttons ++dimen abc_dialog_list_padding_top_no_title ++dimen abc_dialog_min_width_major ++dimen abc_dialog_min_width_minor ++dimen abc_dialog_padding_material ++dimen abc_dialog_padding_top_material ++dimen abc_dialog_title_divider_material ++dimen abc_disabled_alpha_material_dark ++dimen abc_disabled_alpha_material_light ++dimen abc_dropdownitem_icon_width ++dimen abc_dropdownitem_text_padding_left ++dimen abc_dropdownitem_text_padding_right ++dimen abc_edit_text_inset_bottom_material ++dimen abc_edit_text_inset_horizontal_material ++dimen abc_edit_text_inset_top_material ++dimen abc_floating_window_z ++dimen abc_list_item_height_large_material ++dimen abc_list_item_height_material ++dimen abc_list_item_height_small_material ++dimen abc_list_item_padding_horizontal_material ++dimen abc_panel_menu_list_width ++dimen abc_progress_bar_height_material ++dimen abc_search_view_preferred_height ++dimen abc_search_view_preferred_width ++dimen abc_seekbar_track_background_height_material ++dimen abc_seekbar_track_progress_height_material ++dimen abc_select_dialog_padding_start_material ++dimen abc_star_big ++dimen abc_star_medium ++dimen abc_star_small ++dimen abc_switch_padding ++dimen abc_text_size_body_1_material ++dimen abc_text_size_body_2_material ++dimen abc_text_size_button_material ++dimen abc_text_size_caption_material ++dimen abc_text_size_display_1_material ++dimen abc_text_size_display_2_material ++dimen abc_text_size_display_3_material ++dimen abc_text_size_display_4_material ++dimen abc_text_size_headline_material ++dimen abc_text_size_large_material ++dimen abc_text_size_medium_material ++dimen abc_text_size_menu_header_material ++dimen abc_text_size_menu_material ++dimen abc_text_size_small_material ++dimen abc_text_size_subhead_material ++dimen abc_text_size_subtitle_material_toolbar ++dimen abc_text_size_title_material ++dimen abc_text_size_title_material_toolbar ++dimen autofill_inline_suggestion_icon_size ++dimen compat_button_inset_horizontal_material ++dimen compat_button_inset_vertical_material ++dimen compat_button_padding_horizontal_material ++dimen compat_button_padding_vertical_material ++dimen compat_control_corner_material ++dimen compat_notification_large_icon_max_height ++dimen compat_notification_large_icon_max_width ++dimen disabled_alpha_material_dark ++dimen disabled_alpha_material_light ++dimen highlight_alpha_material_colored ++dimen highlight_alpha_material_dark ++dimen highlight_alpha_material_light ++dimen hint_alpha_material_dark ++dimen hint_alpha_material_light ++dimen hint_pressed_alpha_material_dark ++dimen hint_pressed_alpha_material_light ++dimen notification_action_icon_size ++dimen notification_action_text_size ++dimen notification_big_circle_margin ++dimen notification_content_margin_start ++dimen notification_large_icon_height ++dimen notification_large_icon_width ++dimen notification_main_column_padding_top ++dimen notification_media_narrow_margin ++dimen notification_right_icon_size ++dimen notification_right_side_padding_top ++dimen notification_small_icon_background_padding ++dimen notification_small_icon_size_as_large ++dimen notification_subtext_size ++dimen notification_top_pad ++dimen notification_top_pad_large_text ++dimen tooltip_corner_radius ++dimen tooltip_horizontal_padding ++dimen tooltip_margin ++dimen tooltip_precise_anchor_extra_offset ++dimen tooltip_precise_anchor_threshold ++dimen tooltip_vertical_padding ++dimen tooltip_y_offset_non_touch ++dimen tooltip_y_offset_touch ++drawable abc_ab_share_pack_mtrl_alpha ++drawable abc_action_bar_item_background_material ++drawable abc_btn_borderless_material ++drawable abc_btn_check_material ++drawable abc_btn_check_material_anim ++drawable abc_btn_check_to_on_mtrl_000 ++drawable abc_btn_check_to_on_mtrl_015 ++drawable abc_btn_colored_material ++drawable abc_btn_default_mtrl_shape ++drawable abc_btn_radio_material ++drawable abc_btn_radio_material_anim ++drawable abc_btn_radio_to_on_mtrl_000 ++drawable abc_btn_radio_to_on_mtrl_015 ++drawable abc_btn_switch_to_on_mtrl_00001 ++drawable abc_btn_switch_to_on_mtrl_00012 ++drawable abc_cab_background_internal_bg ++drawable abc_cab_background_top_material ++drawable abc_cab_background_top_mtrl_alpha ++drawable abc_control_background_material ++drawable abc_dialog_material_background ++drawable abc_edit_text_material ++drawable abc_ic_ab_back_material ++drawable abc_ic_arrow_drop_right_black_24dp ++drawable abc_ic_clear_material ++drawable abc_ic_commit_search_api_mtrl_alpha ++drawable abc_ic_go_search_api_material ++drawable abc_ic_menu_copy_mtrl_am_alpha ++drawable abc_ic_menu_cut_mtrl_alpha ++drawable abc_ic_menu_overflow_material ++drawable abc_ic_menu_paste_mtrl_am_alpha ++drawable abc_ic_menu_selectall_mtrl_alpha ++drawable abc_ic_menu_share_mtrl_alpha ++drawable abc_ic_search_api_material ++drawable abc_ic_voice_search_api_material ++drawable abc_item_background_holo_dark ++drawable abc_item_background_holo_light ++drawable abc_list_divider_material ++drawable abc_list_divider_mtrl_alpha ++drawable abc_list_focused_holo ++drawable abc_list_longpressed_holo ++drawable abc_list_pressed_holo_dark ++drawable abc_list_pressed_holo_light ++drawable abc_list_selector_background_transition_holo_dark ++drawable abc_list_selector_background_transition_holo_light ++drawable abc_list_selector_disabled_holo_dark ++drawable abc_list_selector_disabled_holo_light ++drawable abc_list_selector_holo_dark ++drawable abc_list_selector_holo_light ++drawable abc_menu_hardkey_panel_mtrl_mult ++drawable abc_popup_background_mtrl_mult ++drawable abc_ratingbar_indicator_material ++drawable abc_ratingbar_material ++drawable abc_ratingbar_small_material ++drawable abc_scrubber_control_off_mtrl_alpha ++drawable abc_scrubber_control_to_pressed_mtrl_000 ++drawable abc_scrubber_control_to_pressed_mtrl_005 ++drawable abc_scrubber_primary_mtrl_alpha ++drawable abc_scrubber_track_mtrl_alpha ++drawable abc_seekbar_thumb_material ++drawable abc_seekbar_tick_mark_material ++drawable abc_seekbar_track_material ++drawable abc_spinner_mtrl_am_alpha ++drawable abc_spinner_textfield_background_material ++drawable abc_star_black_48dp ++drawable abc_star_half_black_48dp ++drawable abc_switch_thumb_material ++drawable abc_switch_track_mtrl_alpha ++drawable abc_tab_indicator_material ++drawable abc_tab_indicator_mtrl_alpha ++drawable abc_text_cursor_material ++drawable abc_text_select_handle_left_mtrl ++drawable abc_text_select_handle_middle_mtrl ++drawable abc_text_select_handle_right_mtrl ++drawable abc_textfield_activated_mtrl_alpha ++drawable abc_textfield_default_mtrl_alpha ++drawable abc_textfield_search_activated_mtrl_alpha ++drawable abc_textfield_search_default_mtrl_alpha ++drawable abc_textfield_search_material ++drawable abc_vector_test ++drawable autofill_inline_suggestion_chip_background ++drawable btn_checkbox_checked_mtrl ++drawable btn_checkbox_checked_to_unchecked_mtrl_animation ++drawable btn_checkbox_unchecked_mtrl ++drawable btn_checkbox_unchecked_to_checked_mtrl_animation ++drawable btn_radio_off_mtrl ++drawable btn_radio_off_to_on_mtrl_animation ++drawable btn_radio_on_mtrl ++drawable btn_radio_on_to_off_mtrl_animation ++drawable default_scroll_handle_bottom ++drawable default_scroll_handle_left ++drawable default_scroll_handle_right ++drawable default_scroll_handle_top ++drawable ic_call_answer ++drawable ic_call_answer_low ++drawable ic_call_answer_video ++drawable ic_call_answer_video_low ++drawable ic_call_decline ++drawable ic_call_decline_low ++drawable ic_resume ++drawable notification_action_background ++drawable notification_bg ++drawable notification_bg_low ++drawable notification_bg_low_normal ++drawable notification_bg_low_pressed ++drawable notification_bg_normal ++drawable notification_bg_normal_pressed ++drawable notification_icon_background ++drawable notification_oversize_large_icon_bg ++drawable notification_template_icon_bg ++drawable notification_template_icon_low_bg ++drawable notification_tile_bg ++drawable notify_panel_notification_icon_bg ++drawable paused_in_debugger_background ++drawable paused_in_debugger_dialog_background ++drawable redbox_top_border_background ++drawable ripple_effect ++drawable test_level_drawable ++drawable tooltip_frame_dark ++drawable tooltip_frame_light ++id accessibility_action_clickable_span ++id accessibility_actions ++id accessibility_collection ++id accessibility_collection_item ++id accessibility_custom_action_0 ++id accessibility_custom_action_1 ++id accessibility_custom_action_10 ++id accessibility_custom_action_11 ++id accessibility_custom_action_12 ++id accessibility_custom_action_13 ++id accessibility_custom_action_14 ++id accessibility_custom_action_15 ++id accessibility_custom_action_16 ++id accessibility_custom_action_17 ++id accessibility_custom_action_18 ++id accessibility_custom_action_19 ++id accessibility_custom_action_2 ++id accessibility_custom_action_20 ++id accessibility_custom_action_21 ++id accessibility_custom_action_22 ++id accessibility_custom_action_23 ++id accessibility_custom_action_24 ++id accessibility_custom_action_25 ++id accessibility_custom_action_26 ++id accessibility_custom_action_27 ++id accessibility_custom_action_28 ++id accessibility_custom_action_29 ++id accessibility_custom_action_3 ++id accessibility_custom_action_30 ++id accessibility_custom_action_31 ++id accessibility_custom_action_4 ++id accessibility_custom_action_5 ++id accessibility_custom_action_6 ++id accessibility_custom_action_7 ++id accessibility_custom_action_8 ++id accessibility_custom_action_9 ++id accessibility_hint ++id accessibility_label ++id accessibility_links ++id accessibility_role ++id accessibility_state ++id accessibility_state_expanded ++id accessibility_value ++id action_bar ++id action_bar_activity_content ++id action_bar_container ++id action_bar_root ++id action_bar_spinner ++id action_bar_subtitle ++id action_bar_title ++id action_container ++id action_context_bar ++id action_divider ++id action_image ++id action_menu_divider ++id action_menu_presenter ++id action_mode_bar ++id action_mode_bar_stub ++id action_mode_close_button ++id action_text ++id actions ++id activity_chooser_view_content ++id add ++id alertTitle ++id alert_title ++id async ++id autofill_inline_suggestion_end_icon ++id autofill_inline_suggestion_start_icon ++id autofill_inline_suggestion_subtitle ++id autofill_inline_suggestion_title ++id blocking ++id button ++id buttonPanel ++id button_text ++id catalyst_redbox_title ++id center ++id centerCrop ++id centerInside ++id checkbox ++id checked ++id chronometer ++id content ++id contentPanel ++id custom ++id customPanel ++id decor_content_parent ++id default_activity_button ++id dialog_button ++id edit_query ++id edit_text_id ++id expand_activities_button ++id expanded_menu ++id filter ++id fitBottomStart ++id fitCenter ++id fitEnd ++id fitStart ++id fitXY ++id focusCrop ++id forever ++id fps_text ++id fragment_container_view_tag ++id group_divider ++id hide_ime_id ++id home ++id icon ++id icon_group ++id image ++id info ++id invalidate_transform ++id italic ++id labelled_by ++id line1 ++id line3 ++id listMode ++id list_item ++id message ++id mix_blend_mode ++id multiply ++id none ++id normal ++id notification_background ++id notification_main_column ++id notification_main_column_container ++id off ++id on ++id parentPanel ++id pointer_events ++id progress_circular ++id progress_horizontal ++id radio ++id react_test_id ++id report_drawn ++id right_icon ++id right_side ++id rn_frame_file ++id rn_frame_method ++id rn_redbox_dismiss_button ++id rn_redbox_line_separator ++id rn_redbox_loading_indicator ++id rn_redbox_reload_button ++id rn_redbox_report_button ++id rn_redbox_report_label ++id rn_redbox_stack ++id role ++id screen ++id scrollIndicatorDown ++id scrollIndicatorUp ++id scrollView ++id search_badge ++id search_bar ++id search_button ++id search_close_btn ++id search_edit_frame ++id search_go_btn ++id search_mag_icon ++id search_plate ++id search_src_text ++id search_voice_btn ++id select_dialog_listview ++id shortcut ++id spacer ++id special_effects_controller_view_tag ++id split_action_bar ++id src_atop ++id src_in ++id src_over ++id submenuarrow ++id submit_area ++id tabMode ++id tag_accessibility_actions ++id tag_accessibility_clickable_spans ++id tag_accessibility_heading ++id tag_accessibility_pane_title ++id tag_on_apply_window_listener ++id tag_on_receive_content_listener ++id tag_on_receive_content_mime_types ++id tag_screen_reader_focusable ++id tag_state_description ++id tag_transition_group ++id tag_unhandled_key_event_manager ++id tag_unhandled_key_listeners ++id tag_window_insets_animation_callback ++id text ++id text2 ++id textSpacerNoButtons ++id textSpacerNoTitle ++id time ++id title ++id titleDividerNoCustom ++id title_template ++id topPanel ++id transform ++id transform_origin ++id unchecked ++id uniform ++id up ++id use_hardware_layer ++id view_clipped ++id view_tag_instance_handle ++id view_tag_native_id ++id view_tree_lifecycle_owner ++id view_tree_on_back_pressed_dispatcher_owner ++id view_tree_saved_state_registry_owner ++id view_tree_view_model_store_owner ++id visible_removing_fragment_view_tag ++id wrap_content ++integer abc_config_activityDefaultDur ++integer abc_config_activityShortDur ++integer cancel_button_image_alpha ++integer config_tooltipAnimTime ++integer react_native_dev_server_port ++integer status_bar_notification_info_maxnum ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 ++interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 ++interpolator btn_radio_to_off_mtrl_animation_interpolator_0 ++interpolator btn_radio_to_on_mtrl_animation_interpolator_0 ++interpolator fast_out_slow_in ++layout abc_action_bar_title_item ++layout abc_action_bar_up_container ++layout abc_action_menu_item_layout ++layout abc_action_menu_layout ++layout abc_action_mode_bar ++layout abc_action_mode_close_item_material ++layout abc_activity_chooser_view ++layout abc_activity_chooser_view_list_item ++layout abc_alert_dialog_button_bar_material ++layout abc_alert_dialog_material ++layout abc_alert_dialog_title_material ++layout abc_cascading_menu_item_layout ++layout abc_dialog_title_material ++layout abc_expanded_menu_layout ++layout abc_list_menu_item_checkbox ++layout abc_list_menu_item_icon ++layout abc_list_menu_item_layout ++layout abc_list_menu_item_radio ++layout abc_popup_menu_header_item_layout ++layout abc_popup_menu_item_layout ++layout abc_screen_content_include ++layout abc_screen_simple ++layout abc_screen_simple_overlay_action_mode ++layout abc_screen_toolbar ++layout abc_search_dropdown_item_icons_2line ++layout abc_search_view ++layout abc_select_dialog_material ++layout abc_tooltip ++layout alert_title_layout ++layout autofill_inline_suggestion ++layout custom_dialog ++layout dev_loading_view ++layout fps_view ++layout ime_base_split_test_activity ++layout ime_secondary_split_test_activity ++layout notification_action ++layout notification_action_tombstone ++layout notification_template_custom_big ++layout notification_template_icon_group ++layout notification_template_part_chronometer ++layout notification_template_part_time ++layout paused_in_debugger_view ++layout redbox_item_frame ++layout redbox_item_title ++layout redbox_view ++layout select_dialog_item_material ++layout select_dialog_multichoice_material ++layout select_dialog_singlechoice_material ++layout support_simple_spinner_dropdown_item ++string abc_action_bar_home_description ++string abc_action_bar_up_description ++string abc_action_menu_overflow_description ++string abc_action_mode_done ++string abc_activity_chooser_view_see_all ++string abc_activitychooserview_choose_application ++string abc_capital_off ++string abc_capital_on ++string abc_menu_alt_shortcut_label ++string abc_menu_ctrl_shortcut_label ++string abc_menu_delete_shortcut_label ++string abc_menu_enter_shortcut_label ++string abc_menu_function_shortcut_label ++string abc_menu_meta_shortcut_label ++string abc_menu_shift_shortcut_label ++string abc_menu_space_shortcut_label ++string abc_menu_sym_shortcut_label ++string abc_prepend_shortcut_label ++string abc_search_hint ++string abc_searchview_description_clear ++string abc_searchview_description_query ++string abc_searchview_description_search ++string abc_searchview_description_submit ++string abc_searchview_description_voice ++string abc_shareactionprovider_share_with ++string abc_shareactionprovider_share_with_application ++string abc_toolbar_collapse_description ++string alert_description ++string call_notification_answer_action ++string call_notification_answer_video_action ++string call_notification_decline_action ++string call_notification_hang_up_action ++string call_notification_incoming_text ++string call_notification_ongoing_text ++string call_notification_screening_text ++string catalyst_change_bundle_location ++string catalyst_copy_button ++string catalyst_debug_connecting ++string catalyst_debug_error ++string catalyst_debug_open ++string catalyst_debug_open_disabled ++string catalyst_dev_menu_header ++string catalyst_dev_menu_sub_header ++string catalyst_dismiss_button ++string catalyst_heap_capture ++string catalyst_hot_reloading ++string catalyst_hot_reloading_auto_disable ++string catalyst_hot_reloading_auto_enable ++string catalyst_hot_reloading_stop ++string catalyst_inspector_toggle ++string catalyst_loading_from_url ++string catalyst_open_debugger_error ++string catalyst_perf_monitor ++string catalyst_perf_monitor_stop ++string catalyst_reload ++string catalyst_reload_button ++string catalyst_reload_error ++string catalyst_report_button ++string catalyst_sample_profiler_toggle ++string catalyst_settings ++string catalyst_settings_title ++string combobox_description ++string header_description ++string image_description ++string imagebutton_description ++string link_description ++string menu_description ++string menubar_description ++string menuitem_description ++string progressbar_description ++string radiogroup_description ++string rn_tab_description ++string scrollbar_description ++string search_menu_title ++string spinbutton_description ++string state_busy_description ++string state_collapsed_description ++string state_expanded_description ++string state_mixed_description ++string state_off_description ++string state_on_description ++string state_unselected_description ++string status_bar_notification_info_overflow ++string summary_description ++string tablist_description ++string timer_description ++string toolbar_description ++style AlertDialog_AppCompat ++style AlertDialog_AppCompat_Light ++style Animation_AppCompat_Dialog ++style Animation_AppCompat_DropDownUp ++style Animation_AppCompat_Tooltip ++style Animation_Catalyst_LogBox ++style Animation_Catalyst_RedBox ++style Base_AlertDialog_AppCompat ++style Base_AlertDialog_AppCompat_Light ++style Base_Animation_AppCompat_Dialog ++style Base_Animation_AppCompat_DropDownUp ++style Base_Animation_AppCompat_Tooltip ++style Base_DialogWindowTitleBackground_AppCompat ++style Base_DialogWindowTitle_AppCompat ++style Base_TextAppearance_AppCompat ++style Base_TextAppearance_AppCompat_Body1 ++style Base_TextAppearance_AppCompat_Body2 ++style Base_TextAppearance_AppCompat_Button ++style Base_TextAppearance_AppCompat_Caption ++style Base_TextAppearance_AppCompat_Display1 ++style Base_TextAppearance_AppCompat_Display2 ++style Base_TextAppearance_AppCompat_Display3 ++style Base_TextAppearance_AppCompat_Display4 ++style Base_TextAppearance_AppCompat_Headline ++style Base_TextAppearance_AppCompat_Inverse ++style Base_TextAppearance_AppCompat_Large ++style Base_TextAppearance_AppCompat_Large_Inverse ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Medium ++style Base_TextAppearance_AppCompat_Medium_Inverse ++style Base_TextAppearance_AppCompat_Menu ++style Base_TextAppearance_AppCompat_SearchResult ++style Base_TextAppearance_AppCompat_SearchResult_Subtitle ++style Base_TextAppearance_AppCompat_SearchResult_Title ++style Base_TextAppearance_AppCompat_Small ++style Base_TextAppearance_AppCompat_Small_Inverse ++style Base_TextAppearance_AppCompat_Subhead ++style Base_TextAppearance_AppCompat_Subhead_Inverse ++style Base_TextAppearance_AppCompat_Title ++style Base_TextAppearance_AppCompat_Title_Inverse ++style Base_TextAppearance_AppCompat_Tooltip ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title ++style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style Base_TextAppearance_AppCompat_Widget_ActionMode_Title ++style Base_TextAppearance_AppCompat_Widget_Button ++style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Colored ++style Base_TextAppearance_AppCompat_Widget_Button_Inverse ++style Base_TextAppearance_AppCompat_Widget_DropDownItem ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large ++style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small ++style Base_TextAppearance_AppCompat_Widget_Switch ++style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style Base_TextAppearance_Widget_AppCompat_Toolbar_Title ++style Base_ThemeOverlay_AppCompat ++style Base_ThemeOverlay_AppCompat_ActionBar ++style Base_ThemeOverlay_AppCompat_Dark ++style Base_ThemeOverlay_AppCompat_Dark_ActionBar ++style Base_ThemeOverlay_AppCompat_Dialog ++style Base_ThemeOverlay_AppCompat_Dialog_Alert ++style Base_ThemeOverlay_AppCompat_Light ++style Base_Theme_AppCompat ++style Base_Theme_AppCompat_CompactMenu ++style Base_Theme_AppCompat_Dialog ++style Base_Theme_AppCompat_DialogWhenLarge ++style Base_Theme_AppCompat_Dialog_Alert ++style Base_Theme_AppCompat_Dialog_FixedSize ++style Base_Theme_AppCompat_Dialog_MinWidth ++style Base_Theme_AppCompat_Light ++style Base_Theme_AppCompat_Light_DarkActionBar ++style Base_Theme_AppCompat_Light_Dialog ++style Base_Theme_AppCompat_Light_DialogWhenLarge ++style Base_Theme_AppCompat_Light_Dialog_Alert ++style Base_Theme_AppCompat_Light_Dialog_FixedSize ++style Base_Theme_AppCompat_Light_Dialog_MinWidth ++style Base_V21_ThemeOverlay_AppCompat_Dialog ++style Base_V21_Theme_AppCompat ++style Base_V21_Theme_AppCompat_Dialog ++style Base_V21_Theme_AppCompat_Light ++style Base_V21_Theme_AppCompat_Light_Dialog ++style Base_V22_Theme_AppCompat ++style Base_V22_Theme_AppCompat_Light ++style Base_V23_Theme_AppCompat ++style Base_V23_Theme_AppCompat_Light ++style Base_V26_Theme_AppCompat ++style Base_V26_Theme_AppCompat_Light ++style Base_V26_Widget_AppCompat_Toolbar ++style Base_V28_Theme_AppCompat ++style Base_V28_Theme_AppCompat_Light ++style Base_V7_ThemeOverlay_AppCompat_Dialog ++style Base_V7_Theme_AppCompat ++style Base_V7_Theme_AppCompat_Dialog ++style Base_V7_Theme_AppCompat_Light ++style Base_V7_Theme_AppCompat_Light_Dialog ++style Base_V7_Widget_AppCompat_AutoCompleteTextView ++style Base_V7_Widget_AppCompat_EditText ++style Base_V7_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_ActionBar ++style Base_Widget_AppCompat_ActionBar_Solid ++style Base_Widget_AppCompat_ActionBar_TabBar ++style Base_Widget_AppCompat_ActionBar_TabText ++style Base_Widget_AppCompat_ActionBar_TabView ++style Base_Widget_AppCompat_ActionButton ++style Base_Widget_AppCompat_ActionButton_CloseMode ++style Base_Widget_AppCompat_ActionButton_Overflow ++style Base_Widget_AppCompat_ActionMode ++style Base_Widget_AppCompat_ActivityChooserView ++style Base_Widget_AppCompat_AutoCompleteTextView ++style Base_Widget_AppCompat_Button ++style Base_Widget_AppCompat_ButtonBar ++style Base_Widget_AppCompat_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Borderless ++style Base_Widget_AppCompat_Button_Borderless_Colored ++style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Base_Widget_AppCompat_Button_Colored ++style Base_Widget_AppCompat_Button_Small ++style Base_Widget_AppCompat_CompoundButton_CheckBox ++style Base_Widget_AppCompat_CompoundButton_RadioButton ++style Base_Widget_AppCompat_CompoundButton_Switch ++style Base_Widget_AppCompat_DrawerArrowToggle ++style Base_Widget_AppCompat_DrawerArrowToggle_Common ++style Base_Widget_AppCompat_DropDownItem_Spinner ++style Base_Widget_AppCompat_EditText ++style Base_Widget_AppCompat_ImageButton ++style Base_Widget_AppCompat_Light_ActionBar ++style Base_Widget_AppCompat_Light_ActionBar_Solid ++style Base_Widget_AppCompat_Light_ActionBar_TabBar ++style Base_Widget_AppCompat_Light_ActionBar_TabText ++style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Base_Widget_AppCompat_Light_ActionBar_TabView ++style Base_Widget_AppCompat_Light_PopupMenu ++style Base_Widget_AppCompat_Light_PopupMenu_Overflow ++style Base_Widget_AppCompat_ListMenuView ++style Base_Widget_AppCompat_ListPopupWindow ++style Base_Widget_AppCompat_ListView ++style Base_Widget_AppCompat_ListView_DropDown ++style Base_Widget_AppCompat_ListView_Menu ++style Base_Widget_AppCompat_PopupMenu ++style Base_Widget_AppCompat_PopupMenu_Overflow ++style Base_Widget_AppCompat_PopupWindow ++style Base_Widget_AppCompat_ProgressBar ++style Base_Widget_AppCompat_ProgressBar_Horizontal ++style Base_Widget_AppCompat_RatingBar ++style Base_Widget_AppCompat_RatingBar_Indicator ++style Base_Widget_AppCompat_RatingBar_Small ++style Base_Widget_AppCompat_SearchView ++style Base_Widget_AppCompat_SearchView_ActionBar ++style Base_Widget_AppCompat_SeekBar ++style Base_Widget_AppCompat_SeekBar_Discrete ++style Base_Widget_AppCompat_Spinner ++style Base_Widget_AppCompat_Spinner_Underlined ++style Base_Widget_AppCompat_TextView ++style Base_Widget_AppCompat_TextView_SpinnerItem ++style Base_Widget_AppCompat_Toolbar ++style Base_Widget_AppCompat_Toolbar_Button_Navigation ++style CalendarDatePickerDialog ++style CalendarDatePickerStyle ++style DialogAnimationFade ++style DialogAnimationSlide ++style NoAnimationDialog ++style Platform_AppCompat ++style Platform_AppCompat_Light ++style Platform_ThemeOverlay_AppCompat ++style Platform_ThemeOverlay_AppCompat_Dark ++style Platform_ThemeOverlay_AppCompat_Light ++style Platform_V21_AppCompat ++style Platform_V21_AppCompat_Light ++style Platform_V25_AppCompat ++style Platform_V25_AppCompat_Light ++style Platform_Widget_AppCompat_Spinner ++style RtlOverlay_DialogWindowTitle_AppCompat ++style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem ++style RtlOverlay_Widget_AppCompat_DialogTitle_Icon ++style RtlOverlay_Widget_AppCompat_PopupMenuItem ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text ++style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title ++style RtlOverlay_Widget_AppCompat_SearchView_MagIcon ++style RtlOverlay_Widget_AppCompat_Search_DropDown ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Query ++style RtlOverlay_Widget_AppCompat_Search_DropDown_Text ++style RtlUnderlay_Widget_AppCompat_ActionButton ++style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow ++style SpinnerDatePickerDialog ++style SpinnerDatePickerStyle ++style TextAppearance_AppCompat ++style TextAppearance_AppCompat_Body1 ++style TextAppearance_AppCompat_Body2 ++style TextAppearance_AppCompat_Button ++style TextAppearance_AppCompat_Caption ++style TextAppearance_AppCompat_Display1 ++style TextAppearance_AppCompat_Display2 ++style TextAppearance_AppCompat_Display3 ++style TextAppearance_AppCompat_Display4 ++style TextAppearance_AppCompat_Headline ++style TextAppearance_AppCompat_Inverse ++style TextAppearance_AppCompat_Large ++style TextAppearance_AppCompat_Large_Inverse ++style TextAppearance_AppCompat_Light_SearchResult_Subtitle ++style TextAppearance_AppCompat_Light_SearchResult_Title ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Medium ++style TextAppearance_AppCompat_Medium_Inverse ++style TextAppearance_AppCompat_Menu ++style TextAppearance_AppCompat_SearchResult_Subtitle ++style TextAppearance_AppCompat_SearchResult_Title ++style TextAppearance_AppCompat_Small ++style TextAppearance_AppCompat_Small_Inverse ++style TextAppearance_AppCompat_Subhead ++style TextAppearance_AppCompat_Subhead_Inverse ++style TextAppearance_AppCompat_Title ++style TextAppearance_AppCompat_Title_Inverse ++style TextAppearance_AppCompat_Tooltip ++style TextAppearance_AppCompat_Widget_ActionBar_Menu ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle ++style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionBar_Title ++style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle ++style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse ++style TextAppearance_AppCompat_Widget_ActionMode_Title ++style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse ++style TextAppearance_AppCompat_Widget_Button ++style TextAppearance_AppCompat_Widget_Button_Borderless_Colored ++style TextAppearance_AppCompat_Widget_Button_Colored ++style TextAppearance_AppCompat_Widget_Button_Inverse ++style TextAppearance_AppCompat_Widget_DropDownItem ++style TextAppearance_AppCompat_Widget_PopupMenu_Header ++style TextAppearance_AppCompat_Widget_PopupMenu_Large ++style TextAppearance_AppCompat_Widget_PopupMenu_Small ++style TextAppearance_AppCompat_Widget_Switch ++style TextAppearance_AppCompat_Widget_TextView_SpinnerItem ++style TextAppearance_Compat_Notification ++style TextAppearance_Compat_Notification_Info ++style TextAppearance_Compat_Notification_Line2 ++style TextAppearance_Compat_Notification_Time ++style TextAppearance_Compat_Notification_Title ++style TextAppearance_Widget_AppCompat_ExpandedMenu_Item ++style TextAppearance_Widget_AppCompat_Toolbar_Subtitle ++style TextAppearance_Widget_AppCompat_Toolbar_Title ++style Theme ++style ThemeOverlay_AppCompat ++style ThemeOverlay_AppCompat_ActionBar ++style ThemeOverlay_AppCompat_Dark ++style ThemeOverlay_AppCompat_Dark_ActionBar ++style ThemeOverlay_AppCompat_DayNight ++style ThemeOverlay_AppCompat_DayNight_ActionBar ++style ThemeOverlay_AppCompat_Dialog ++style ThemeOverlay_AppCompat_Dialog_Alert ++style ThemeOverlay_AppCompat_Light ++style Theme_AppCompat ++style Theme_AppCompat_CompactMenu ++style Theme_AppCompat_DayNight ++style Theme_AppCompat_DayNight_DarkActionBar ++style Theme_AppCompat_DayNight_Dialog ++style Theme_AppCompat_DayNight_DialogWhenLarge ++style Theme_AppCompat_DayNight_Dialog_Alert ++style Theme_AppCompat_DayNight_Dialog_MinWidth ++style Theme_AppCompat_DayNight_NoActionBar ++style Theme_AppCompat_Dialog ++style Theme_AppCompat_DialogWhenLarge ++style Theme_AppCompat_Dialog_Alert ++style Theme_AppCompat_Dialog_MinWidth ++style Theme_AppCompat_Empty ++style Theme_AppCompat_Light ++style Theme_AppCompat_Light_DarkActionBar ++style Theme_AppCompat_Light_Dialog ++style Theme_AppCompat_Light_DialogWhenLarge ++style Theme_AppCompat_Light_Dialog_Alert ++style Theme_AppCompat_Light_Dialog_MinWidth ++style Theme_AppCompat_Light_NoActionBar ++style Theme_AppCompat_NoActionBar ++style Theme_AutofillInlineSuggestion ++style Theme_Catalyst ++style Theme_Catalyst_LogBox ++style Theme_Catalyst_RedBox ++style Theme_FullScreenDialog ++style Theme_FullScreenDialogAnimatedFade ++style Theme_FullScreenDialogAnimatedSlide ++style Theme_ReactNative_AppCompat_Light ++style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen ++style Theme_ReactNative_TextInput_DefaultBackground ++style Widget_AppCompat_ActionBar ++style Widget_AppCompat_ActionBar_Solid ++style Widget_AppCompat_ActionBar_TabBar ++style Widget_AppCompat_ActionBar_TabText ++style Widget_AppCompat_ActionBar_TabView ++style Widget_AppCompat_ActionButton ++style Widget_AppCompat_ActionButton_CloseMode ++style Widget_AppCompat_ActionButton_Overflow ++style Widget_AppCompat_ActionMode ++style Widget_AppCompat_ActivityChooserView ++style Widget_AppCompat_AutoCompleteTextView ++style Widget_AppCompat_Button ++style Widget_AppCompat_ButtonBar ++style Widget_AppCompat_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Borderless ++style Widget_AppCompat_Button_Borderless_Colored ++style Widget_AppCompat_Button_ButtonBar_AlertDialog ++style Widget_AppCompat_Button_Colored ++style Widget_AppCompat_Button_Small ++style Widget_AppCompat_CompoundButton_CheckBox ++style Widget_AppCompat_CompoundButton_RadioButton ++style Widget_AppCompat_CompoundButton_Switch ++style Widget_AppCompat_DrawerArrowToggle ++style Widget_AppCompat_DropDownItem_Spinner ++style Widget_AppCompat_EditText ++style Widget_AppCompat_ImageButton ++style Widget_AppCompat_Light_ActionBar ++style Widget_AppCompat_Light_ActionBar_Solid ++style Widget_AppCompat_Light_ActionBar_Solid_Inverse ++style Widget_AppCompat_Light_ActionBar_TabBar ++style Widget_AppCompat_Light_ActionBar_TabBar_Inverse ++style Widget_AppCompat_Light_ActionBar_TabText ++style Widget_AppCompat_Light_ActionBar_TabText_Inverse ++style Widget_AppCompat_Light_ActionBar_TabView ++style Widget_AppCompat_Light_ActionBar_TabView_Inverse ++style Widget_AppCompat_Light_ActionButton ++style Widget_AppCompat_Light_ActionButton_CloseMode ++style Widget_AppCompat_Light_ActionButton_Overflow ++style Widget_AppCompat_Light_ActionMode_Inverse ++style Widget_AppCompat_Light_ActivityChooserView ++style Widget_AppCompat_Light_AutoCompleteTextView ++style Widget_AppCompat_Light_DropDownItem_Spinner ++style Widget_AppCompat_Light_ListPopupWindow ++style Widget_AppCompat_Light_ListView_DropDown ++style Widget_AppCompat_Light_PopupMenu ++style Widget_AppCompat_Light_PopupMenu_Overflow ++style Widget_AppCompat_Light_SearchView ++style Widget_AppCompat_Light_Spinner_DropDown_ActionBar ++style Widget_AppCompat_ListMenuView ++style Widget_AppCompat_ListPopupWindow ++style Widget_AppCompat_ListView ++style Widget_AppCompat_ListView_DropDown ++style Widget_AppCompat_ListView_Menu ++style Widget_AppCompat_PopupMenu ++style Widget_AppCompat_PopupMenu_Overflow ++style Widget_AppCompat_PopupWindow ++style Widget_AppCompat_ProgressBar ++style Widget_AppCompat_ProgressBar_Horizontal ++style Widget_AppCompat_RatingBar ++style Widget_AppCompat_RatingBar_Indicator ++style Widget_AppCompat_RatingBar_Small ++style Widget_AppCompat_SearchView ++style Widget_AppCompat_SearchView_ActionBar ++style Widget_AppCompat_SeekBar ++style Widget_AppCompat_SeekBar_Discrete ++style Widget_AppCompat_Spinner ++style Widget_AppCompat_Spinner_DropDown ++style Widget_AppCompat_Spinner_DropDown_ActionBar ++style Widget_AppCompat_Spinner_Underlined ++style Widget_AppCompat_TextView ++style Widget_AppCompat_TextView_SpinnerItem ++style Widget_AppCompat_Toolbar ++style Widget_AppCompat_Toolbar_Button_Navigation ++style Widget_Autofill ++style Widget_Autofill_InlineSuggestionChip ++style Widget_Autofill_InlineSuggestionEndIconStyle ++style Widget_Autofill_InlineSuggestionStartIconStyle ++style Widget_Autofill_InlineSuggestionSubtitle ++style Widget_Autofill_InlineSuggestionTitle ++style Widget_Compat_NotificationActionContainer ++style Widget_Compat_NotificationActionText ++style redboxButton ++styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle ++styleable ActionBarLayout android_layout_gravity ++styleable ActionMenuItemView android_minWidth ++styleable ActionMenuView ++styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle ++styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount ++styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout ++styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible ++styleable AnimatedStateListDrawableItem android_drawable android_id ++styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId ++styleable AppCompatEmojiHelper ++styleable AppCompatImageView android_src srcCompat tint tintMode ++styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode ++styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance ++styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale ++styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle ++styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme ++styleable ButtonBarLayout allowStacking ++styleable Capability queryPatterns shortcutMatchRequired ++styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode ++styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar ++styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode ++styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness ++styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily ++styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex ++styleable Fragment android_id android_name android_tag ++styleable FragmentContainerView android_name android_tag ++styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type ++styleable GradientColorItem android_color android_offset ++styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers ++styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width ++styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset ++styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible ++styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText ++styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow ++styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor ++styleable PopupWindowBackgroundState state_above_anchor ++styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle ++styleable ScrollBar sb_handlerColor sb_horizontal sb_indicatorColor sb_indicatorTextColor ++styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon ++styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio ++styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme ++styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible ++styleable StateListDrawableItem android_drawable ++styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor ++styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode ++styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale ++styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor ++styleable View android_focusable android_theme paddingEnd paddingStart theme ++styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode ++styleable ViewStubCompat android_id android_inflatedId android_layout ++xml rn_dev_preferences +diff --git a/node_modules/react-native-pdf/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-pdf/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..71859ee +--- /dev/null ++++ b/node_modules/react-native-pdf/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,16 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml:1:1-4:12 ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml:1:1-4:12 ++ package ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml:1:11-69 ++uses-sdk ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml ++INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml +diff --git a/node_modules/react-native-pdf/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-pdf/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..1e47b2f +Binary files /dev/null and b/node_modules/react-native-pdf/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/react-native-pdf/react-native-pdf.podspec b/node_modules/react-native-pdf/react-native-pdf.podspec +index fb36140..63a276d 100644 +--- a/node_modules/react-native-pdf/react-native-pdf.podspec ++++ b/node_modules/react-native-pdf/react-native-pdf.podspec +@@ -17,24 +17,11 @@ Pod::Spec.new do |s| + s.framework = "PDFKit" + + if fabric_enabled +- folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32' +- +- s.pod_target_xcconfig = { +- 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/RCT-Folly"', +- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17", +- } + s.platforms = { ios: '11.0', tvos: '11.0' } +- s.compiler_flags = folly_compiler_flags + ' -DRCT_NEW_ARCH_ENABLED' + s.source_files = 'ios/**/*.{h,m,mm,cpp}' + s.requires_arc = true + +- s.dependency "React" +- s.dependency "React-RCTFabric" +- s.dependency "React-Codegen" +- s.dependency "RCT-Folly" +- s.dependency "RCTRequired" +- s.dependency "RCTTypeSafety" +- s.dependency "ReactCommon/turbomodule/core" ++ install_modules_dependencies(s) + else + s.platform = :ios, '8.0' + s.source_files = 'ios/**/*.{h,m,mm}' From c3163f297683bad8fa902068cd87331f498513f6 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Sat, 28 Jun 2025 19:40:17 +0200 Subject: [PATCH 21/50] chore: update nitro-sqlite --- package-lock.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package-lock.json b/package-lock.json index de5c697423b4b..33c72b9695b2f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31541,6 +31541,8 @@ }, "node_modules/react-native-nitro-sqlite": { "version": "9.1.10", + "resolved": "https://registry.npmjs.org/react-native-nitro-sqlite/-/react-native-nitro-sqlite-9.1.10.tgz", + "integrity": "sha512-7k4k7YPYRNM+qGOrkkdj5k+FB0hclqBM1r3rPTcnQ9C35TAGaq+umYhrS4me51+KSntgkQR9WcGkKGzrdyWO5w==", "hasInstallScript": true, "license": "MIT", "dependencies": { From 53628973c6cfa278944765642b946032593db4c6 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 14:17:30 +0700 Subject: [PATCH 22/50] chore: rename and update initial onfido patch --- ...react-native-sdk+10.6.0+001-initial.patch} | 35 ++----------------- 1 file changed, 3 insertions(+), 32 deletions(-) rename patches/{@onfido+react-native-sdk+10.6.0.patch => @onfido+react-native-sdk+10.6.0+001-initial.patch} (98%) diff --git a/patches/@onfido+react-native-sdk+10.6.0.patch b/patches/@onfido+react-native-sdk+10.6.0+001-initial.patch similarity index 98% rename from patches/@onfido+react-native-sdk+10.6.0.patch rename to patches/@onfido+react-native-sdk+10.6.0+001-initial.patch index 87f0aad1618d5..14d026ca023cb 100644 --- a/patches/@onfido+react-native-sdk+10.6.0.patch +++ b/patches/@onfido+react-native-sdk+10.6.0+001-initial.patch @@ -1176,7 +1176,7 @@ index 0000000..998f79b +@end diff --git a/node_modules/@onfido/react-native-sdk/js/NativeOnfidoModule.ts b/node_modules/@onfido/react-native-sdk/js/NativeOnfidoModule.ts new file mode 100644 -index 0000000..c48f86e +index 0000000..8ed5cd0 --- /dev/null +++ b/node_modules/@onfido/react-native-sdk/js/NativeOnfidoModule.ts @@ -0,0 +1,13 @@ @@ -1227,7 +1227,7 @@ index db35471..fa6c1ef 100644 addCustomMediaCallback(callback: (result: OnfidoMediaResult) => OnfidoMediaResult) { diff --git a/node_modules/@onfido/react-native-sdk/onfido-react-native-sdk.podspec b/node_modules/@onfido/react-native-sdk/onfido-react-native-sdk.podspec -index a9de0d0..da83d9f 100644 +index a9de0d0..ed1e6fd 100644 --- a/node_modules/@onfido/react-native-sdk/onfido-react-native-sdk.podspec +++ b/node_modules/@onfido/react-native-sdk/onfido-react-native-sdk.podspec @@ -2,6 +2,8 @@ require "json" @@ -1265,35 +1265,6 @@ index a9de0d0..da83d9f 100644 + s.dependency "React" + end end -diff --git a/node_modules/@onfido/react-native-sdk/package.json b/node_modules/@onfido/react-native-sdk/package.json -index 50a331b..754c3c0 100644 ---- a/node_modules/@onfido/react-native-sdk/package.json -+++ b/node_modules/@onfido/react-native-sdk/package.json -@@ -24,7 +24,8 @@ - ], - "testPathIgnorePatterns": [ - "/TestApp", -- "/SampleApp" -+ "/SampleApp", -+ "/FabricSample" - ], - "globals": { - "__DEV__": true -@@ -82,6 +83,14 @@ - "react-native": "0.72.6", - "typescript": "^4.6.4" - }, -+ "codegenConfig": { -+ "name": "rnonfidosdk", -+ "type": "modules", -+ "jsSrcsDir": "./js", -+ "android": { -+ "javaPackageName": "com.onfido.reactnative.sdk" -+ } -+ }, - "dependencies": { - "js-base64": "3.7.5" - }, diff --git a/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh b/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh index 49f9d4c..1b9f304 100755 --- a/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh @@ -1317,4 +1288,4 @@ index 49f9d4c..1b9f304 100755 + sed -i '' -e "s/_pluginVersion = @\"[0-9]*\.[0-9]*\.[0-9]*\"/_pluginVersion = @\"$2\"/g" $1 } - update_manifest ${MANIFEST_FILE} $PACKAGE_VERSION \ No newline at end of file + update_manifest ${MANIFEST_FILE} $PACKAGE_VERSION From 0b27a6133ddad9ce85a53e0e735e916e10150236 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 14:17:45 +0700 Subject: [PATCH 23/50] chore: patch onfido for android 16kb memory alignment --- ...2+android-enable-16kb-memory-page-size.patch | 17 +++++++++++++++++ patches/@onfido/react-native-sdk/details.md | 8 ++++++++ 2 files changed, 25 insertions(+) create mode 100644 patches/@onfido/react-native-sdk/@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch create mode 100644 patches/@onfido/react-native-sdk/details.md diff --git a/patches/@onfido/react-native-sdk/@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch b/patches/@onfido/react-native-sdk/@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..2695317dc4cb6 --- /dev/null +++ b/patches/@onfido/react-native-sdk/@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch @@ -0,0 +1,17 @@ +diff --git a/node_modules/@onfido/react-native-sdk/android/build.gradle b/node_modules/@onfido/react-native-sdk/android/build.gradle +index 895bfd7..257605f 100644 +--- a/node_modules/@onfido/react-native-sdk/android/build.gradle ++++ b/node_modules/@onfido/react-native-sdk/android/build.gradle +@@ -93,6 +93,12 @@ android { + versionName "1.0" + multiDexEnabled true + consumerProguardFiles 'proguard-rules.pro' ++ ++ externalNativeBuild { ++ cmake { ++ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ } ++ } + } + lintOptions { + abortOnError false diff --git a/patches/@onfido/react-native-sdk/details.md b/patches/@onfido/react-native-sdk/details.md new file mode 100644 index 0000000000000..a507f91afe9d4 --- /dev/null +++ b/patches/@onfido/react-native-sdk/details.md @@ -0,0 +1,8 @@ +# `@onfido/react-native-sdk` patches + +### [@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch](@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch) + +- Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. +- Upstream PR/issue: TODO +- E/App issue: [#63871](https://github.com/Expensify/App/issues/63871) +- PR Introducing Patch: [#64640](https://github.com/Expensify/App/pull/64640) From 0dabdb2bcf478be6fae940e699727d3b37fafac9 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 14:29:35 +0700 Subject: [PATCH 24/50] chore: move back onfido patch --- ....0+001-initial.patch => @onfido+react-native-sdk+10.6.0.patch} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename patches/{@onfido+react-native-sdk+10.6.0+001-initial.patch => @onfido+react-native-sdk+10.6.0.patch} (100%) diff --git a/patches/@onfido+react-native-sdk+10.6.0+001-initial.patch b/patches/@onfido+react-native-sdk+10.6.0.patch similarity index 100% rename from patches/@onfido+react-native-sdk+10.6.0+001-initial.patch rename to patches/@onfido+react-native-sdk+10.6.0.patch From 79548ced62fd63aa7d7cec2ec5a74e72c48595e1 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 14:40:02 +0700 Subject: [PATCH 25/50] chore: update live-markdown and remove patch --- ...android-enable-16kb-memory-page-size.patch | 25541 ---------------- 1 file changed, 25541 deletions(-) delete mode 100644 patches/@expensify+react-native-live-markdown+0.1.288+001+android-enable-16kb-memory-page-size.patch diff --git a/patches/@expensify+react-native-live-markdown+0.1.288+001+android-enable-16kb-memory-page-size.patch b/patches/@expensify+react-native-live-markdown+0.1.288+001+android-enable-16kb-memory-page-size.patch deleted file mode 100644 index 418f432c4c0bc..0000000000000 --- a/patches/@expensify+react-native-live-markdown+0.1.288+001+android-enable-16kb-memory-page-size.patch +++ /dev/null @@ -1,25541 +0,0 @@ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cache-v2-4013197ac8934ef61692.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cache-v2-4013197ac8934ef61692.json -new file mode 100644 -index 0000000..ff847cd ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cache-v2-4013197ac8934ef61692.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/chris/Library/Android/sdk/ndk/27.0.12077973" -+ }, -+ { -+ "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_TOOLCHAIN", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "clang" -+ }, -+ { -+ "name" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/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/chris/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-Os -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-O2 -g -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Libraries linked by default with all C++ applications." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-latomic -lm" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER", -+ "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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "livemarkdown" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" -+ }, -+ { -+ "name" : "CMAKE_ROOT", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to CMake installation." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "fbjni_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for fbjni." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni" -+ }, -+ { -+ "name" : "livemarkdown_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a" -+ }, -+ { -+ "name" : "livemarkdown_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "livemarkdown_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "name" : "react-native-reanimated_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for react-native-reanimated." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-921a396839704bda126c.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-921a396839704bda126c.json -new file mode 100644 -index 0000000..7cc1b95 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-921a396839704bda126c.json -@@ -0,0 +1,827 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-a616f2ade3c49a58f3fc.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-a616f2ade3c49a58f3fc.json -new file mode 100644 -index 0000000..0556995 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-a616f2ade3c49a58f3fc.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" : "livemarkdown", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "livemarkdown::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-livemarkdown-Debug-e25128b984a2e63035ad.json", -+ "name" : "livemarkdown", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/index-2025-06-24T11-46-21-0315.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/index-2025-06-24T11-46-21-0315.json -new file mode 100644 -index 0000000..e6e3275 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/index-2025-06-24T11-46-21-0315.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/chris/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-a616f2ade3c49a58f3fc.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-4013197ac8934ef61692.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-921a396839704bda126c.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-4013197ac8934ef61692.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-921a396839704bda126c.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-a616f2ade3c49a58f3fc.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/target-livemarkdown-Debug-e25128b984a2e63035ad.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/target-livemarkdown-Debug-e25128b984a2e63035ad.json -new file mode 100644 -index 0000000..749391e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.cmake/api/v1/reply/target-livemarkdown-Debug-e25128b984a2e63035ad.json -@@ -0,0 +1,213 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.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" : 16, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 24, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 7, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 0, -+ "line" : 18, -+ "parent" : 0 -+ } -+ ] -+ }, -+ "compileGroups" : -+ [ -+ { -+ "compileCommandFragments" : -+ [ -+ { -+ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-fvisibility=hidden" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-fexceptions" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-frtti" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "define" : "livemarkdown_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 4, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "backtrace" : 4, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ } -+ ], -+ "language" : "CXX", -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "livemarkdown::@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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "livemarkdown", -+ "nameOnDisk" : "liblivemarkdown.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "MarkdownParser.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "OnLoad.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_deps b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_deps -new file mode 100644 -index 0000000..9c68f75 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_deps differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_log b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_log -new file mode 100644 -index 0000000..95df4c2 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/.ninja_log -@@ -0,0 +1,16 @@ -+# ninja log v5 -+0 67 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+1 4070 1750765594333273059 CMakeFiles/livemarkdown.dir/OnLoad.cpp.o 9b7ad9bb170f8e8b -+2 4930 1750765595213550517 CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o af463680cc2ce167 -+4 68 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+13 6152 1750765630159996994 CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o a4b3b4fd58c7f937 -+8 6428 1750765630448866195 CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o 391f0121dd4dff66 -+6428 6685 1750765630702623939 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so 20fbd9f9850a8c6d -+3 33 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+2 20 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+2 53 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+1 31 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+1 23 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+1 15 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+0 16 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -+2 16 0 /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs 59bc80f84f33a3d5 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeCache.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeCache.txt -new file mode 100644 -index 0000000..10b5495 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeCache.txt -@@ -0,0 +1,416 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a -+# It was generated by CMake: /Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973 -+ -+//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_TOOLCHAIN:UNINITIALIZED=clang -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Flags used by the compiler during all build types. -+CMAKE_CXX_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_CXX_FLAGS_DEBUG:STRING= -+ -+//Flags used by the CXX compiler during MINSIZEREL builds. -+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG -+ -+//Flags used by the compiler during release builds. -+CMAKE_CXX_FLAGS_RELEASE:STRING= -+ -+//Flags used by the CXX compiler during RELWITHDEBINFO builds. -+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -+ -+//Libraries linked by default with all C++ applications. -+CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm -+ -+//LLVM archiver -+CMAKE_C_COMPILER_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld -+ -+//No help, variable specified on the command line. -+CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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=livemarkdown -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf -+ -+//No help, variable specified on the command line. -+CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake -+ -+//If this value is on, makefiles will be generated without the -+// .SILENT directive, and all commands will be echoed to the console -+// during the make. This is useful for debugging only. With Visual -+// Studio IDE projects all commands are done without /nologo. -+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid -+ -+//The directory containing a CMake configuration file for fbjni. -+fbjni_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni -+ -+//Value Computed by CMake -+livemarkdown_BINARY_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a -+ -+//Value Computed by CMake -+livemarkdown_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+livemarkdown_SOURCE_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+ -+//The directory containing a CMake configuration file for react-native-reanimated. -+react-native-reanimated_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated -+ -+ -+######################## -+# 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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/chris/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+//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/chris/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..cd4999c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") -+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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..171582e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") -+set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -+set(CMAKE_CXX_COMPILER_WRAPPER "") -+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -+set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -+set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -+set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -+set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -+set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -+set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -+ -+set(CMAKE_CXX_PLATFORM_ID "Linux") -+set(CMAKE_CXX_SIMULATE_ID "") -+set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -+set(CMAKE_CXX_SIMULATE_VERSION "") -+ -+ -+ -+ -+set(CMAKE_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..f414489 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..516ae52 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..613fe3a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-24.5.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "24.5.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") -+ -+include("/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..0f2513e -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..a94d4ae -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..9cd8596 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,262 @@ -+The target system is: Android - 1 - aarch64 -+The host system is: Darwin - 24.5.0 - arm64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; -+Id flags: -c;--target=aarch64-none-linux-android24 -+ -+The output was: -+0 -+ -+ -+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" -+ -+The CXX compiler identification is Clang, found in "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_552d0 && [1/2] Building C object CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: aarch64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c -+clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking C executable cmTC_552d0 -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: aarch64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_552d0 && [1/2] Building C object CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: aarch64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] -+ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking C executable cmTC_552d0] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: aarch64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_552d0.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_552d0.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] -+ implicit objs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -+Detecting CXX compiler ABI info compiled with the following output: -+Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_6e937 && [1/2] Building CXX object CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: aarch64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -+clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking CXX executable cmTC_6e937 -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: aarch64-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_6e937 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_6e937 && [1/2] Building CXX object CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: aarch64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] -+ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking CXX executable cmTC_6e937] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: aarch64-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_6e937 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_6e937.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_6e937] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_6e937.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..355887a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/edit_cache.dir -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake -new file mode 100644 -index 0000000..6ca7744 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake -@@ -0,0 +1,25 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by CMake Version 3.22 -+cmake_policy(SET CMP0009 NEW) -+ -+# ANDROID_SRC at CMakeLists.txt:13 (file) -+file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/*.cpp") -+set(OLD_GLOB -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs") -+endif() -+ -+# CPP_SRC at CMakeLists.txt:14 (file) -+file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/*.cpp") -+set(OLD_GLOB -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/MarkdownGlobal.cpp" -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/RuntimeDecorator.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs") -+endif() -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs -new file mode 100644 -index 0000000..2b38fac ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs -@@ -0,0 +1 @@ -+# This file is generated by CMake for checking of the VerifyGlobs.cmake file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -new file mode 100644 -index 0000000..a3f0494 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/OnLoad.cpp.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -new file mode 100644 -index 0000000..41e1f33 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/OnLoad.cpp.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -new file mode 100644 -index 0000000..d420b28 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -new file mode 100644 -index 0000000..5dd32c9 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..364dc6c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/rules.ninja -@@ -0,0 +1,73 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by "Ninja" Generator, CMake Version 3.22 -+ -+# This file contains all the rules used to get the outputs files -+# built from the input files. -+# It is included in the main 'build.ninja'. -+ -+# ============================================================================= -+# Project: livemarkdown -+# Configurations: Debug -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__livemarkdown_Debug -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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__livemarkdown_Debug -+ command = $PRE_LINK && /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for re-checking globbed directories. -+ -+rule VERIFY_GLOBS -+ command = /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake -+ description = Re-checking globbed directories... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/chris/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/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/additional_project_files.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json -new file mode 100644 -index 0000000..31418a2 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json -@@ -0,0 +1,43 @@ -+{ -+ "buildFiles": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "livemarkdown::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "arm64-v8a", -+ "artifactName": "livemarkdown", -+ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so", -+ "runtimeFiles": [ -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" -+ } -+ }, -+ "cFileExtensions": [], -+ "cppFileExtensions": [ -+ "cpp" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build_mini.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build_mini.json -new file mode 100644 -index 0000000..f1c4de2 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build_mini.json -@@ -0,0 +1,32 @@ -+{ -+ "buildFiles": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "livemarkdown::@6890427a1f51a3e7e1df": { -+ "artifactName": "livemarkdown", -+ "abi": "arm64-v8a", -+ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so", -+ "runtimeFiles": [ -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja -new file mode 100644 -index 0000000..a55a894 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja -@@ -0,0 +1,200 @@ -+# 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: livemarkdown -+# Configurations: Debug -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.8 -+ -+ -+############################################# -+# Set configuration variable for custom commands. -+ -+CONFIGURATION = Debug -+# ============================================================================= -+# Include auxiliary files. -+ -+ -+############################################# -+# Include rules file. -+ -+include CMakeFiles/rules.ninja -+ -+# ============================================================================= -+ -+############################################# -+# Logical path to working directory; prefix for absolute paths. -+ -+cmake_ninja_workdir = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target livemarkdown -+ -+ -+############################################# -+# Order-only phony target for livemarkdown -+ -+build cmake_object_order_depends_target_livemarkdown: phony || CMakeFiles/livemarkdown.dir -+ -+build CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/OnLoad.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/OnLoad.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target livemarkdown -+ -+ -+############################################# -+# Link the shared library /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so: CXX_SHARED_LIBRARY_LINKER__livemarkdown_Debug CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o | /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so -+ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = liblivemarkdown.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_FILE = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.pdb -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build liblivemarkdown.so: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so -+ -+build livemarkdown: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a -+ -+build all: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Phony target to force glob verification run. -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force: phony -+ -+ -+############################################# -+# Re-run CMake to check if globbed directories changed. -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force -+ pool = console -+ restat = 1 -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/cmake.verify_globs | /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build_file_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build_file_index.txt -new file mode 100644 -index 0000000..7611c5b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build_file_index.txt -@@ -0,0 +1 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/cmake_install.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/cmake_install.cmake -new file mode 100644 -index 0000000..b8bb7d1 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+ -+# 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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json -new file mode 100644 -index 0000000..4b99466 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json -@@ -0,0 +1,22 @@ -+[ -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json.bin -new file mode 100644 -index 0000000..bee02e6 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/configure_fingerprint.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/configure_fingerprint.bin -new file mode 100644 -index 0000000..d693a8b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/configure_fingerprint.bin -@@ -0,0 +1,34 @@ -+C/C++ Structured Log§ -+¤ -+¡/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/additional_project_files.txtC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  û–ºú2  ‚銎ú2¤ -+¡ -+ž/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json  ü–ºú2û †éŠŽú2© -+¦ -+£/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build_mini.json  ü–ºú2× ¨éŠŽú2– -+“ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja  ü–ºú2‰Å šçŠŽú2š -+— -+”/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build.ninja.txt  ü–ºú2Ÿ -+œ -+™/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/build_file_index.txt  ü–ºú2‚ É銎ú2  -+ -+š/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json  ü–ºú2¸9 ™çŠŽú2¤ -+¡ -+ž/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/compile_commands.json.bin  ü–ºú2 ì ™çŠŽú2ª -+§ -+¤/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/metadata_generation_command.txt  ü–ºú2 -+ó Ä銎ú2 -+š -+—/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/prefab_config.json  ü–ºú2 è Ä銎ú2¢ -+Ÿ -+œ/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/symbol_folder_index.txt  ü–ºú2 › ÆéŠŽú2ˆ -+… -+‚/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt  ü–ºú2 š øÝÒ‹ú2É -+Æ -+Ã/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  ü–ºú2à -+À -+½/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  ü–ºú2Ñ -+Î -+Ë/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  ü–ºú2 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/metadata_generation_command.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/metadata_generation_command.txt -new file mode 100644 -index 0000000..4fed2a6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/metadata_generation_command.txt -@@ -0,0 +1,22 @@ -+ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+-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/chris/Library/Android/sdk/ndk/27.0.12077973 -+-DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 -+-DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab -+-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a -+-GNinja -+-DANDROID_STL=c++_shared -+-DANDROID_TOOLCHAIN=clang -+-DREACT_NATIVE_MINOR_VERSION=79 -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/prefab_config.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/prefab_config.json -new file mode 100644 -index 0000000..e62cf5f ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/prefab_config.json -@@ -0,0 +1,10 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/symbol_folder_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/symbol_folder_index.txt -new file mode 100644 -index 0000000..f09e9f3 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/hash_key.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/hash_key.txt -new file mode 100644 -index 0000000..25fb1ff ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/hash_key.txt -@@ -0,0 +1,29 @@ -+# 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.0.12077973. -+# - $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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+-DCMAKE_SYSTEM_NAME=Android -+-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -+-DCMAKE_SYSTEM_VERSION=24 -+-DANDROID_PLATFORM=android-24 -+-DANDROID_ABI=$ABI -+-DCMAKE_ANDROID_ARCH_ABI=$ABI -+-DANDROID_NDK=$NDK -+-DCMAKE_ANDROID_NDK=$NDK -+-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=$NINJA -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/prefab/$ABI/prefab -+-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/$ABI -+-GNinja -+-DANDROID_STL=c++_shared -+-DANDROID_TOOLCHAIN=clang -+-DREACT_NATIVE_MINOR_VERSION=79 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..8a2d1e2 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsctooling) -+add_library(ReactAndroid::jsctooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsctooling PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsctooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsi) -+add_library(ReactAndroid::jsi SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsi PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::reactnative) -+add_library(ReactAndroid::reactnative SHARED IMPORTED) -+set_target_properties(ReactAndroid::reactnative PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..edb6a35 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.2) -+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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..2c27475 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -new file mode 100644 -index 0000000..fdd188a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake -new file mode 100644 -index 0000000..75d49b1 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake -@@ -0,0 +1,9 @@ -+if(NOT TARGET hermes-engine::libhermes) -+add_library(hermes-engine::libhermes SHARED IMPORTED) -+set_target_properties(hermes-engine::libhermes PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/Release/5o5v6w66/obj/arm64-v8a/libhermes.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake -new file mode 100644 -index 0000000..edb6a35 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.2) -+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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -new file mode 100644 -index 0000000..2f26cf6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -@@ -0,0 +1,18 @@ -+if(NOT TARGET react-native-reanimated::reanimated) -+add_library(react-native-reanimated::reanimated SHARED IMPORTED) -+set_target_properties(react-native-reanimated::reanimated PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libreanimated.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/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 SHARED IMPORTED) -+set_target_properties(react-native-reanimated::worklets PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..754f2de ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsctooling) -+add_library(ReactAndroid::jsctooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsctooling PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsctooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsi) -+add_library(ReactAndroid::jsi SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsi PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::reactnative) -+add_library(ReactAndroid::reactnative SHARED IMPORTED) -+set_target_properties(ReactAndroid::reactnative PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..edb6a35 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.2) -+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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..614cb67 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -new file mode 100644 -index 0000000..fdd188a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake -new file mode 100644 -index 0000000..51f2f6a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake -@@ -0,0 +1,9 @@ -+if(NOT TARGET hermes-engine::libhermes) -+add_library(hermes-engine::libhermes SHARED IMPORTED) -+set_target_properties(hermes-engine::libhermes PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/Release/5o5v6w66/obj/x86/libhermes.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake -new file mode 100644 -index 0000000..edb6a35 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.2) -+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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -new file mode 100644 -index 0000000..2c7c57c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -@@ -0,0 +1,18 @@ -+if(NOT TARGET react-native-reanimated::reanimated) -+add_library(react-native-reanimated::reanimated SHARED IMPORTED) -+set_target_properties(react-native-reanimated::reanimated PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libreanimated.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/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 SHARED IMPORTED) -+set_target_properties(react-native-reanimated::worklets PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cache-v2-f3cd9b3656ddd70b6d0d.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cache-v2-f3cd9b3656ddd70b6d0d.json -new file mode 100644 -index 0000000..652d6c6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cache-v2-f3cd9b3656ddd70b6d0d.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/chris/Library/Android/sdk/ndk/27.0.12077973" -+ }, -+ { -+ "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_TOOLCHAIN", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "clang" -+ }, -+ { -+ "name" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/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/chris/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-Os -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-O2 -g -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Libraries linked by default with all C++ applications." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-latomic -lm" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER", -+ "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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "livemarkdown" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" -+ }, -+ { -+ "name" : "CMAKE_ROOT", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to CMake installation." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "fbjni_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for fbjni." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni" -+ }, -+ { -+ "name" : "livemarkdown_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86" -+ }, -+ { -+ "name" : "livemarkdown_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "livemarkdown_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "name" : "react-native-reanimated_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for react-native-reanimated." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cmakeFiles-v1-4fe74da1a125fd7343d8.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cmakeFiles-v1-4fe74da1a125fd7343d8.json -new file mode 100644 -index 0000000..d504cd1 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/cmakeFiles-v1-4fe74da1a125fd7343d8.json -@@ -0,0 +1,827 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/codemodel-v2-93411720cc0acde7758f.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/codemodel-v2-93411720cc0acde7758f.json -new file mode 100644 -index 0000000..71075bc ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/codemodel-v2-93411720cc0acde7758f.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" : "livemarkdown", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "livemarkdown::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-livemarkdown-Debug-3596ce2412ea78e0676f.json", -+ "name" : "livemarkdown", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/index-2025-06-24T10-59-29-0444.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/index-2025-06-24T10-59-29-0444.json -new file mode 100644 -index 0000000..09eda06 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/index-2025-06-24T10-59-29-0444.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/chris/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-93411720cc0acde7758f.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-f3cd9b3656ddd70b6d0d.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-4fe74da1a125fd7343d8.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-f3cd9b3656ddd70b6d0d.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-4fe74da1a125fd7343d8.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-93411720cc0acde7758f.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/target-livemarkdown-Debug-3596ce2412ea78e0676f.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/target-livemarkdown-Debug-3596ce2412ea78e0676f.json -new file mode 100644 -index 0000000..9cc9996 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/.cmake/api/v1/reply/target-livemarkdown-Debug-3596ce2412ea78e0676f.json -@@ -0,0 +1,213 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.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" : 16, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 24, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 7, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 0, -+ "line" : 18, -+ "parent" : 0 -+ } -+ ] -+ }, -+ "compileGroups" : -+ [ -+ { -+ "compileCommandFragments" : -+ [ -+ { -+ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-fvisibility=hidden" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-fexceptions" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-frtti" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "define" : "livemarkdown_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 4, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "backtrace" : 4, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ } -+ ], -+ "language" : "CXX", -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "livemarkdown::@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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "livemarkdown", -+ "nameOnDisk" : "liblivemarkdown.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "MarkdownParser.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "OnLoad.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeCache.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeCache.txt -new file mode 100644 -index 0000000..99a5b5a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeCache.txt -@@ -0,0 +1,416 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 -+# It was generated by CMake: /Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973 -+ -+//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_TOOLCHAIN:UNINITIALIZED=clang -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Flags used by the compiler during all build types. -+CMAKE_CXX_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_CXX_FLAGS_DEBUG:STRING= -+ -+//Flags used by the CXX compiler during MINSIZEREL builds. -+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG -+ -+//Flags used by the compiler during release builds. -+CMAKE_CXX_FLAGS_RELEASE:STRING= -+ -+//Flags used by the CXX compiler during RELWITHDEBINFO builds. -+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -+ -+//Libraries linked by default with all C++ applications. -+CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm -+ -+//LLVM archiver -+CMAKE_C_COMPILER_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld -+ -+//No help, variable specified on the command line. -+CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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=livemarkdown -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf -+ -+//No help, variable specified on the command line. -+CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake -+ -+//If this value is on, makefiles will be generated without the -+// .SILENT directive, and all commands will be echoed to the console -+// during the make. This is useful for debugging only. With Visual -+// Studio IDE projects all commands are done without /nologo. -+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid -+ -+//The directory containing a CMake configuration file for fbjni. -+fbjni_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni -+ -+//Value Computed by CMake -+livemarkdown_BINARY_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 -+ -+//Value Computed by CMake -+livemarkdown_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+livemarkdown_SOURCE_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+ -+//The directory containing a CMake configuration file for react-native-reanimated. -+react-native-reanimated_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated -+ -+ -+######################## -+# 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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/chris/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+//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/chris/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..ff82c4e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") -+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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..869e8e6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") -+set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -+set(CMAKE_CXX_COMPILER_WRAPPER "") -+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -+set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -+set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -+set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -+set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -+set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -+set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -+ -+set(CMAKE_CXX_PLATFORM_ID "Linux") -+set(CMAKE_CXX_SIMULATE_ID "") -+set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -+set(CMAKE_CXX_SIMULATE_VERSION "") -+ -+ -+ -+ -+set(CMAKE_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..678a329 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..95da3d7 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..512411c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-24.5.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "24.5.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") -+ -+include("/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..30ce72b -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..cdf3572 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeOutput.log b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..413d261 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,256 @@ -+The target system is: Android - 1 - i686 -+The host system is: Darwin - 24.5.0 - arm64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; -+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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_716a7 && [1/2] Building C object CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c -+clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking C executable cmTC_716a7 -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_716a7 && [1/2] Building C object CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] -+ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking C executable cmTC_716a7] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_716a7.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_716a7.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] -+ implicit objs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -+Detecting CXX compiler ABI info compiled with the following output: -+Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_ec79e && [1/2] Building CXX object CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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 CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -+clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking CXX executable cmTC_ec79e -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_ec79e /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_ec79e && [1/2] Building CXX object CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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 CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] -+ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking CXX executable cmTC_ec79e] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_ec79e /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_ec79e.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_ec79e] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_ec79e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/TargetDirectories.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..ff81c42 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/livemarkdown.dir -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/edit_cache.dir -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake -new file mode 100644 -index 0000000..b89d94a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake -@@ -0,0 +1,25 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by CMake Version 3.22 -+cmake_policy(SET CMP0009 NEW) -+ -+# ANDROID_SRC at CMakeLists.txt:13 (file) -+file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/*.cpp") -+set(OLD_GLOB -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs") -+endif() -+ -+# CPP_SRC at CMakeLists.txt:14 (file) -+file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/*.cpp") -+set(OLD_GLOB -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/MarkdownGlobal.cpp" -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/RuntimeDecorator.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs") -+endif() -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.check_cache b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs -new file mode 100644 -index 0000000..2b38fac ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs -@@ -0,0 +1 @@ -+# This file is generated by CMake for checking of the VerifyGlobs.cmake file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/rules.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..b8a5815 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/rules.ninja -@@ -0,0 +1,73 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by "Ninja" Generator, CMake Version 3.22 -+ -+# This file contains all the rules used to get the outputs files -+# built from the input files. -+# It is included in the main 'build.ninja'. -+ -+# ============================================================================= -+# Project: livemarkdown -+# Configurations: Debug -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__livemarkdown_Debug -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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__livemarkdown_Debug -+ command = $PRE_LINK && /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for re-checking globbed directories. -+ -+rule VERIFY_GLOBS -+ command = /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake -+ description = Re-checking globbed directories... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/chris/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/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/additional_project_files.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json -new file mode 100644 -index 0000000..f504fbd ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json -@@ -0,0 +1,43 @@ -+{ -+ "buildFiles": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "livemarkdown::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "x86", -+ "artifactName": "livemarkdown", -+ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so", -+ "runtimeFiles": [ -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" -+ } -+ }, -+ "cFileExtensions": [], -+ "cppFileExtensions": [ -+ "cpp" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build_mini.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build_mini.json -new file mode 100644 -index 0000000..ccf9c28 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build_mini.json -@@ -0,0 +1,32 @@ -+{ -+ "buildFiles": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "livemarkdown::@6890427a1f51a3e7e1df": { -+ "artifactName": "livemarkdown", -+ "abi": "x86", -+ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so", -+ "runtimeFiles": [ -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja -new file mode 100644 -index 0000000..26d8dd0 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja -@@ -0,0 +1,200 @@ -+# 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: livemarkdown -+# Configurations: Debug -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.8 -+ -+ -+############################################# -+# Set configuration variable for custom commands. -+ -+CONFIGURATION = Debug -+# ============================================================================= -+# Include auxiliary files. -+ -+ -+############################################# -+# Include rules file. -+ -+include CMakeFiles/rules.ninja -+ -+# ============================================================================= -+ -+############################################# -+# Logical path to working directory; prefix for absolute paths. -+ -+cmake_ninja_workdir = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target livemarkdown -+ -+ -+############################################# -+# Order-only phony target for livemarkdown -+ -+build cmake_object_order_depends_target_livemarkdown: phony || CMakeFiles/livemarkdown.dir -+ -+build CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/OnLoad.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/OnLoad.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o: CXX_COMPILER__livemarkdown_Debug /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target livemarkdown -+ -+ -+############################################# -+# Link the shared library /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so: CXX_SHARED_LIBRARY_LINKER__livemarkdown_Debug CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o | /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so -+ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = liblivemarkdown.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_FILE = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.pdb -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build liblivemarkdown.so: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so -+ -+build livemarkdown: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 -+ -+build all: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86/liblivemarkdown.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Phony target to force glob verification run. -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake_force: phony -+ -+ -+############################################# -+# Re-run CMake to check if globbed directories changed. -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake_force -+ pool = console -+ restat = 1 -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/cmake.verify_globs | /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build_file_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build_file_index.txt -new file mode 100644 -index 0000000..7611c5b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build_file_index.txt -@@ -0,0 +1 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/cmake_install.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/cmake_install.cmake -new file mode 100644 -index 0000000..19816b0 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+ -+# 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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json -new file mode 100644 -index 0000000..02ced45 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json -@@ -0,0 +1,22 @@ -+[ -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json.bin -new file mode 100644 -index 0000000..658edb2 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/configure_fingerprint.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/configure_fingerprint.bin -new file mode 100644 -index 0000000..4bb5fed ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/configure_fingerprint.bin -@@ -0,0 +1,34 @@ -+C/C++ Structured Log¡ -+ž -+›/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/additional_project_files.txtC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  öŠöú2  ¨˜ßŒú2ž -+› -+˜/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json  öŠöú2Ë ¨˜ßŒú2£ -+  -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build_mini.json  öŠöú2§ ª˜ßŒú2 -+ -+Š/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja  öŠöú2ã ›˜ßŒú2” -+‘ -+Ž/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build.ninja.txt  öŠöú2™ -+– -+“/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/build_file_index.txt  öŠöú2‚ ª˜ßŒú2š -+— -+”/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json  öŠöú2”9 š˜ßŒú2ž -+› -+˜/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/compile_commands.json.bin  öŠöú2 ã š˜ßŒú2¤ -+¡ -+ž/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/metadata_generation_command.txt  öŠöú2 -+Ï ª˜ßŒú2— -+” -+‘/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/prefab_config.json  öŠöú2 è ª˜ßŒú2œ -+™ -+–/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/symbol_folder_index.txt  öŠöú2 • ª˜ßŒú2ˆ -+… -+‚/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt  öŠöú2 š øÝÒ‹ú2É -+Æ -+Ã/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  öŠöú2à -+À -+½/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  öŠöú2Ñ -+Î -+Ë/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json  öŠöú2 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/metadata_generation_command.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/metadata_generation_command.txt -new file mode 100644 -index 0000000..34402f7 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/metadata_generation_command.txt -@@ -0,0 +1,22 @@ -+ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+-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/chris/Library/Android/sdk/ndk/27.0.12077973 -+-DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 -+-DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 -+-DCMAKE_BUILD_TYPE=Debug -+-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab -+-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 -+-GNinja -+-DANDROID_STL=c++_shared -+-DANDROID_TOOLCHAIN=clang -+-DREACT_NATIVE_MINOR_VERSION=79 -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/prefab_config.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/prefab_config.json -new file mode 100644 -index 0000000..e62cf5f ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/prefab_config.json -@@ -0,0 +1,10 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/symbol_folder_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/symbol_folder_index.txt -new file mode 100644 -index 0000000..8aa8912 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/hash_key.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/hash_key.txt -new file mode 100644 -index 0000000..f02597c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/hash_key.txt -@@ -0,0 +1,29 @@ -+# 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.0.12077973. -+# - $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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+-DCMAKE_SYSTEM_NAME=Android -+-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -+-DCMAKE_SYSTEM_VERSION=24 -+-DANDROID_PLATFORM=android-24 -+-DANDROID_ABI=$ABI -+-DCMAKE_ANDROID_ARCH_ABI=$ABI -+-DANDROID_NDK=$NDK -+-DCMAKE_ANDROID_NDK=$NDK -+-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=$NINJA -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/$HASH/obj/$ABI -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/$HASH/obj/$ABI -+-DCMAKE_BUILD_TYPE=RelWithDebInfo -+-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/$HASH/prefab/$ABI/prefab -+-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/$HASH/$ABI -+-GNinja -+-DANDROID_STL=c++_shared -+-DANDROID_TOOLCHAIN=clang -+-DREACT_NATIVE_MINOR_VERSION=79 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake -new file mode 100644 -index 0000000..88968da ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libhermestooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsctooling) -+add_library(ReactAndroid::jsctooling SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsctooling PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsctooling.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::jsi) -+add_library(ReactAndroid::jsi SHARED IMPORTED) -+set_target_properties(ReactAndroid::jsi PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -+if(NOT TARGET ReactAndroid::reactnative) -+add_library(ReactAndroid::reactnative SHARED IMPORTED) -+set_target_properties(ReactAndroid::reactnative PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -new file mode 100644 -index 0000000..edb6a35 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.2) -+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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake -new file mode 100644 -index 0000000..614cb67 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake -new file mode 100644 -index 0000000..fdd188a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake -new file mode 100644 -index 0000000..fba12c5 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake -@@ -0,0 +1,9 @@ -+if(NOT TARGET hermes-engine::libhermes) -+add_library(hermes-engine::libhermes SHARED IMPORTED) -+set_target_properties(hermes-engine::libhermes PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/MinSizeRel/2r4v3745/obj/x86/libhermes.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake -new file mode 100644 -index 0000000..edb6a35 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake -@@ -0,0 +1,9 @@ -+set(PACKAGE_VERSION 0.79.2) -+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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -new file mode 100644 -index 0000000..623511b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake -@@ -0,0 +1,18 @@ -+if(NOT TARGET react-native-reanimated::reanimated) -+add_library(react-native-reanimated::reanimated SHARED IMPORTED) -+set_target_properties(react-native-reanimated::reanimated PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libreanimated.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/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 SHARED IMPORTED) -+set_target_properties(react-native-reanimated::worklets PROPERTIES -+ IMPORTED_LOCATION "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so" -+ INTERFACE_INCLUDE_DIRECTORIES "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ INTERFACE_LINK_LIBRARIES "" -+) -+endif() -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/cache-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/query/client-agp/codemodel-v2 -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cache-v2-d3cb32865ad7c9d74f26.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cache-v2-d3cb32865ad7c9d74f26.json -new file mode 100644 -index 0000000..d901c3a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cache-v2-d3cb32865ad7c9d74f26.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/chris/Library/Android/sdk/ndk/27.0.12077973" -+ }, -+ { -+ "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_TOOLCHAIN", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "No help, variable specified on the command line." -+ } -+ ], -+ "type" : "UNINITIALIZED", -+ "value" : "clang" -+ }, -+ { -+ "name" : "CMAKE_ADDR2LINE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973" -+ }, -+ { -+ "name" : "CMAKE_AR", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Archiver" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "RelWithDebInfo" -+ }, -+ { -+ "name" : "CMAKE_CACHEFILE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "This is the directory where this CMakeCache.txt was created" -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/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/chris/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during all build types." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_DEBUG", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during debug builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-Os -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELEASE", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the compiler during release builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "" -+ }, -+ { -+ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-O2 -g -DNDEBUG" -+ }, -+ { -+ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Libraries linked by default with all C++ applications." -+ } -+ ], -+ "type" : "STRING", -+ "value" : "-latomic -lm" -+ }, -+ { -+ "name" : "CMAKE_C_COMPILER", -+ "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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86" -+ }, -+ { -+ "name" : "CMAKE_LINKER", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to a program." -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "livemarkdown" -+ }, -+ { -+ "name" : "CMAKE_RANLIB", -+ "properties" : -+ [ -+ { -+ "name" : "ADVANCED", -+ "value" : "1" -+ }, -+ { -+ "name" : "HELPSTRING", -+ "value" : "Ranlib" -+ } -+ ], -+ "type" : "FILEPATH", -+ "value" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" -+ }, -+ { -+ "name" : "CMAKE_ROOT", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Path to CMake installation." -+ } -+ ], -+ "type" : "INTERNAL", -+ "value" : "/Users/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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" : "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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid" -+ }, -+ { -+ "name" : "fbjni_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for fbjni." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni" -+ }, -+ { -+ "name" : "livemarkdown_BINARY_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86" -+ }, -+ { -+ "name" : "livemarkdown_IS_TOP_LEVEL", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "ON" -+ }, -+ { -+ "name" : "livemarkdown_SOURCE_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "Value Computed by CMake" -+ } -+ ], -+ "type" : "STATIC", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "name" : "react-native-reanimated_DIR", -+ "properties" : -+ [ -+ { -+ "name" : "HELPSTRING", -+ "value" : "The directory containing a CMake configuration file for react-native-reanimated." -+ } -+ ], -+ "type" : "PATH", -+ "value" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated" -+ } -+ ], -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cmakeFiles-v1-2b023688470c10ef111f.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cmakeFiles-v1-2b023688470c10ef111f.json -new file mode 100644 -index 0000000..c5bf9d9 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/cmakeFiles-v1-2b023688470c10ef111f.json -@@ -0,0 +1,827 @@ -+{ -+ "inputs" : -+ [ -+ { -+ "path" : "CMakeLists.txt" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" -+ }, -+ { -+ "isCMake" : true, -+ "isExternal" : true, -+ "path" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" -+ }, -+ { -+ "isGenerated" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake" -+ }, -+ { -+ "isExternal" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake" -+ } -+ ], -+ "kind" : "cmakeFiles", -+ "paths" : -+ { -+ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/codemodel-v2-156a56d881ebdac7d539.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/codemodel-v2-156a56d881ebdac7d539.json -new file mode 100644 -index 0000000..46d3a11 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/codemodel-v2-156a56d881ebdac7d539.json -@@ -0,0 +1,60 @@ -+{ -+ "configurations" : -+ [ -+ { -+ "directories" : -+ [ -+ { -+ "build" : ".", -+ "jsonFile" : "directory-.-RelWithDebInfo-f5ebdc15457944623624.json", -+ "minimumCMakeVersion" : -+ { -+ "string" : "3.13" -+ }, -+ "projectIndex" : 0, -+ "source" : ".", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "name" : "RelWithDebInfo", -+ "projects" : -+ [ -+ { -+ "directoryIndexes" : -+ [ -+ 0 -+ ], -+ "name" : "livemarkdown", -+ "targetIndexes" : -+ [ -+ 0 -+ ] -+ } -+ ], -+ "targets" : -+ [ -+ { -+ "directoryIndex" : 0, -+ "id" : "livemarkdown::@6890427a1f51a3e7e1df", -+ "jsonFile" : "target-livemarkdown-RelWithDebInfo-89411de6aa8497870c90.json", -+ "name" : "livemarkdown", -+ "projectIndex" : 0 -+ } -+ ] -+ } -+ ], -+ "kind" : "codemodel", -+ "paths" : -+ { -+ "build" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "source" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json -new file mode 100644 -index 0000000..3a67af9 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/directory-.-RelWithDebInfo-f5ebdc15457944623624.json -@@ -0,0 +1,14 @@ -+{ -+ "backtraceGraph" : -+ { -+ "commands" : [], -+ "files" : [], -+ "nodes" : [] -+ }, -+ "installers" : [], -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/index-2025-06-24T12-22-12-0028.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/index-2025-06-24T12-22-12-0028.json -new file mode 100644 -index 0000000..27bb29c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/index-2025-06-24T12-22-12-0028.json -@@ -0,0 +1,92 @@ -+{ -+ "cmake" : -+ { -+ "generator" : -+ { -+ "multiConfig" : false, -+ "name" : "Ninja" -+ }, -+ "paths" : -+ { -+ "cmake" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cpack" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack", -+ "ctest" : "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ctest", -+ "root" : "/Users/chris/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-156a56d881ebdac7d539.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ }, -+ { -+ "jsonFile" : "cache-v2-d3cb32865ad7c9d74f26.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ { -+ "jsonFile" : "cmakeFiles-v1-2b023688470c10ef111f.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ } -+ ], -+ "reply" : -+ { -+ "client-agp" : -+ { -+ "cache-v2" : -+ { -+ "jsonFile" : "cache-v2-d3cb32865ad7c9d74f26.json", -+ "kind" : "cache", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 0 -+ } -+ }, -+ "cmakeFiles-v1" : -+ { -+ "jsonFile" : "cmakeFiles-v1-2b023688470c10ef111f.json", -+ "kind" : "cmakeFiles", -+ "version" : -+ { -+ "major" : 1, -+ "minor" : 0 -+ } -+ }, -+ "codemodel-v2" : -+ { -+ "jsonFile" : "codemodel-v2-156a56d881ebdac7d539.json", -+ "kind" : "codemodel", -+ "version" : -+ { -+ "major" : 2, -+ "minor" : 3 -+ } -+ } -+ } -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/target-livemarkdown-RelWithDebInfo-89411de6aa8497870c90.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/target-livemarkdown-RelWithDebInfo-89411de6aa8497870c90.json -new file mode 100644 -index 0000000..eba8813 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/.cmake/api/v1/reply/target-livemarkdown-RelWithDebInfo-89411de6aa8497870c90.json -@@ -0,0 +1,213 @@ -+{ -+ "artifacts" : -+ [ -+ { -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.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" : 16, -+ "parent" : 0 -+ }, -+ { -+ "command" : 1, -+ "file" : 0, -+ "line" : 24, -+ "parent" : 0 -+ }, -+ { -+ "command" : 2, -+ "file" : 0, -+ "line" : 7, -+ "parent" : 0 -+ }, -+ { -+ "command" : 3, -+ "file" : 0, -+ "line" : 18, -+ "parent" : 0 -+ } -+ ] -+ }, -+ "compileGroups" : -+ [ -+ { -+ "compileCommandFragments" : -+ [ -+ { -+ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-fvisibility=hidden" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-fexceptions" -+ }, -+ { -+ "backtrace" : 3, -+ "fragment" : "-frtti" -+ } -+ ], -+ "defines" : -+ [ -+ { -+ "define" : "livemarkdown_EXPORTS" -+ } -+ ], -+ "includes" : -+ [ -+ { -+ "backtrace" : 4, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp" -+ }, -+ { -+ "backtrace" : 4, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative" -+ }, -+ { -+ "backtrace" : 2, -+ "isSystem" : true, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets" -+ } -+ ], -+ "language" : "CXX", -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3 -+ ], -+ "sysroot" : -+ { -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ } -+ ], -+ "id" : "livemarkdown::@6890427a1f51a3e7e1df", -+ "link" : -+ { -+ "commandFragments" : -+ [ -+ { -+ "fragment" : "-Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections", -+ "role" : "flags" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so", -+ "role" : "libraries" -+ }, -+ { -+ "backtrace" : 2, -+ "fragment" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so", -+ "role" : "libraries" -+ }, -+ { -+ "fragment" : "-latomic -lm", -+ "role" : "libraries" -+ } -+ ], -+ "language" : "CXX", -+ "sysroot" : -+ { -+ "path" : "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" -+ } -+ }, -+ "name" : "livemarkdown", -+ "nameOnDisk" : "liblivemarkdown.so", -+ "paths" : -+ { -+ "build" : ".", -+ "source" : "." -+ }, -+ "sourceGroups" : -+ [ -+ { -+ "name" : "Source Files", -+ "sourceIndexes" : -+ [ -+ 0, -+ 1, -+ 2, -+ 3 -+ ] -+ } -+ ], -+ "sources" : -+ [ -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "MarkdownParser.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "OnLoad.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "sourceGroupIndex" : 0 -+ }, -+ { -+ "backtrace" : 1, -+ "compileGroupIndex" : 0, -+ "path" : "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "sourceGroupIndex" : 0 -+ } -+ ], -+ "type" : "SHARED_LIBRARY" -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeCache.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeCache.txt -new file mode 100644 -index 0000000..49ae651 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeCache.txt -@@ -0,0 +1,416 @@ -+# This is the CMakeCache file. -+# For build in directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 -+# It was generated by CMake: /Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973 -+ -+//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_TOOLCHAIN:UNINITIALIZED=clang -+ -+//Path to a program. -+CMAKE_ADDR2LINE:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973 -+ -+//Archiver -+CMAKE_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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=RelWithDebInfo -+ -+//LLVM archiver -+CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Flags used by the compiler during all build types. -+CMAKE_CXX_FLAGS:STRING= -+ -+//Flags used by the compiler during debug builds. -+CMAKE_CXX_FLAGS_DEBUG:STRING= -+ -+//Flags used by the CXX compiler during MINSIZEREL builds. -+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG -+ -+//Flags used by the compiler during release builds. -+CMAKE_CXX_FLAGS_RELEASE:STRING= -+ -+//Flags used by the CXX compiler during RELWITHDEBINFO builds. -+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -+ -+//Libraries linked by default with all C++ applications. -+CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm -+ -+//LLVM archiver -+CMAKE_C_COMPILER_AR:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar -+ -+//Generate index for LLVM archive -+CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 -+ -+//Path to a program. -+CMAKE_LINKER:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld -+ -+//No help, variable specified on the command line. -+CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/chris/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm -+ -+//Path to a program. -+CMAKE_OBJCOPY:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy -+ -+//Path to a program. -+CMAKE_OBJDUMP:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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=livemarkdown -+ -+//Ranlib -+CMAKE_RANLIB:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib -+ -+//Path to a program. -+CMAKE_READELF:FILEPATH=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf -+ -+//No help, variable specified on the command line. -+CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake -+ -+//If this value is on, makefiles will be generated without the -+// .SILENT directive, and all commands will be echoed to the console -+// during the make. This is useful for debugging only. With Visual -+// Studio IDE projects all commands are done without /nologo. -+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE -+ -+//No help, variable specified on the command line. -+REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=79 -+ -+//The directory containing a CMake configuration file for ReactAndroid. -+ReactAndroid_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid -+ -+//The directory containing a CMake configuration file for fbjni. -+fbjni_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni -+ -+//Value Computed by CMake -+livemarkdown_BINARY_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 -+ -+//Value Computed by CMake -+livemarkdown_IS_TOP_LEVEL:STATIC=ON -+ -+//Value Computed by CMake -+livemarkdown_SOURCE_DIR:STATIC=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+ -+//The directory containing a CMake configuration file for react-native-reanimated. -+react-native-reanimated_DIR:PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated -+ -+ -+######################## -+# 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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -+//Path to cpack program executable. -+CMAKE_CPACK_COMMAND:INTERNAL=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cpack -+//Path to ctest program executable. -+CMAKE_CTEST_COMMAND:INTERNAL=/Users/chris/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/chris/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+//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/chris/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -new file mode 100644 -index 0000000..ff82c4e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake -@@ -0,0 +1,72 @@ -+set(CMAKE_C_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") -+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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_C_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_C_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -new file mode 100644 -index 0000000..869e8e6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake -@@ -0,0 +1,83 @@ -+set(CMAKE_CXX_COMPILER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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.1") -+set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -+set(CMAKE_CXX_COMPILER_WRAPPER "") -+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -+set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -+set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -+set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -+set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -+set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -+set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -+ -+set(CMAKE_CXX_PLATFORM_ID "Linux") -+set(CMAKE_CXX_SIMULATE_ID "") -+set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -+set(CMAKE_CXX_SIMULATE_VERSION "") -+ -+ -+ -+ -+set(CMAKE_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_CXX_COMPILER_AR "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") -+set(CMAKE_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_CXX_COMPILER_RANLIB "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") -+set(CMAKE_LINKER "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") -+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin -new file mode 100755 -index 0000000..be6e9da -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin -new file mode 100755 -index 0000000..720dae3 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -new file mode 100644 -index 0000000..512411c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake -@@ -0,0 +1,15 @@ -+set(CMAKE_HOST_SYSTEM "Darwin-24.5.0") -+set(CMAKE_HOST_SYSTEM_NAME "Darwin") -+set(CMAKE_HOST_SYSTEM_VERSION "24.5.0") -+set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") -+ -+include("/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c -new file mode 100644 -index 0000000..41b99d7 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o -new file mode 100644 -index 0000000..34fd0ba -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp -new file mode 100644 -index 0000000..25c62a8 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o -new file mode 100644 -index 0000000..0205464 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeOutput.log b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeOutput.log -new file mode 100644 -index 0000000..929a2ef ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeOutput.log -@@ -0,0 +1,256 @@ -+The target system is: Android - 1 - i686 -+The host system is: Darwin - 24.5.0 - arm64 -+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -+Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" -+ -+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -+Compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; -+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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" -+ -+Detecting C compiler ABI info compiled with the following output: -+Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c12e6 && [1/2] Building C object CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c -+clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking C executable cmTC_c12e6 -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c12e6 && [1/2] Building C object CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6.dir/CMakeCCompilerABI.c.o -x c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] -+ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking C executable cmTC_c12e6] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c12e6.dir/CMakeCCompilerABI.c.o /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_c12e6.dir/CMakeCCompilerABI.c.o] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] -+ implicit objs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -+Detecting CXX compiler ABI info compiled with the following output: -+Change Dir: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -+ -+Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_de043 && [1/2] Building CXX object CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ (in-process) -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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 CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -+clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0 -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" -+ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" -+#include "..." search starts here: -+#include <...> search starts here: -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -+ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -+End of search list. -+[2/2] Linking CXX executable cmTC_de043 -+Android (12027248, +pgo, -bolt, +lto, -mlgo, based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) -+Target: i686-none-linux-android24 -+Thread model: posix -+InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin -+ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_de043 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ add: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ end of search list found -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ collapse include dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ implicit include dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp] -+ ignore line: [] -+ ignore line: [Run Build Command(s):/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_de043 && [1/2] Building CXX object CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ ignore line: [ (in-process)] -+ ignore line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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 CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu i686 -target-feature +ssse3 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/CMakeTmp -resource-dir /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] -+ ignore line: [clang -cc1 version 18.0.1 based upon LLVM 18.0.1 default target x86_64-apple-darwin24.5.0] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] -+ ignore line: [ignoring nonexistent directory "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] -+ ignore line: [#include "..." search starts here:] -+ ignore line: [#include <...> search starts here:] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/i686-linux-android] -+ ignore line: [ /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] -+ ignore line: [End of search list.] -+ ignore line: [[2/2] Linking CXX executable cmTC_de043] -+ ignore line: [Android (12027248 +pgo -bolt +lto -mlgo based on r522817) clang version 18.0.1 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] -+ ignore line: [Target: i686-none-linux-android24] -+ ignore line: [Thread model: posix] -+ ignore line: [InstalledDir: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin] -+ link line: [ "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_de043 /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24 -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android -L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_de043.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl -lc /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a -l:libunwind.a -ldl /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore -+ arg [--sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_de043] ==> ignore -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ arg [-L/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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_de043.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore -+ arg [-lc++] ==> lib [c++] -+ arg [-lm] ==> lib [m] -+ arg [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] ==> lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] ==> obj [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ remove lib [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-i686-android.a] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android] -+ collapse library dir [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtbegin_dynamic.o;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24/crtend_android.o] -+ implicit dirs: [/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/i386;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/24;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android;/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] -+ implicit fwks: [] -+ -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/TargetDirectories.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/TargetDirectories.txt -new file mode 100644 -index 0000000..218013e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/TargetDirectories.txt -@@ -0,0 +1,3 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/livemarkdown.dir -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/edit_cache.dir -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/rebuild_cache.dir -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake -new file mode 100644 -index 0000000..ac5d028 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake -@@ -0,0 +1,25 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by CMake Version 3.22 -+cmake_policy(SET CMP0009 NEW) -+ -+# ANDROID_SRC at CMakeLists.txt:13 (file) -+file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/*.cpp") -+set(OLD_GLOB -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs") -+endif() -+ -+# CPP_SRC at CMakeLists.txt:14 (file) -+file(GLOB NEW_GLOB LIST_DIRECTORIES true "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/*.cpp") -+set(OLD_GLOB -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/MarkdownGlobal.cpp" -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp/RuntimeDecorator.cpp" -+ ) -+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") -+ message("-- GLOB mismatch!") -+ file(TOUCH_NOCREATE "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs") -+endif() -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.check_cache b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.check_cache -new file mode 100644 -index 0000000..3dccd73 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs -new file mode 100644 -index 0000000..2b38fac ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs -@@ -0,0 +1 @@ -+# This file is generated by CMake for checking of the VerifyGlobs.cmake file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/rules.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/rules.ninja -new file mode 100644 -index 0000000..dfab7db ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/rules.ninja -@@ -0,0 +1,73 @@ -+# CMAKE generated file: DO NOT EDIT! -+# Generated by "Ninja" Generator, CMake Version 3.22 -+ -+# This file contains all the rules used to get the outputs files -+# built from the input files. -+# It is included in the main 'build.ninja'. -+ -+# ============================================================================= -+# Project: livemarkdown -+# Configurations: RelWithDebInfo -+# ============================================================================= -+# ============================================================================= -+ -+############################################# -+# Rule for compiling CXX files. -+ -+rule CXX_COMPILER__livemarkdown_RelWithDebInfo -+ depfile = $DEP_FILE -+ deps = gcc -+ command = /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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__livemarkdown_RelWithDebInfo -+ command = $PRE_LINK && /Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 -+ description = Re-running CMake... -+ generator = 1 -+ -+ -+############################################# -+# Rule for re-checking globbed directories. -+ -+rule VERIFY_GLOBS -+ command = /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake -+ description = Re-checking globbed directories... -+ generator = 1 -+ -+ -+############################################# -+# Rule for cleaning all built files. -+ -+rule CLEAN -+ command = /Users/chris/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/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets -+ description = All primary targets available: -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/additional_project_files.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/additional_project_files.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json -new file mode 100644 -index 0000000..268fc2c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json -@@ -0,0 +1,43 @@ -+{ -+ "buildFiles": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "livemarkdown::@6890427a1f51a3e7e1df": { -+ "toolchain": "toolchain", -+ "abi": "x86", -+ "artifactName": "livemarkdown", -+ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so", -+ "runtimeFiles": [ -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so" -+ ] -+ } -+ }, -+ "toolchains": { -+ "toolchain": { -+ "cCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", -+ "cppCompilerExecutable": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" -+ } -+ }, -+ "cFileExtensions": [], -+ "cppFileExtensions": [ -+ "cpp" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build_mini.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build_mini.json -new file mode 100644 -index 0000000..774d0c5 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build_mini.json -@@ -0,0 +1,32 @@ -+{ -+ "buildFiles": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt" -+ ], -+ "cleanCommandsComponents": [ -+ [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "clean" -+ ] -+ ], -+ "buildTargetsCommandComponents": [ -+ "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-C", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "{LIST_OF_TARGETS_TO_BUILD}" -+ ], -+ "libraries": { -+ "livemarkdown::@6890427a1f51a3e7e1df": { -+ "artifactName": "livemarkdown", -+ "abi": "x86", -+ "output": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so", -+ "runtimeFiles": [ -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so" -+ ] -+ } -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja -new file mode 100644 -index 0000000..06bc969 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja -@@ -0,0 +1,200 @@ -+# 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: livemarkdown -+# Configurations: RelWithDebInfo -+# ============================================================================= -+ -+############################################# -+# Minimal version of Ninja required by this file -+ -+ninja_required_version = 1.8 -+ -+ -+############################################# -+# Set configuration variable for custom commands. -+ -+CONFIGURATION = RelWithDebInfo -+# ============================================================================= -+# Include auxiliary files. -+ -+ -+############################################# -+# Include rules file. -+ -+include CMakeFiles/rules.ninja -+ -+# ============================================================================= -+ -+############################################# -+# Logical path to working directory; prefix for absolute paths. -+ -+cmake_ninja_workdir = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/ -+# ============================================================================= -+# Object build statements for SHARED_LIBRARY target livemarkdown -+ -+ -+############################################# -+# Order-only phony target for livemarkdown -+ -+build cmake_object_order_depends_target_livemarkdown: phony || CMakeFiles/livemarkdown.dir -+ -+build CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o: CXX_COMPILER__livemarkdown_RelWithDebInfo /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/OnLoad.cpp.o: CXX_COMPILER__livemarkdown_RelWithDebInfo /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/OnLoad.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o: CXX_COMPILER__livemarkdown_RelWithDebInfo /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb -+ -+build CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o: CXX_COMPILER__livemarkdown_RelWithDebInfo /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp || cmake_object_order_depends_target_livemarkdown -+ DEFINES = -Dlivemarkdown_EXPORTS -+ DEP_FILE = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o.d -+ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -+ INCLUDES = -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ OBJECT_FILE_DIR = CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb -+ -+ -+# ============================================================================= -+# Link build statements for SHARED_LIBRARY target livemarkdown -+ -+ -+############################################# -+# Link the shared library /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so: CXX_SHARED_LIBRARY_LINKER__livemarkdown_RelWithDebInfo CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o | /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so -+ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -+ LINK_FLAGS = -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,--gc-sections -+ LINK_LIBRARIES = /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86/libfbjni.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so -latomic -lm -+ OBJECT_DIR = CMakeFiles/livemarkdown.dir -+ POST_BUILD = : -+ PRE_LINK = : -+ SONAME = liblivemarkdown.so -+ SONAME_FLAG = -Wl,-soname, -+ TARGET_COMPILE_PDB = CMakeFiles/livemarkdown.dir/ -+ TARGET_FILE = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so -+ TARGET_PDB = /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.pdb -+ -+ -+############################################# -+# Utility command for edit_cache -+ -+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND -+ COMMAND = cd /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 && /Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 -+ DESC = Running CMake to regenerate build system... -+ pool = console -+ restat = 1 -+ -+build rebuild_cache: phony CMakeFiles/rebuild_cache.util -+ -+# ============================================================================= -+# Target aliases. -+ -+build liblivemarkdown.so: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so -+ -+build livemarkdown: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so -+ -+# ============================================================================= -+# Folder targets. -+ -+# ============================================================================= -+ -+############################################# -+# Folder: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 -+ -+build all: phony /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86/liblivemarkdown.so -+ -+# ============================================================================= -+# Built-in targets -+ -+ -+############################################# -+# Phony target to force glob verification run. -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake_force: phony -+ -+ -+############################################# -+# Re-run CMake to check if globbed directories changed. -+ -+build /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake_force -+ pool = console -+ restat = 1 -+ -+ -+############################################# -+# Re-run CMake if any of its inputs changed. -+ -+build build.ninja: RERUN_CMAKE /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/cmake.verify_globs | /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/chris/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/abis.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android-legacy.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/flags.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Clang.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Determine.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android-Initialize.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Android.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/platforms.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfig.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab/lib/i686-linux-android/cmake/react-native-reanimated/react-native-reanimatedConfigVersion.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/CMakeFiles/VerifyGlobs.cmake /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt 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/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build_file_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build_file_index.txt -new file mode 100644 -index 0000000..7611c5b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build_file_index.txt -@@ -0,0 +1 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/cmake_install.cmake b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/cmake_install.cmake -new file mode 100644 -index 0000000..ac85925 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/cmake_install.cmake -@@ -0,0 +1,54 @@ -+# Install script for directory: /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+ -+# 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 "RelWithDebInfo") -+ 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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/${CMAKE_INSTALL_MANIFEST}" -+ "${CMAKE_INSTALL_MANIFEST_CONTENT}") -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json -new file mode 100644 -index 0000000..b49950e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json -@@ -0,0 +1,22 @@ -+[ -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json.bin -new file mode 100644 -index 0000000..7dca004 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json.bin differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/configure_fingerprint.bin b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/configure_fingerprint.bin -new file mode 100644 -index 0000000..5f41588 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/configure_fingerprint.bin -@@ -0,0 +1,34 @@ -+C/C++ Structured Logª -+§ -+¤/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/additional_project_files.txtC -+A -+?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ئšú2  ЊŽú2§ -+¤ -+¡/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json  ئšú2 ÒŠŽú2¬ -+© -+¦/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build_mini.json  ئšú2Ý âŠŽú2™ -+– -+“/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja  ئšú2„Æ °ŠŽú2 -+š -+—/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build.ninja.txt  ئšú2¢ -+Ÿ -+œ/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/build_file_index.txt  ئšú2‚ 抎ú2£ -+  -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json  Ù¦šú2œ9 °ŠŽú2§ -+¤ -+¡/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/compile_commands.json.bin  Ù¦šú2 î °ŠŽú2­ -+ª -+§/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/metadata_generation_command.txt  Ù¦šú2 -+ü 抎ú2  -+ -+š/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/prefab_config.json  Ù¦šú2 î 抎ú2¥ -+¢ -+Ÿ/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/symbol_folder_index.txt  Ù¦šú2 ž 抎ú2ˆ -+… -+‚/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt  Ù¦šú2 š øÝÒ‹ú2Í -+Ê -+Ç/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json  Ù¦šú2Ç -+Ä -+Á/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json  Ù¦šú2Õ -+Ò -+Ï/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json  Ù¦šú2 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/metadata_generation_command.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/metadata_generation_command.txt -new file mode 100644 -index 0000000..d11732a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/metadata_generation_command.txt -@@ -0,0 +1,22 @@ -+ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -+-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/chris/Library/Android/sdk/ndk/27.0.12077973 -+-DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 -+-DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake -+-DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja -+-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 -+-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 -+-DCMAKE_BUILD_TYPE=RelWithDebInfo -+-DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab -+-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 -+-GNinja -+-DANDROID_STL=c++_shared -+-DANDROID_TOOLCHAIN=clang -+-DREACT_NATIVE_MINOR_VERSION=79 -+ Build command args: [] -+ Version: 2 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/prefab_config.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/prefab_config.json -new file mode 100644 -index 0000000..39e2266 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/prefab_config.json -@@ -0,0 +1,10 @@ -+{ -+ "enabled": true, -+ "prefabPath": "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", -+ "packages": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/release/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/release/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/symbol_folder_index.txt b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/symbol_folder_index.txt -new file mode 100644 -index 0000000..83b3ee8 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/symbol_folder_index.txt -@@ -0,0 +1 @@ -+/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/arm64-v8a/compile_commands.json -new file mode 100644 -index 0000000..4b99466 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/arm64-v8a/compile_commands.json -@@ -0,0 +1,22 @@ -+[ -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/x86/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/x86/compile_commands.json -new file mode 100644 -index 0000000..02ced45 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/debug/x86/compile_commands.json -@@ -0,0 +1,22 @@ -+[ -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -fno-limit-debug-info -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/release/x86/compile_commands.json b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/release/x86/compile_commands.json -new file mode 100644 -index 0000000..b49950e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/.cxx/tools/release/x86/compile_commands.json -@@ -0,0 +1,22 @@ -+[ -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/MarkdownParser.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/MarkdownParser.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/OnLoad.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/OnLoad.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/MarkdownGlobal.cpp" -+}, -+{ -+ "directory": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "command": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=i686-none-linux-android24 --sysroot=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dlivemarkdown_EXPORTS -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp -I/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/../../../../cpp -isystem /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative -isystem /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=79 -O2 -g -DNDEBUG -fPIC -fvisibility=hidden -fexceptions -frtti -o CMakeFiles/livemarkdown.dir/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp.o -c /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp", -+ "file": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/cpp/RuntimeDecorator.cpp" -+} -+] -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build.gradle b/node_modules/@expensify/react-native-live-markdown/android/build.gradle -index 01824d2..a425124 100644 ---- a/node_modules/@expensify/react-native-live-markdown/android/build.gradle -+++ b/node_modules/@expensify/react-native-live-markdown/android/build.gradle -@@ -93,7 +93,8 @@ android { - cmake { - arguments "-DANDROID_STL=c++_shared", - "-DANDROID_TOOLCHAIN=clang", -- "-DREACT_NATIVE_MINOR_VERSION=${REACT_NATIVE_MINOR_VERSION}" -+ "-DREACT_NATIVE_MINOR_VERSION=${REACT_NATIVE_MINOR_VERSION}", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" - abiFilters (*reactNativeArchitectures()) - } - } -@@ -162,6 +163,10 @@ android { - "**/libreact_render*.so", - "**/librrc_root.so", - ] -+ -+ jniLibs { -+ useLegacyPackaging true -+ } - } - } - -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/results.bin b/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/results.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/results.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/transformed/classes/classes_dex/classes.dex b/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/transformed/classes/classes_dex/classes.dex -new file mode 100644 -index 0000000..c5db45d -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/.transforms/b7e6a1cae9e23057ed6f75b02b60dca7/transformed/classes/classes_dex/classes.dex differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/buildConfig/debug/com/expensify/livemarkdown/BuildConfig.java b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/buildConfig/debug/com/expensify/livemarkdown/BuildConfig.java -new file mode 100644 -index 0000000..cbc40c5 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/buildConfig/debug/com/expensify/livemarkdown/BuildConfig.java -@@ -0,0 +1,12 @@ -+/** -+ * Automatically generated file. DO NOT MODIFY -+ */ -+package com.expensify.livemarkdown; -+ -+public final class BuildConfig { -+ public static final boolean DEBUG = Boolean.parseBoolean("true"); -+ public static final String LIBRARY_PACKAGE_NAME = "com.expensify.livemarkdown"; -+ public static final String BUILD_TYPE = "debug"; -+ // Field from default config. -+ public static final int REACT_NATIVE_MINOR_VERSION = 79; -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.java b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.java -new file mode 100644 -index 0000000..19fea08 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.java -@@ -0,0 +1,37 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleJavaSpec.js -+ * -+ * @nolint -+ */ -+ -+package com.expensify.livemarkdown; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+import com.facebook.react.bridge.ReactApplicationContext; -+import com.facebook.react.bridge.ReactContextBaseJavaModule; -+import com.facebook.react.bridge.ReactMethod; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+ -+public abstract class NativeLiveMarkdownModuleSpec extends ReactContextBaseJavaModule implements TurboModule { -+ public static final String NAME = "LiveMarkdownModule"; -+ -+ public NativeLiveMarkdownModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod(isBlockingSynchronousMethod = true) -+ @DoNotStrip -+ public abstract boolean install(); -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.java b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.java -new file mode 100644 -index 0000000..3870cb7 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.java -@@ -0,0 +1,36 @@ -+/** -+* 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.ReadableMap; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class MarkdownTextInputDecoratorViewManagerDelegate & MarkdownTextInputDecoratorViewManagerInterface> extends BaseViewManagerDelegate { -+ public MarkdownTextInputDecoratorViewManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "markdownStyle": -+ mViewManager.setMarkdownStyle(view, (ReadableMap) value); -+ break; -+ case "parserId": -+ mViewManager.setParserId(view, value == null ? 0 : ((Double) value).intValue()); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.java b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.java -new file mode 100644 -index 0000000..f9496f9 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.java -@@ -0,0 +1,20 @@ -+/** -+* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+* -+* Do not edit this file as changes may cause incorrect behavior and will be lost -+* once the code is regenerated. -+* -+* @generated by codegen project: GeneratePropsJavaInterface.js -+*/ -+ -+package com.facebook.react.viewmanagers; -+ -+import android.view.View; -+import androidx.annotation.Nullable; -+import com.facebook.react.bridge.ReadableMap; -+import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; -+ -+public interface MarkdownTextInputDecoratorViewManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setMarkdownStyle(T view, @Nullable ReadableMap value); -+ void setParserId(T view, int value); -+} -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/CMakeLists.txt -new file mode 100644 -index 0000000..418bb30 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/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/RNLiveMarkdownSpec/*.cpp) -+ -+add_library( -+ react_codegen_RNLiveMarkdownSpec -+ OBJECT -+ ${react_codegen_SRCS} -+) -+ -+target_include_directories(react_codegen_RNLiveMarkdownSpec PUBLIC . react/renderer/components/RNLiveMarkdownSpec) -+ -+target_link_libraries( -+ react_codegen_RNLiveMarkdownSpec -+ 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_RNLiveMarkdownSpec -+ PRIVATE -+ -DLOG_TAG=\"ReactNative\" -+ -fexceptions -+ -frtti -+ -std=c++20 -+ -Wall -+) -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec-generated.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec-generated.cpp -new file mode 100644 -index 0000000..60adc7c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec-generated.cpp -@@ -0,0 +1,32 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleJniCpp.js -+ */ -+ -+#include "RNLiveMarkdownSpec.h" -+ -+namespace facebook::react { -+ -+static facebook::jsi::Value __hostFunction_NativeLiveMarkdownModuleSpecJSI_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); -+} -+ -+NativeLiveMarkdownModuleSpecJSI::NativeLiveMarkdownModuleSpecJSI(const JavaTurboModule::InitParams ¶ms) -+ : JavaTurboModule(params) { -+ methodMap_["install"] = MethodMetadata {0, __hostFunction_NativeLiveMarkdownModuleSpecJSI_install}; -+} -+ -+std::shared_ptr RNLiveMarkdownSpec_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { -+ if (moduleName == "LiveMarkdownModule") { -+ return std::make_shared(params); -+ } -+ return nullptr; -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec.h -new file mode 100644 -index 0000000..9f4c74b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/RNLiveMarkdownSpec.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 'NativeLiveMarkdownModule' -+ */ -+class JSI_EXPORT NativeLiveMarkdownModuleSpecJSI : public JavaTurboModule { -+public: -+ NativeLiveMarkdownModuleSpecJSI(const JavaTurboModule::InitParams ¶ms); -+}; -+ -+ -+JSI_EXPORT -+std::shared_ptr RNLiveMarkdownSpec_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.cpp -new file mode 100644 -index 0000000..0ecddda ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.cpp -@@ -0,0 +1,22 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateComponentDescriptorCpp.js -+ */ -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+void RNLiveMarkdownSpec_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry) { -+ -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.h -new file mode 100644 -index 0000000..f37f98f ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ComponentDescriptors.h -@@ -0,0 +1,24 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateComponentDescriptorH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ -+void RNLiveMarkdownSpec_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry); -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.cpp -new file mode 100644 -index 0000000..c1a75b6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.cpp -@@ -0,0 +1,16 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateEventEmitterCpp.js -+ */ -+ -+#include -+ -+ -+namespace facebook::react { -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.h -new file mode 100644 -index 0000000..cc1635f ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/EventEmitters.h -@@ -0,0 +1,23 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateEventEmitterH.js -+ */ -+#pragma once -+ -+#include -+ -+ -+namespace facebook::react { -+class MarkdownTextInputDecoratorViewEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ -+ -+}; -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.cpp -new file mode 100644 -index 0000000..eaef28b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.cpp -@@ -0,0 +1,26 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GeneratePropsCpp.js -+ */ -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+MarkdownTextInputDecoratorViewProps::MarkdownTextInputDecoratorViewProps( -+ const PropsParserContext &context, -+ const MarkdownTextInputDecoratorViewProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ markdownStyle(convertRawProp(context, rawProps, "markdownStyle", sourceProps.markdownStyle, {})), -+ parserId(convertRawProp(context, rawProps, "parserId", sourceProps.parserId, {0})) -+ {} -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.h -new file mode 100644 -index 0000000..a168620 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/Props.h -@@ -0,0 +1,477 @@ -+ -+/** -+ * 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 -+#include -+ -+namespace facebook::react { -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct { -+ SharedColor color{}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_color = map.find("color"); -+ if (tmp_color != map.end()) { -+ fromRawValue(context, tmp_color->second, result.color); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct { -+ Float fontSize{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_fontSize = map.find("fontSize"); -+ if (tmp_fontSize != map.end()) { -+ fromRawValue(context, tmp_fontSize->second, result.fontSize); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct { -+ SharedColor color{}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_color = map.find("color"); -+ if (tmp_color != map.end()) { -+ fromRawValue(context, tmp_color->second, result.color); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleH1Struct { -+ Float fontSize{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleH1Struct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_fontSize = map.find("fontSize"); -+ if (tmp_fontSize != map.end()) { -+ fromRawValue(context, tmp_fontSize->second, result.fontSize); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleH1Struct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleH1Struct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct { -+ SharedColor borderColor{}; -+ Float borderWidth{0.0}; -+ Float marginLeft{0.0}; -+ Float paddingLeft{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_borderColor = map.find("borderColor"); -+ if (tmp_borderColor != map.end()) { -+ fromRawValue(context, tmp_borderColor->second, result.borderColor); -+ } -+ auto tmp_borderWidth = map.find("borderWidth"); -+ if (tmp_borderWidth != map.end()) { -+ fromRawValue(context, tmp_borderWidth->second, result.borderWidth); -+ } -+ auto tmp_marginLeft = map.find("marginLeft"); -+ if (tmp_marginLeft != map.end()) { -+ fromRawValue(context, tmp_marginLeft->second, result.marginLeft); -+ } -+ auto tmp_paddingLeft = map.find("paddingLeft"); -+ if (tmp_paddingLeft != map.end()) { -+ fromRawValue(context, tmp_paddingLeft->second, result.paddingLeft); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct { -+ std::string fontFamily{}; -+ Float fontSize{0.0}; -+ SharedColor color{}; -+ SharedColor backgroundColor{}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_fontFamily = map.find("fontFamily"); -+ if (tmp_fontFamily != map.end()) { -+ fromRawValue(context, tmp_fontFamily->second, result.fontFamily); -+ } -+ auto tmp_fontSize = map.find("fontSize"); -+ if (tmp_fontSize != map.end()) { -+ fromRawValue(context, tmp_fontSize->second, result.fontSize); -+ } -+ auto tmp_color = map.find("color"); -+ if (tmp_color != map.end()) { -+ fromRawValue(context, tmp_color->second, result.color); -+ } -+ auto tmp_backgroundColor = map.find("backgroundColor"); -+ if (tmp_backgroundColor != map.end()) { -+ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStylePreStruct { -+ std::string fontFamily{}; -+ Float fontSize{0.0}; -+ SharedColor color{}; -+ SharedColor backgroundColor{}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStylePreStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_fontFamily = map.find("fontFamily"); -+ if (tmp_fontFamily != map.end()) { -+ fromRawValue(context, tmp_fontFamily->second, result.fontFamily); -+ } -+ auto tmp_fontSize = map.find("fontSize"); -+ if (tmp_fontSize != map.end()) { -+ fromRawValue(context, tmp_fontSize->second, result.fontSize); -+ } -+ auto tmp_color = map.find("color"); -+ if (tmp_color != map.end()) { -+ fromRawValue(context, tmp_color->second, result.color); -+ } -+ auto tmp_backgroundColor = map.find("backgroundColor"); -+ if (tmp_backgroundColor != map.end()) { -+ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStylePreStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStylePreStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct { -+ SharedColor color{}; -+ SharedColor backgroundColor{}; -+ Float borderRadius{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_color = map.find("color"); -+ if (tmp_color != map.end()) { -+ fromRawValue(context, tmp_color->second, result.color); -+ } -+ auto tmp_backgroundColor = map.find("backgroundColor"); -+ if (tmp_backgroundColor != map.end()) { -+ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); -+ } -+ auto tmp_borderRadius = map.find("borderRadius"); -+ if (tmp_borderRadius != map.end()) { -+ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct { -+ SharedColor color{}; -+ SharedColor backgroundColor{}; -+ Float borderRadius{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_color = map.find("color"); -+ if (tmp_color != map.end()) { -+ fromRawValue(context, tmp_color->second, result.color); -+ } -+ auto tmp_backgroundColor = map.find("backgroundColor"); -+ if (tmp_backgroundColor != map.end()) { -+ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); -+ } -+ auto tmp_borderRadius = map.find("borderRadius"); -+ if (tmp_borderRadius != map.end()) { -+ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct { -+ SharedColor color{}; -+ SharedColor backgroundColor{}; -+ Float borderRadius{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_color = map.find("color"); -+ if (tmp_color != map.end()) { -+ fromRawValue(context, tmp_color->second, result.color); -+ } -+ auto tmp_backgroundColor = map.find("backgroundColor"); -+ if (tmp_backgroundColor != map.end()) { -+ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); -+ } -+ auto tmp_borderRadius = map.find("borderRadius"); -+ if (tmp_borderRadius != map.end()) { -+ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct { -+ Float minWidth{0.0}; -+ Float minHeight{0.0}; -+ Float maxWidth{0.0}; -+ Float maxHeight{0.0}; -+ Float marginTop{0.0}; -+ Float marginBottom{0.0}; -+ Float borderRadius{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_minWidth = map.find("minWidth"); -+ if (tmp_minWidth != map.end()) { -+ fromRawValue(context, tmp_minWidth->second, result.minWidth); -+ } -+ auto tmp_minHeight = map.find("minHeight"); -+ if (tmp_minHeight != map.end()) { -+ fromRawValue(context, tmp_minHeight->second, result.minHeight); -+ } -+ auto tmp_maxWidth = map.find("maxWidth"); -+ if (tmp_maxWidth != map.end()) { -+ fromRawValue(context, tmp_maxWidth->second, result.maxWidth); -+ } -+ auto tmp_maxHeight = map.find("maxHeight"); -+ if (tmp_maxHeight != map.end()) { -+ fromRawValue(context, tmp_maxHeight->second, result.maxHeight); -+ } -+ auto tmp_marginTop = map.find("marginTop"); -+ if (tmp_marginTop != map.end()) { -+ fromRawValue(context, tmp_marginTop->second, result.marginTop); -+ } -+ auto tmp_marginBottom = map.find("marginBottom"); -+ if (tmp_marginBottom != map.end()) { -+ fromRawValue(context, tmp_marginBottom->second, result.marginBottom); -+ } -+ auto tmp_borderRadius = map.find("borderRadius"); -+ if (tmp_borderRadius != map.end()) { -+ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct { -+ SharedColor backgroundColor{}; -+ Float borderWidth{0.0}; -+ SharedColor borderColor{}; -+ Float borderRadius{0.0}; -+ Float width{0.0}; -+ Float height{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_backgroundColor = map.find("backgroundColor"); -+ if (tmp_backgroundColor != map.end()) { -+ fromRawValue(context, tmp_backgroundColor->second, result.backgroundColor); -+ } -+ auto tmp_borderWidth = map.find("borderWidth"); -+ if (tmp_borderWidth != map.end()) { -+ fromRawValue(context, tmp_borderWidth->second, result.borderWidth); -+ } -+ auto tmp_borderColor = map.find("borderColor"); -+ if (tmp_borderColor != map.end()) { -+ fromRawValue(context, tmp_borderColor->second, result.borderColor); -+ } -+ auto tmp_borderRadius = map.find("borderRadius"); -+ if (tmp_borderRadius != map.end()) { -+ fromRawValue(context, tmp_borderRadius->second, result.borderRadius); -+ } -+ auto tmp_width = map.find("width"); -+ if (tmp_width != map.end()) { -+ fromRawValue(context, tmp_width->second, result.width); -+ } -+ auto tmp_height = map.find("height"); -+ if (tmp_height != map.end()) { -+ fromRawValue(context, tmp_height->second, result.height); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct { -+ SharedColor primaryColor{}; -+ SharedColor secondaryColor{}; -+ Float width{0.0}; -+ Float height{0.0}; -+ Float borderWidth{0.0}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_primaryColor = map.find("primaryColor"); -+ if (tmp_primaryColor != map.end()) { -+ fromRawValue(context, tmp_primaryColor->second, result.primaryColor); -+ } -+ auto tmp_secondaryColor = map.find("secondaryColor"); -+ if (tmp_secondaryColor != map.end()) { -+ fromRawValue(context, tmp_secondaryColor->second, result.secondaryColor); -+ } -+ auto tmp_width = map.find("width"); -+ if (tmp_width != map.end()) { -+ fromRawValue(context, tmp_width->second, result.width); -+ } -+ auto tmp_height = map.find("height"); -+ if (tmp_height != map.end()) { -+ fromRawValue(context, tmp_height->second, result.height); -+ } -+ auto tmp_borderWidth = map.find("borderWidth"); -+ if (tmp_borderWidth != map.end()) { -+ fromRawValue(context, tmp_borderWidth->second, result.borderWidth); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct]"; -+} -+ -+struct MarkdownTextInputDecoratorViewMarkdownStyleStruct { -+ MarkdownTextInputDecoratorViewMarkdownStyleSyntaxStruct syntax{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleEmojiStruct emoji{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleLinkStruct link{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleH1Struct h1{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleBlockquoteStruct blockquote{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleCodeStruct code{}; -+ MarkdownTextInputDecoratorViewMarkdownStylePreStruct pre{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleMentionHereStruct mentionHere{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleMentionUserStruct mentionUser{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleMentionReportStruct mentionReport{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleInlineImageStruct inlineImage{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorContainerStruct loadingIndicatorContainer{}; -+ MarkdownTextInputDecoratorViewMarkdownStyleLoadingIndicatorStruct loadingIndicator{}; -+}; -+ -+static inline void fromRawValue(const PropsParserContext& context, const RawValue &value, MarkdownTextInputDecoratorViewMarkdownStyleStruct &result) { -+ auto map = (std::unordered_map)value; -+ -+ auto tmp_syntax = map.find("syntax"); -+ if (tmp_syntax != map.end()) { -+ fromRawValue(context, tmp_syntax->second, result.syntax); -+ } -+ auto tmp_emoji = map.find("emoji"); -+ if (tmp_emoji != map.end()) { -+ fromRawValue(context, tmp_emoji->second, result.emoji); -+ } -+ auto tmp_link = map.find("link"); -+ if (tmp_link != map.end()) { -+ fromRawValue(context, tmp_link->second, result.link); -+ } -+ auto tmp_h1 = map.find("h1"); -+ if (tmp_h1 != map.end()) { -+ fromRawValue(context, tmp_h1->second, result.h1); -+ } -+ auto tmp_blockquote = map.find("blockquote"); -+ if (tmp_blockquote != map.end()) { -+ fromRawValue(context, tmp_blockquote->second, result.blockquote); -+ } -+ auto tmp_code = map.find("code"); -+ if (tmp_code != map.end()) { -+ fromRawValue(context, tmp_code->second, result.code); -+ } -+ auto tmp_pre = map.find("pre"); -+ if (tmp_pre != map.end()) { -+ fromRawValue(context, tmp_pre->second, result.pre); -+ } -+ auto tmp_mentionHere = map.find("mentionHere"); -+ if (tmp_mentionHere != map.end()) { -+ fromRawValue(context, tmp_mentionHere->second, result.mentionHere); -+ } -+ auto tmp_mentionUser = map.find("mentionUser"); -+ if (tmp_mentionUser != map.end()) { -+ fromRawValue(context, tmp_mentionUser->second, result.mentionUser); -+ } -+ auto tmp_mentionReport = map.find("mentionReport"); -+ if (tmp_mentionReport != map.end()) { -+ fromRawValue(context, tmp_mentionReport->second, result.mentionReport); -+ } -+ auto tmp_inlineImage = map.find("inlineImage"); -+ if (tmp_inlineImage != map.end()) { -+ fromRawValue(context, tmp_inlineImage->second, result.inlineImage); -+ } -+ auto tmp_loadingIndicatorContainer = map.find("loadingIndicatorContainer"); -+ if (tmp_loadingIndicatorContainer != map.end()) { -+ fromRawValue(context, tmp_loadingIndicatorContainer->second, result.loadingIndicatorContainer); -+ } -+ auto tmp_loadingIndicator = map.find("loadingIndicator"); -+ if (tmp_loadingIndicator != map.end()) { -+ fromRawValue(context, tmp_loadingIndicator->second, result.loadingIndicator); -+ } -+} -+ -+static inline std::string toString(const MarkdownTextInputDecoratorViewMarkdownStyleStruct &value) { -+ return "[Object MarkdownTextInputDecoratorViewMarkdownStyleStruct]"; -+} -+class MarkdownTextInputDecoratorViewProps final : public ViewProps { -+ public: -+ MarkdownTextInputDecoratorViewProps() = default; -+ MarkdownTextInputDecoratorViewProps(const PropsParserContext& context, const MarkdownTextInputDecoratorViewProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ MarkdownTextInputDecoratorViewMarkdownStyleStruct markdownStyle{}; -+ int parserId{0}; -+}; -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI-generated.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI-generated.cpp -new file mode 100644 -index 0000000..f9b0646 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI-generated.cpp -@@ -0,0 +1,26 @@ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleCpp.js -+ */ -+ -+#include "RNLiveMarkdownSpecJSI.h" -+ -+namespace facebook::react { -+ -+static jsi::Value __hostFunction_NativeLiveMarkdownModuleCxxSpecJSI_install(jsi::Runtime &rt, TurboModule &turboModule, const jsi::Value* args, size_t count) { -+ return static_cast(&turboModule)->install( -+ rt -+ ); -+} -+ -+NativeLiveMarkdownModuleCxxSpecJSI::NativeLiveMarkdownModuleCxxSpecJSI(std::shared_ptr jsInvoker) -+ : TurboModule("LiveMarkdownModule", jsInvoker) { -+ methodMap_["install"] = MethodMetadata {0, __hostFunction_NativeLiveMarkdownModuleCxxSpecJSI_install}; -+} -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI.h -new file mode 100644 -index 0000000..138fddf ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/RNLiveMarkdownSpecJSI.h -@@ -0,0 +1,71 @@ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ class JSI_EXPORT NativeLiveMarkdownModuleCxxSpecJSI : public TurboModule { -+protected: -+ NativeLiveMarkdownModuleCxxSpecJSI(std::shared_ptr jsInvoker); -+ -+public: -+ virtual bool install(jsi::Runtime &rt) = 0; -+ -+}; -+ -+template -+class JSI_EXPORT NativeLiveMarkdownModuleCxxSpec : 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 = "LiveMarkdownModule"; -+ -+protected: -+ NativeLiveMarkdownModuleCxxSpec(std::shared_ptr jsInvoker) -+ : TurboModule(std::string{NativeLiveMarkdownModuleCxxSpec::kModuleName}, jsInvoker), -+ delegate_(reinterpret_cast(this), jsInvoker) {} -+ -+ -+private: -+ class Delegate : public NativeLiveMarkdownModuleCxxSpecJSI { -+ public: -+ Delegate(T *instance, std::shared_ptr jsInvoker) : -+ NativeLiveMarkdownModuleCxxSpecJSI(std::move(jsInvoker)), instance_(instance) { -+ -+ } -+ -+ 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_); -+ } -+ -+ private: -+ friend class NativeLiveMarkdownModuleCxxSpec; -+ T *instance_; -+ }; -+ -+ Delegate delegate_; -+}; -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.cpp -new file mode 100644 -index 0000000..8381875 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.cpp -@@ -0,0 +1,17 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateShadowNodeCpp.js -+ */ -+ -+#include -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.h -new file mode 100644 -index 0000000..bf7077d ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/ShadowNodes.h -@@ -0,0 +1,23 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateShadowNodeH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.cpp b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.cpp -new file mode 100644 -index 0000000..0142182 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/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/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.h b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.h -new file mode 100644 -index 0000000..c011ed8 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/jni/react/renderer/components/RNLiveMarkdownSpec/States.h -@@ -0,0 +1,19 @@ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateStateH.js -+ */ -+#pragma once -+ -+#ifdef ANDROID -+#include -+#endif -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/schema.json b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/schema.json -new file mode 100644 -index 0000000..eaf006e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/generated/source/codegen/schema.json -@@ -0,0 +1 @@ -+{"modules":{"MarkdownTextInputDecoratorView":{"type":"Component","components":{"MarkdownTextInputDecoratorView":{"interfaceOnly":true,"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"markdownStyle","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"syntax","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}}]}},{"name":"emoji","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"fontSize","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"link","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}}]}},{"name":"h1","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"fontSize","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"blockquote","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"borderColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderWidth","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"marginLeft","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"paddingLeft","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"code","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"fontFamily","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"fontSize","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}}]}},{"name":"pre","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"fontFamily","optional":false,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"fontSize","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}}]}},{"name":"mentionHere","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderRadius","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"mentionUser","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderRadius","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"mentionReport","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"color","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"backgroundColor","optional":false,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderRadius","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"inlineImage","optional":false,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"minWidth","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"minHeight","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"maxWidth","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"maxHeight","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"marginTop","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"marginBottom","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"borderRadius","optional":false,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"loadingIndicatorContainer","optional":true,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"backgroundColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderWidth","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"borderColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"borderRadius","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"width","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"height","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}},{"name":"loadingIndicator","optional":true,"typeAnnotation":{"type":"ObjectTypeAnnotation","properties":[{"name":"primaryColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"secondaryColor","optional":true,"typeAnnotation":{"type":"ReservedPropTypeAnnotation","name":"ColorPrimitive"}},{"name":"width","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"height","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"borderWidth","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}}]}}]}},{"name":"parserId","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}}],"commands":[]}}},"NativeLiveMarkdownModule":{"type":"NativeModule","aliasMap":{},"enumMap":{},"spec":{"eventEmitters":[],"methods":[{"name":"install","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","returnTypeAnnotation":{"type":"BooleanTypeAnnotation"},"params":[]}}]},"moduleName":"LiveMarkdownModule"}}} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -new file mode 100644 -index 0000000..647d884 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json -new file mode 100644 -index 0000000..054fe6b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/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.expensify.livemarkdown", -+ "variantName": "debug", -+ "elements": [ -+ { -+ "type": "SINGLE", -+ "filters": [], -+ "attributes": [], -+ "outputFile": "AndroidManifest.xml" -+ } -+ ], -+ "elementType": "File" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties -new file mode 100644 -index 0000000..1211b1e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -new file mode 100644 -index 0000000..9e26dfe ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -@@ -0,0 +1 @@ -+{} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar -new file mode 100644 -index 0000000..19b00ac -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar -new file mode 100644 -index 0000000..8cdb310 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -new file mode 100644 -index 0000000..36643ab ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -@@ -0,0 +1,1996 @@ -+int anim abc_fade_in 0x0 -+int anim abc_fade_out 0x0 -+int anim abc_grow_fade_in_from_bottom 0x0 -+int anim abc_popup_enter 0x0 -+int anim abc_popup_exit 0x0 -+int anim abc_shrink_fade_out_from_bottom 0x0 -+int anim abc_slide_in_bottom 0x0 -+int anim abc_slide_in_top 0x0 -+int anim abc_slide_out_bottom 0x0 -+int anim abc_slide_out_top 0x0 -+int anim abc_tooltip_enter 0x0 -+int anim abc_tooltip_exit 0x0 -+int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 -+int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 -+int anim btn_checkbox_to_checked_icon_null_animation 0x0 -+int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 -+int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 -+int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 -+int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 -+int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 -+int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 -+int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 -+int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 -+int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 -+int anim catalyst_fade_in 0x0 -+int anim catalyst_fade_out 0x0 -+int anim catalyst_push_up_in 0x0 -+int anim catalyst_push_up_out 0x0 -+int anim catalyst_slide_down 0x0 -+int anim catalyst_slide_up 0x0 -+int anim fragment_fast_out_extra_slow_in 0x0 -+int animator fragment_close_enter 0x0 -+int animator fragment_close_exit 0x0 -+int animator fragment_fade_enter 0x0 -+int animator fragment_fade_exit 0x0 -+int animator fragment_open_enter 0x0 -+int animator fragment_open_exit 0x0 -+int attr actionBarDivider 0x0 -+int attr actionBarItemBackground 0x0 -+int attr actionBarPopupTheme 0x0 -+int attr actionBarSize 0x0 -+int attr actionBarSplitStyle 0x0 -+int attr actionBarStyle 0x0 -+int attr actionBarTabBarStyle 0x0 -+int attr actionBarTabStyle 0x0 -+int attr actionBarTabTextStyle 0x0 -+int attr actionBarTheme 0x0 -+int attr actionBarWidgetTheme 0x0 -+int attr actionButtonStyle 0x0 -+int attr actionDropDownStyle 0x0 -+int attr actionLayout 0x0 -+int attr actionMenuTextAppearance 0x0 -+int attr actionMenuTextColor 0x0 -+int attr actionModeBackground 0x0 -+int attr actionModeCloseButtonStyle 0x0 -+int attr actionModeCloseContentDescription 0x0 -+int attr actionModeCloseDrawable 0x0 -+int attr actionModeCopyDrawable 0x0 -+int attr actionModeCutDrawable 0x0 -+int attr actionModeFindDrawable 0x0 -+int attr actionModePasteDrawable 0x0 -+int attr actionModePopupWindowStyle 0x0 -+int attr actionModeSelectAllDrawable 0x0 -+int attr actionModeShareDrawable 0x0 -+int attr actionModeSplitBackground 0x0 -+int attr actionModeStyle 0x0 -+int attr actionModeTheme 0x0 -+int attr actionModeWebSearchDrawable 0x0 -+int attr actionOverflowButtonStyle 0x0 -+int attr actionOverflowMenuStyle 0x0 -+int attr actionProviderClass 0x0 -+int attr actionViewClass 0x0 -+int attr activityChooserViewStyle 0x0 -+int attr actualImageResource 0x0 -+int attr actualImageScaleType 0x0 -+int attr actualImageUri 0x0 -+int attr alertDialogButtonGroupStyle 0x0 -+int attr alertDialogCenterButtons 0x0 -+int attr alertDialogStyle 0x0 -+int attr alertDialogTheme 0x0 -+int attr allowStacking 0x0 -+int attr alpha 0x0 -+int attr alphabeticModifiers 0x0 -+int attr arrowHeadLength 0x0 -+int attr arrowShaftLength 0x0 -+int attr autoCompleteTextViewStyle 0x0 -+int attr autoSizeMaxTextSize 0x0 -+int attr autoSizeMinTextSize 0x0 -+int attr autoSizePresetSizes 0x0 -+int attr autoSizeStepGranularity 0x0 -+int attr autoSizeTextType 0x0 -+int attr autofillInlineSuggestionChip 0x0 -+int attr autofillInlineSuggestionEndIconStyle 0x0 -+int attr autofillInlineSuggestionStartIconStyle 0x0 -+int attr autofillInlineSuggestionSubtitle 0x0 -+int attr autofillInlineSuggestionTitle 0x0 -+int attr background 0x0 -+int attr backgroundImage 0x0 -+int attr backgroundSplit 0x0 -+int attr backgroundStacked 0x0 -+int attr backgroundTint 0x0 -+int attr backgroundTintMode 0x0 -+int attr barLength 0x0 -+int attr borderlessButtonStyle 0x0 -+int attr buttonBarButtonStyle 0x0 -+int attr buttonBarNegativeButtonStyle 0x0 -+int attr buttonBarNeutralButtonStyle 0x0 -+int attr buttonBarPositiveButtonStyle 0x0 -+int attr buttonBarStyle 0x0 -+int attr buttonCompat 0x0 -+int attr buttonGravity 0x0 -+int attr buttonIconDimen 0x0 -+int attr buttonPanelSideLayout 0x0 -+int attr buttonStyle 0x0 -+int attr buttonStyleSmall 0x0 -+int attr buttonTint 0x0 -+int attr buttonTintMode 0x0 -+int attr checkMarkCompat 0x0 -+int attr checkMarkTint 0x0 -+int attr checkMarkTintMode 0x0 -+int attr checkboxStyle 0x0 -+int attr checkedTextViewStyle 0x0 -+int attr closeIcon 0x0 -+int attr closeItemLayout 0x0 -+int attr collapseContentDescription 0x0 -+int attr collapseIcon 0x0 -+int attr color 0x0 -+int attr colorAccent 0x0 -+int attr colorBackgroundFloating 0x0 -+int attr colorButtonNormal 0x0 -+int attr colorControlActivated 0x0 -+int attr colorControlHighlight 0x0 -+int attr colorControlNormal 0x0 -+int attr colorError 0x0 -+int attr colorPrimary 0x0 -+int attr colorPrimaryDark 0x0 -+int attr colorSwitchThumbNormal 0x0 -+int attr commitIcon 0x0 -+int attr contentDescription 0x0 -+int attr contentInsetEnd 0x0 -+int attr contentInsetEndWithActions 0x0 -+int attr contentInsetLeft 0x0 -+int attr contentInsetRight 0x0 -+int attr contentInsetStart 0x0 -+int attr contentInsetStartWithNavigation 0x0 -+int attr controlBackground 0x0 -+int attr customNavigationLayout 0x0 -+int attr defaultQueryHint 0x0 -+int attr dialogCornerRadius 0x0 -+int attr dialogPreferredPadding 0x0 -+int attr dialogTheme 0x0 -+int attr displayOptions 0x0 -+int attr divider 0x0 -+int attr dividerHorizontal 0x0 -+int attr dividerPadding 0x0 -+int attr dividerVertical 0x0 -+int attr drawableBottomCompat 0x0 -+int attr drawableEndCompat 0x0 -+int attr drawableLeftCompat 0x0 -+int attr drawableRightCompat 0x0 -+int attr drawableSize 0x0 -+int attr drawableStartCompat 0x0 -+int attr drawableTint 0x0 -+int attr drawableTintMode 0x0 -+int attr drawableTopCompat 0x0 -+int attr drawerArrowStyle 0x0 -+int attr dropDownListViewStyle 0x0 -+int attr dropdownListPreferredItemHeight 0x0 -+int attr editTextBackground 0x0 -+int attr editTextColor 0x0 -+int attr editTextStyle 0x0 -+int attr elevation 0x0 -+int attr emojiCompatEnabled 0x0 -+int attr expandActivityOverflowButtonDrawable 0x0 -+int attr fadeDuration 0x0 -+int attr failureImage 0x0 -+int attr failureImageScaleType 0x0 -+int attr firstBaselineToTopHeight 0x0 -+int attr font 0x0 -+int attr fontFamily 0x0 -+int attr fontProviderAuthority 0x0 -+int attr fontProviderCerts 0x0 -+int attr fontProviderFetchStrategy 0x0 -+int attr fontProviderFetchTimeout 0x0 -+int attr fontProviderPackage 0x0 -+int attr fontProviderQuery 0x0 -+int attr fontProviderSystemFontFamily 0x0 -+int attr fontStyle 0x0 -+int attr fontVariationSettings 0x0 -+int attr fontWeight 0x0 -+int attr gapBetweenBars 0x0 -+int attr goIcon 0x0 -+int attr height 0x0 -+int attr hideOnContentScroll 0x0 -+int attr homeAsUpIndicator 0x0 -+int attr homeLayout 0x0 -+int attr icon 0x0 -+int attr iconTint 0x0 -+int attr iconTintMode 0x0 -+int attr iconifiedByDefault 0x0 -+int attr imageButtonStyle 0x0 -+int attr indeterminateProgressStyle 0x0 -+int attr initialActivityCount 0x0 -+int attr isAutofillInlineSuggestionTheme 0x0 -+int attr isLightTheme 0x0 -+int attr itemPadding 0x0 -+int attr lStar 0x0 -+int attr lastBaselineToBottomHeight 0x0 -+int attr layout 0x0 -+int attr lineHeight 0x0 -+int attr listChoiceBackgroundIndicator 0x0 -+int attr listChoiceIndicatorMultipleAnimated 0x0 -+int attr listChoiceIndicatorSingleAnimated 0x0 -+int attr listDividerAlertDialog 0x0 -+int attr listItemLayout 0x0 -+int attr listLayout 0x0 -+int attr listMenuViewStyle 0x0 -+int attr listPopupWindowStyle 0x0 -+int attr listPreferredItemHeight 0x0 -+int attr listPreferredItemHeightLarge 0x0 -+int attr listPreferredItemHeightSmall 0x0 -+int attr listPreferredItemPaddingEnd 0x0 -+int attr listPreferredItemPaddingLeft 0x0 -+int attr listPreferredItemPaddingRight 0x0 -+int attr listPreferredItemPaddingStart 0x0 -+int attr logo 0x0 -+int attr logoDescription 0x0 -+int attr maxButtonHeight 0x0 -+int attr measureWithLargestChild 0x0 -+int attr menu 0x0 -+int attr multiChoiceItemLayout 0x0 -+int attr navigationContentDescription 0x0 -+int attr navigationIcon 0x0 -+int attr navigationMode 0x0 -+int attr nestedScrollViewStyle 0x0 -+int attr numericModifiers 0x0 -+int attr overlapAnchor 0x0 -+int attr overlayImage 0x0 -+int attr paddingBottomNoButtons 0x0 -+int attr paddingEnd 0x0 -+int attr paddingStart 0x0 -+int attr paddingTopNoTitle 0x0 -+int attr panelBackground 0x0 -+int attr panelMenuListTheme 0x0 -+int attr panelMenuListWidth 0x0 -+int attr placeholderImage 0x0 -+int attr placeholderImageScaleType 0x0 -+int attr popupMenuStyle 0x0 -+int attr popupTheme 0x0 -+int attr popupWindowStyle 0x0 -+int attr preserveIconSpacing 0x0 -+int attr pressedStateOverlayImage 0x0 -+int attr progressBarAutoRotateInterval 0x0 -+int attr progressBarImage 0x0 -+int attr progressBarImageScaleType 0x0 -+int attr progressBarPadding 0x0 -+int attr progressBarStyle 0x0 -+int attr queryBackground 0x0 -+int attr queryHint 0x0 -+int attr queryPatterns 0x0 -+int attr radioButtonStyle 0x0 -+int attr ratingBarStyle 0x0 -+int attr ratingBarStyleIndicator 0x0 -+int attr ratingBarStyleSmall 0x0 -+int attr retryImage 0x0 -+int attr retryImageScaleType 0x0 -+int attr roundAsCircle 0x0 -+int attr roundBottomEnd 0x0 -+int attr roundBottomLeft 0x0 -+int attr roundBottomRight 0x0 -+int attr roundBottomStart 0x0 -+int attr roundTopEnd 0x0 -+int attr roundTopLeft 0x0 -+int attr roundTopRight 0x0 -+int attr roundTopStart 0x0 -+int attr roundWithOverlayColor 0x0 -+int attr roundedCornerRadius 0x0 -+int attr roundingBorderColor 0x0 -+int attr roundingBorderPadding 0x0 -+int attr roundingBorderWidth 0x0 -+int attr searchHintIcon 0x0 -+int attr searchIcon 0x0 -+int attr searchViewStyle 0x0 -+int attr seekBarStyle 0x0 -+int attr selectableItemBackground 0x0 -+int attr selectableItemBackgroundBorderless 0x0 -+int attr shortcutMatchRequired 0x0 -+int attr showAsAction 0x0 -+int attr showDividers 0x0 -+int attr showText 0x0 -+int attr showTitle 0x0 -+int attr singleChoiceItemLayout 0x0 -+int attr spinBars 0x0 -+int attr spinnerDropDownItemStyle 0x0 -+int attr spinnerStyle 0x0 -+int attr splitTrack 0x0 -+int attr srcCompat 0x0 -+int attr state_above_anchor 0x0 -+int attr subMenuArrow 0x0 -+int attr submitBackground 0x0 -+int attr subtitle 0x0 -+int attr subtitleTextAppearance 0x0 -+int attr subtitleTextColor 0x0 -+int attr subtitleTextStyle 0x0 -+int attr suggestionRowLayout 0x0 -+int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 -+int attr switchMinWidth 0x0 -+int attr switchPadding 0x0 -+int attr switchStyle 0x0 -+int attr switchTextAppearance 0x0 -+int attr textAllCaps 0x0 -+int attr textAppearanceLargePopupMenu 0x0 -+int attr textAppearanceListItem 0x0 -+int attr textAppearanceListItemSecondary 0x0 -+int attr textAppearanceListItemSmall 0x0 -+int attr textAppearancePopupMenuHeader 0x0 -+int attr textAppearanceSearchResultSubtitle 0x0 -+int attr textAppearanceSearchResultTitle 0x0 -+int attr textAppearanceSmallPopupMenu 0x0 -+int attr textColorAlertDialogListItem 0x0 -+int attr textColorSearchUrl 0x0 -+int attr textLocale 0x0 -+int attr theme 0x0 -+int attr thickness 0x0 -+int attr thumbTextPadding 0x0 -+int attr thumbTint 0x0 -+int attr thumbTintMode 0x0 -+int attr tickMark 0x0 -+int attr tickMarkTint 0x0 -+int attr tickMarkTintMode 0x0 -+int attr tint 0x0 -+int attr tintMode 0x0 -+int attr title 0x0 -+int attr titleMargin 0x0 -+int attr titleMarginBottom 0x0 -+int attr titleMarginEnd 0x0 -+int attr titleMarginStart 0x0 -+int attr titleMarginTop 0x0 -+int attr titleMargins 0x0 -+int attr titleTextAppearance 0x0 -+int attr titleTextColor 0x0 -+int attr titleTextStyle 0x0 -+int attr toolbarNavigationButtonStyle 0x0 -+int attr toolbarStyle 0x0 -+int attr tooltipForegroundColor 0x0 -+int attr tooltipFrameBackground 0x0 -+int attr tooltipText 0x0 -+int attr track 0x0 -+int attr trackTint 0x0 -+int attr trackTintMode 0x0 -+int attr ttcIndex 0x0 -+int attr viewAspectRatio 0x0 -+int attr viewInflaterClass 0x0 -+int attr voiceIcon 0x0 -+int attr windowActionBar 0x0 -+int attr windowActionBarOverlay 0x0 -+int attr windowActionModeOverlay 0x0 -+int attr windowFixedHeightMajor 0x0 -+int attr windowFixedHeightMinor 0x0 -+int attr windowFixedWidthMajor 0x0 -+int attr windowFixedWidthMinor 0x0 -+int attr windowMinWidthMajor 0x0 -+int attr windowMinWidthMinor 0x0 -+int attr windowNoTitle 0x0 -+int bool abc_action_bar_embed_tabs 0x0 -+int bool abc_config_actionMenuItemAllCaps 0x0 -+int color abc_background_cache_hint_selector_material_dark 0x0 -+int color abc_background_cache_hint_selector_material_light 0x0 -+int color abc_btn_colored_borderless_text_material 0x0 -+int color abc_btn_colored_text_material 0x0 -+int color abc_color_highlight_material 0x0 -+int color abc_decor_view_status_guard 0x0 -+int color abc_decor_view_status_guard_light 0x0 -+int color abc_hint_foreground_material_dark 0x0 -+int color abc_hint_foreground_material_light 0x0 -+int color abc_primary_text_disable_only_material_dark 0x0 -+int color abc_primary_text_disable_only_material_light 0x0 -+int color abc_primary_text_material_dark 0x0 -+int color abc_primary_text_material_light 0x0 -+int color abc_search_url_text 0x0 -+int color abc_search_url_text_normal 0x0 -+int color abc_search_url_text_pressed 0x0 -+int color abc_search_url_text_selected 0x0 -+int color abc_secondary_text_material_dark 0x0 -+int color abc_secondary_text_material_light 0x0 -+int color abc_tint_btn_checkable 0x0 -+int color abc_tint_default 0x0 -+int color abc_tint_edittext 0x0 -+int color abc_tint_seek_thumb 0x0 -+int color abc_tint_spinner 0x0 -+int color abc_tint_switch_track 0x0 -+int color accent_material_dark 0x0 -+int color accent_material_light 0x0 -+int color androidx_core_ripple_material_light 0x0 -+int color androidx_core_secondary_text_default_material_light 0x0 -+int color background_floating_material_dark 0x0 -+int color background_floating_material_light 0x0 -+int color background_material_dark 0x0 -+int color background_material_light 0x0 -+int color bright_foreground_disabled_material_dark 0x0 -+int color bright_foreground_disabled_material_light 0x0 -+int color bright_foreground_inverse_material_dark 0x0 -+int color bright_foreground_inverse_material_light 0x0 -+int color bright_foreground_material_dark 0x0 -+int color bright_foreground_material_light 0x0 -+int color button_material_dark 0x0 -+int color button_material_light 0x0 -+int color call_notification_answer_color 0x0 -+int color call_notification_decline_color 0x0 -+int color catalyst_logbox_background 0x0 -+int color catalyst_redbox_background 0x0 -+int color dim_foreground_disabled_material_dark 0x0 -+int color dim_foreground_disabled_material_light 0x0 -+int color dim_foreground_material_dark 0x0 -+int color dim_foreground_material_light 0x0 -+int color error_color_material_dark 0x0 -+int color error_color_material_light 0x0 -+int color foreground_material_dark 0x0 -+int color foreground_material_light 0x0 -+int color highlighted_text_material_dark 0x0 -+int color highlighted_text_material_light 0x0 -+int color material_blue_grey_800 0x0 -+int color material_blue_grey_900 0x0 -+int color material_blue_grey_950 0x0 -+int color material_deep_teal_200 0x0 -+int color material_deep_teal_500 0x0 -+int color material_grey_100 0x0 -+int color material_grey_300 0x0 -+int color material_grey_50 0x0 -+int color material_grey_600 0x0 -+int color material_grey_800 0x0 -+int color material_grey_850 0x0 -+int color material_grey_900 0x0 -+int color notification_action_color_filter 0x0 -+int color notification_icon_bg_color 0x0 -+int color primary_dark_material_dark 0x0 -+int color primary_dark_material_light 0x0 -+int color primary_material_dark 0x0 -+int color primary_material_light 0x0 -+int color primary_text_default_material_dark 0x0 -+int color primary_text_default_material_light 0x0 -+int color primary_text_disabled_material_dark 0x0 -+int color primary_text_disabled_material_light 0x0 -+int color ripple_material_dark 0x0 -+int color ripple_material_light 0x0 -+int color secondary_text_default_material_dark 0x0 -+int color secondary_text_default_material_light 0x0 -+int color secondary_text_disabled_material_dark 0x0 -+int color secondary_text_disabled_material_light 0x0 -+int color switch_thumb_disabled_material_dark 0x0 -+int color switch_thumb_disabled_material_light 0x0 -+int color switch_thumb_material_dark 0x0 -+int color switch_thumb_material_light 0x0 -+int color switch_thumb_normal_material_dark 0x0 -+int color switch_thumb_normal_material_light 0x0 -+int color tooltip_background_dark 0x0 -+int color tooltip_background_light 0x0 -+int dimen abc_action_bar_content_inset_material 0x0 -+int dimen abc_action_bar_content_inset_with_nav 0x0 -+int dimen abc_action_bar_default_height_material 0x0 -+int dimen abc_action_bar_default_padding_end_material 0x0 -+int dimen abc_action_bar_default_padding_start_material 0x0 -+int dimen abc_action_bar_elevation_material 0x0 -+int dimen abc_action_bar_icon_vertical_padding_material 0x0 -+int dimen abc_action_bar_overflow_padding_end_material 0x0 -+int dimen abc_action_bar_overflow_padding_start_material 0x0 -+int dimen abc_action_bar_stacked_max_height 0x0 -+int dimen abc_action_bar_stacked_tab_max_width 0x0 -+int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 -+int dimen abc_action_bar_subtitle_top_margin_material 0x0 -+int dimen abc_action_button_min_height_material 0x0 -+int dimen abc_action_button_min_width_material 0x0 -+int dimen abc_action_button_min_width_overflow_material 0x0 -+int dimen abc_alert_dialog_button_bar_height 0x0 -+int dimen abc_alert_dialog_button_dimen 0x0 -+int dimen abc_button_inset_horizontal_material 0x0 -+int dimen abc_button_inset_vertical_material 0x0 -+int dimen abc_button_padding_horizontal_material 0x0 -+int dimen abc_button_padding_vertical_material 0x0 -+int dimen abc_cascading_menus_min_smallest_width 0x0 -+int dimen abc_config_prefDialogWidth 0x0 -+int dimen abc_control_corner_material 0x0 -+int dimen abc_control_inset_material 0x0 -+int dimen abc_control_padding_material 0x0 -+int dimen abc_dialog_corner_radius_material 0x0 -+int dimen abc_dialog_fixed_height_major 0x0 -+int dimen abc_dialog_fixed_height_minor 0x0 -+int dimen abc_dialog_fixed_width_major 0x0 -+int dimen abc_dialog_fixed_width_minor 0x0 -+int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 -+int dimen abc_dialog_list_padding_top_no_title 0x0 -+int dimen abc_dialog_min_width_major 0x0 -+int dimen abc_dialog_min_width_minor 0x0 -+int dimen abc_dialog_padding_material 0x0 -+int dimen abc_dialog_padding_top_material 0x0 -+int dimen abc_dialog_title_divider_material 0x0 -+int dimen abc_disabled_alpha_material_dark 0x0 -+int dimen abc_disabled_alpha_material_light 0x0 -+int dimen abc_dropdownitem_icon_width 0x0 -+int dimen abc_dropdownitem_text_padding_left 0x0 -+int dimen abc_dropdownitem_text_padding_right 0x0 -+int dimen abc_edit_text_inset_bottom_material 0x0 -+int dimen abc_edit_text_inset_horizontal_material 0x0 -+int dimen abc_edit_text_inset_top_material 0x0 -+int dimen abc_floating_window_z 0x0 -+int dimen abc_list_item_height_large_material 0x0 -+int dimen abc_list_item_height_material 0x0 -+int dimen abc_list_item_height_small_material 0x0 -+int dimen abc_list_item_padding_horizontal_material 0x0 -+int dimen abc_panel_menu_list_width 0x0 -+int dimen abc_progress_bar_height_material 0x0 -+int dimen abc_search_view_preferred_height 0x0 -+int dimen abc_search_view_preferred_width 0x0 -+int dimen abc_seekbar_track_background_height_material 0x0 -+int dimen abc_seekbar_track_progress_height_material 0x0 -+int dimen abc_select_dialog_padding_start_material 0x0 -+int dimen abc_star_big 0x0 -+int dimen abc_star_medium 0x0 -+int dimen abc_star_small 0x0 -+int dimen abc_switch_padding 0x0 -+int dimen abc_text_size_body_1_material 0x0 -+int dimen abc_text_size_body_2_material 0x0 -+int dimen abc_text_size_button_material 0x0 -+int dimen abc_text_size_caption_material 0x0 -+int dimen abc_text_size_display_1_material 0x0 -+int dimen abc_text_size_display_2_material 0x0 -+int dimen abc_text_size_display_3_material 0x0 -+int dimen abc_text_size_display_4_material 0x0 -+int dimen abc_text_size_headline_material 0x0 -+int dimen abc_text_size_large_material 0x0 -+int dimen abc_text_size_medium_material 0x0 -+int dimen abc_text_size_menu_header_material 0x0 -+int dimen abc_text_size_menu_material 0x0 -+int dimen abc_text_size_small_material 0x0 -+int dimen abc_text_size_subhead_material 0x0 -+int dimen abc_text_size_subtitle_material_toolbar 0x0 -+int dimen abc_text_size_title_material 0x0 -+int dimen abc_text_size_title_material_toolbar 0x0 -+int dimen autofill_inline_suggestion_icon_size 0x0 -+int dimen compat_button_inset_horizontal_material 0x0 -+int dimen compat_button_inset_vertical_material 0x0 -+int dimen compat_button_padding_horizontal_material 0x0 -+int dimen compat_button_padding_vertical_material 0x0 -+int dimen compat_control_corner_material 0x0 -+int dimen compat_notification_large_icon_max_height 0x0 -+int dimen compat_notification_large_icon_max_width 0x0 -+int dimen disabled_alpha_material_dark 0x0 -+int dimen disabled_alpha_material_light 0x0 -+int dimen highlight_alpha_material_colored 0x0 -+int dimen highlight_alpha_material_dark 0x0 -+int dimen highlight_alpha_material_light 0x0 -+int dimen hint_alpha_material_dark 0x0 -+int dimen hint_alpha_material_light 0x0 -+int dimen hint_pressed_alpha_material_dark 0x0 -+int dimen hint_pressed_alpha_material_light 0x0 -+int dimen notification_action_icon_size 0x0 -+int dimen notification_action_text_size 0x0 -+int dimen notification_big_circle_margin 0x0 -+int dimen notification_content_margin_start 0x0 -+int dimen notification_large_icon_height 0x0 -+int dimen notification_large_icon_width 0x0 -+int dimen notification_main_column_padding_top 0x0 -+int dimen notification_media_narrow_margin 0x0 -+int dimen notification_right_icon_size 0x0 -+int dimen notification_right_side_padding_top 0x0 -+int dimen notification_small_icon_background_padding 0x0 -+int dimen notification_small_icon_size_as_large 0x0 -+int dimen notification_subtext_size 0x0 -+int dimen notification_top_pad 0x0 -+int dimen notification_top_pad_large_text 0x0 -+int dimen tooltip_corner_radius 0x0 -+int dimen tooltip_horizontal_padding 0x0 -+int dimen tooltip_margin 0x0 -+int dimen tooltip_precise_anchor_extra_offset 0x0 -+int dimen tooltip_precise_anchor_threshold 0x0 -+int dimen tooltip_vertical_padding 0x0 -+int dimen tooltip_y_offset_non_touch 0x0 -+int dimen tooltip_y_offset_touch 0x0 -+int drawable abc_ab_share_pack_mtrl_alpha 0x0 -+int drawable abc_action_bar_item_background_material 0x0 -+int drawable abc_btn_borderless_material 0x0 -+int drawable abc_btn_check_material 0x0 -+int drawable abc_btn_check_material_anim 0x0 -+int drawable abc_btn_check_to_on_mtrl_000 0x0 -+int drawable abc_btn_check_to_on_mtrl_015 0x0 -+int drawable abc_btn_colored_material 0x0 -+int drawable abc_btn_default_mtrl_shape 0x0 -+int drawable abc_btn_radio_material 0x0 -+int drawable abc_btn_radio_material_anim 0x0 -+int drawable abc_btn_radio_to_on_mtrl_000 0x0 -+int drawable abc_btn_radio_to_on_mtrl_015 0x0 -+int drawable abc_btn_switch_to_on_mtrl_00001 0x0 -+int drawable abc_btn_switch_to_on_mtrl_00012 0x0 -+int drawable abc_cab_background_internal_bg 0x0 -+int drawable abc_cab_background_top_material 0x0 -+int drawable abc_cab_background_top_mtrl_alpha 0x0 -+int drawable abc_control_background_material 0x0 -+int drawable abc_dialog_material_background 0x0 -+int drawable abc_edit_text_material 0x0 -+int drawable abc_ic_ab_back_material 0x0 -+int drawable abc_ic_arrow_drop_right_black_24dp 0x0 -+int drawable abc_ic_clear_material 0x0 -+int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 -+int drawable abc_ic_go_search_api_material 0x0 -+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 -+int drawable abc_ic_menu_cut_mtrl_alpha 0x0 -+int drawable abc_ic_menu_overflow_material 0x0 -+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 -+int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 -+int drawable abc_ic_menu_share_mtrl_alpha 0x0 -+int drawable abc_ic_search_api_material 0x0 -+int drawable abc_ic_voice_search_api_material 0x0 -+int drawable abc_item_background_holo_dark 0x0 -+int drawable abc_item_background_holo_light 0x0 -+int drawable abc_list_divider_material 0x0 -+int drawable abc_list_divider_mtrl_alpha 0x0 -+int drawable abc_list_focused_holo 0x0 -+int drawable abc_list_longpressed_holo 0x0 -+int drawable abc_list_pressed_holo_dark 0x0 -+int drawable abc_list_pressed_holo_light 0x0 -+int drawable abc_list_selector_background_transition_holo_dark 0x0 -+int drawable abc_list_selector_background_transition_holo_light 0x0 -+int drawable abc_list_selector_disabled_holo_dark 0x0 -+int drawable abc_list_selector_disabled_holo_light 0x0 -+int drawable abc_list_selector_holo_dark 0x0 -+int drawable abc_list_selector_holo_light 0x0 -+int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 -+int drawable abc_popup_background_mtrl_mult 0x0 -+int drawable abc_ratingbar_indicator_material 0x0 -+int drawable abc_ratingbar_material 0x0 -+int drawable abc_ratingbar_small_material 0x0 -+int drawable abc_scrubber_control_off_mtrl_alpha 0x0 -+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 -+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 -+int drawable abc_scrubber_primary_mtrl_alpha 0x0 -+int drawable abc_scrubber_track_mtrl_alpha 0x0 -+int drawable abc_seekbar_thumb_material 0x0 -+int drawable abc_seekbar_tick_mark_material 0x0 -+int drawable abc_seekbar_track_material 0x0 -+int drawable abc_spinner_mtrl_am_alpha 0x0 -+int drawable abc_spinner_textfield_background_material 0x0 -+int drawable abc_star_black_48dp 0x0 -+int drawable abc_star_half_black_48dp 0x0 -+int drawable abc_switch_thumb_material 0x0 -+int drawable abc_switch_track_mtrl_alpha 0x0 -+int drawable abc_tab_indicator_material 0x0 -+int drawable abc_tab_indicator_mtrl_alpha 0x0 -+int drawable abc_text_cursor_material 0x0 -+int drawable abc_text_select_handle_left_mtrl 0x0 -+int drawable abc_text_select_handle_middle_mtrl 0x0 -+int drawable abc_text_select_handle_right_mtrl 0x0 -+int drawable abc_textfield_activated_mtrl_alpha 0x0 -+int drawable abc_textfield_default_mtrl_alpha 0x0 -+int drawable abc_textfield_search_activated_mtrl_alpha 0x0 -+int drawable abc_textfield_search_default_mtrl_alpha 0x0 -+int drawable abc_textfield_search_material 0x0 -+int drawable abc_vector_test 0x0 -+int drawable autofill_inline_suggestion_chip_background 0x0 -+int drawable btn_checkbox_checked_mtrl 0x0 -+int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 -+int drawable btn_checkbox_unchecked_mtrl 0x0 -+int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 -+int drawable btn_radio_off_mtrl 0x0 -+int drawable btn_radio_off_to_on_mtrl_animation 0x0 -+int drawable btn_radio_on_mtrl 0x0 -+int drawable btn_radio_on_to_off_mtrl_animation 0x0 -+int drawable ic_call_answer 0x0 -+int drawable ic_call_answer_low 0x0 -+int drawable ic_call_answer_video 0x0 -+int drawable ic_call_answer_video_low 0x0 -+int drawable ic_call_decline 0x0 -+int drawable ic_call_decline_low 0x0 -+int drawable ic_resume 0x0 -+int drawable notification_action_background 0x0 -+int drawable notification_bg 0x0 -+int drawable notification_bg_low 0x0 -+int drawable notification_bg_low_normal 0x0 -+int drawable notification_bg_low_pressed 0x0 -+int drawable notification_bg_normal 0x0 -+int drawable notification_bg_normal_pressed 0x0 -+int drawable notification_icon_background 0x0 -+int drawable notification_oversize_large_icon_bg 0x0 -+int drawable notification_template_icon_bg 0x0 -+int drawable notification_template_icon_low_bg 0x0 -+int drawable notification_tile_bg 0x0 -+int drawable notify_panel_notification_icon_bg 0x0 -+int drawable paused_in_debugger_background 0x0 -+int drawable paused_in_debugger_dialog_background 0x0 -+int drawable redbox_top_border_background 0x0 -+int drawable ripple_effect 0x0 -+int drawable test_level_drawable 0x0 -+int drawable tooltip_frame_dark 0x0 -+int drawable tooltip_frame_light 0x0 -+int id accessibility_action_clickable_span 0x0 -+int id accessibility_actions 0x0 -+int id accessibility_collection 0x0 -+int id accessibility_collection_item 0x0 -+int id accessibility_custom_action_0 0x0 -+int id accessibility_custom_action_1 0x0 -+int id accessibility_custom_action_10 0x0 -+int id accessibility_custom_action_11 0x0 -+int id accessibility_custom_action_12 0x0 -+int id accessibility_custom_action_13 0x0 -+int id accessibility_custom_action_14 0x0 -+int id accessibility_custom_action_15 0x0 -+int id accessibility_custom_action_16 0x0 -+int id accessibility_custom_action_17 0x0 -+int id accessibility_custom_action_18 0x0 -+int id accessibility_custom_action_19 0x0 -+int id accessibility_custom_action_2 0x0 -+int id accessibility_custom_action_20 0x0 -+int id accessibility_custom_action_21 0x0 -+int id accessibility_custom_action_22 0x0 -+int id accessibility_custom_action_23 0x0 -+int id accessibility_custom_action_24 0x0 -+int id accessibility_custom_action_25 0x0 -+int id accessibility_custom_action_26 0x0 -+int id accessibility_custom_action_27 0x0 -+int id accessibility_custom_action_28 0x0 -+int id accessibility_custom_action_29 0x0 -+int id accessibility_custom_action_3 0x0 -+int id accessibility_custom_action_30 0x0 -+int id accessibility_custom_action_31 0x0 -+int id accessibility_custom_action_4 0x0 -+int id accessibility_custom_action_5 0x0 -+int id accessibility_custom_action_6 0x0 -+int id accessibility_custom_action_7 0x0 -+int id accessibility_custom_action_8 0x0 -+int id accessibility_custom_action_9 0x0 -+int id accessibility_hint 0x0 -+int id accessibility_label 0x0 -+int id accessibility_links 0x0 -+int id accessibility_role 0x0 -+int id accessibility_state 0x0 -+int id accessibility_state_expanded 0x0 -+int id accessibility_value 0x0 -+int id action_bar 0x0 -+int id action_bar_activity_content 0x0 -+int id action_bar_container 0x0 -+int id action_bar_root 0x0 -+int id action_bar_spinner 0x0 -+int id action_bar_subtitle 0x0 -+int id action_bar_title 0x0 -+int id action_container 0x0 -+int id action_context_bar 0x0 -+int id action_divider 0x0 -+int id action_image 0x0 -+int id action_menu_divider 0x0 -+int id action_menu_presenter 0x0 -+int id action_mode_bar 0x0 -+int id action_mode_bar_stub 0x0 -+int id action_mode_close_button 0x0 -+int id action_text 0x0 -+int id actions 0x0 -+int id activity_chooser_view_content 0x0 -+int id add 0x0 -+int id alertTitle 0x0 -+int id alert_title 0x0 -+int id async 0x0 -+int id autofill_inline_suggestion_end_icon 0x0 -+int id autofill_inline_suggestion_start_icon 0x0 -+int id autofill_inline_suggestion_subtitle 0x0 -+int id autofill_inline_suggestion_title 0x0 -+int id blocking 0x0 -+int id button 0x0 -+int id buttonPanel 0x0 -+int id button_text 0x0 -+int id catalyst_redbox_title 0x0 -+int id center 0x0 -+int id centerCrop 0x0 -+int id centerInside 0x0 -+int id checkbox 0x0 -+int id checked 0x0 -+int id chronometer 0x0 -+int id content 0x0 -+int id contentPanel 0x0 -+int id custom 0x0 -+int id customPanel 0x0 -+int id decor_content_parent 0x0 -+int id default_activity_button 0x0 -+int id dialog_button 0x0 -+int id edit_query 0x0 -+int id edit_text_id 0x0 -+int id expand_activities_button 0x0 -+int id expanded_menu 0x0 -+int id filter 0x0 -+int id fitBottomStart 0x0 -+int id fitCenter 0x0 -+int id fitEnd 0x0 -+int id fitStart 0x0 -+int id fitXY 0x0 -+int id focusCrop 0x0 -+int id forever 0x0 -+int id fps_text 0x0 -+int id fragment_container_view_tag 0x0 -+int id ghost_view 0x0 -+int id ghost_view_holder 0x0 -+int id group_divider 0x0 -+int id hide_ime_id 0x0 -+int id home 0x0 -+int id icon 0x0 -+int id icon_group 0x0 -+int id image 0x0 -+int id info 0x0 -+int id invalidate_transform 0x0 -+int id italic 0x0 -+int id labelled_by 0x0 -+int id line1 0x0 -+int id line3 0x0 -+int id listMode 0x0 -+int id list_item 0x0 -+int id message 0x0 -+int id mix_blend_mode 0x0 -+int id multiply 0x0 -+int id none 0x0 -+int id normal 0x0 -+int id notification_background 0x0 -+int id notification_main_column 0x0 -+int id notification_main_column_container 0x0 -+int id off 0x0 -+int id on 0x0 -+int id parentPanel 0x0 -+int id parent_matrix 0x0 -+int id pointer_events 0x0 -+int id progress_circular 0x0 -+int id progress_horizontal 0x0 -+int id radio 0x0 -+int id react_test_id 0x0 -+int id report_drawn 0x0 -+int id right_icon 0x0 -+int id right_side 0x0 -+int id rn_frame_file 0x0 -+int id rn_frame_method 0x0 -+int id rn_redbox_dismiss_button 0x0 -+int id rn_redbox_line_separator 0x0 -+int id rn_redbox_loading_indicator 0x0 -+int id rn_redbox_reload_button 0x0 -+int id rn_redbox_report_button 0x0 -+int id rn_redbox_report_label 0x0 -+int id rn_redbox_stack 0x0 -+int id role 0x0 -+int id save_non_transition_alpha 0x0 -+int id save_overlay_view 0x0 -+int id screen 0x0 -+int id scrollIndicatorDown 0x0 -+int id scrollIndicatorUp 0x0 -+int id scrollView 0x0 -+int id search_badge 0x0 -+int id search_bar 0x0 -+int id search_button 0x0 -+int id search_close_btn 0x0 -+int id search_edit_frame 0x0 -+int id search_go_btn 0x0 -+int id search_mag_icon 0x0 -+int id search_plate 0x0 -+int id search_src_text 0x0 -+int id search_voice_btn 0x0 -+int id select_dialog_listview 0x0 -+int id shortcut 0x0 -+int id spacer 0x0 -+int id special_effects_controller_view_tag 0x0 -+int id split_action_bar 0x0 -+int id src_atop 0x0 -+int id src_in 0x0 -+int id src_over 0x0 -+int id submenuarrow 0x0 -+int id submit_area 0x0 -+int id tabMode 0x0 -+int id tag_accessibility_actions 0x0 -+int id tag_accessibility_clickable_spans 0x0 -+int id tag_accessibility_heading 0x0 -+int id tag_accessibility_pane_title 0x0 -+int id tag_on_apply_window_listener 0x0 -+int id tag_on_receive_content_listener 0x0 -+int id tag_on_receive_content_mime_types 0x0 -+int id tag_screen_reader_focusable 0x0 -+int id tag_state_description 0x0 -+int id tag_transition_group 0x0 -+int id tag_unhandled_key_event_manager 0x0 -+int id tag_unhandled_key_listeners 0x0 -+int id tag_window_insets_animation_callback 0x0 -+int id text 0x0 -+int id text2 0x0 -+int id textSpacerNoButtons 0x0 -+int id textSpacerNoTitle 0x0 -+int id time 0x0 -+int id title 0x0 -+int id titleDividerNoCustom 0x0 -+int id title_template 0x0 -+int id topPanel 0x0 -+int id transform 0x0 -+int id transform_origin 0x0 -+int id transition_current_scene 0x0 -+int id transition_layout_save 0x0 -+int id transition_position 0x0 -+int id transition_scene_layoutid_cache 0x0 -+int id transition_transform 0x0 -+int id unchecked 0x0 -+int id uniform 0x0 -+int id up 0x0 -+int id use_hardware_layer 0x0 -+int id view_clipped 0x0 -+int id view_tag_instance_handle 0x0 -+int id view_tag_native_id 0x0 -+int id view_tree_lifecycle_owner 0x0 -+int id view_tree_on_back_pressed_dispatcher_owner 0x0 -+int id view_tree_saved_state_registry_owner 0x0 -+int id view_tree_view_model_store_owner 0x0 -+int id visible_removing_fragment_view_tag 0x0 -+int id wrap_content 0x0 -+int integer abc_config_activityDefaultDur 0x0 -+int integer abc_config_activityShortDur 0x0 -+int integer cancel_button_image_alpha 0x0 -+int integer config_tooltipAnimTime 0x0 -+int integer react_native_dev_server_port 0x0 -+int integer status_bar_notification_info_maxnum 0x0 -+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 -+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 -+int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 -+int interpolator fast_out_slow_in 0x0 -+int layout abc_action_bar_title_item 0x0 -+int layout abc_action_bar_up_container 0x0 -+int layout abc_action_menu_item_layout 0x0 -+int layout abc_action_menu_layout 0x0 -+int layout abc_action_mode_bar 0x0 -+int layout abc_action_mode_close_item_material 0x0 -+int layout abc_activity_chooser_view 0x0 -+int layout abc_activity_chooser_view_list_item 0x0 -+int layout abc_alert_dialog_button_bar_material 0x0 -+int layout abc_alert_dialog_material 0x0 -+int layout abc_alert_dialog_title_material 0x0 -+int layout abc_cascading_menu_item_layout 0x0 -+int layout abc_dialog_title_material 0x0 -+int layout abc_expanded_menu_layout 0x0 -+int layout abc_list_menu_item_checkbox 0x0 -+int layout abc_list_menu_item_icon 0x0 -+int layout abc_list_menu_item_layout 0x0 -+int layout abc_list_menu_item_radio 0x0 -+int layout abc_popup_menu_header_item_layout 0x0 -+int layout abc_popup_menu_item_layout 0x0 -+int layout abc_screen_content_include 0x0 -+int layout abc_screen_simple 0x0 -+int layout abc_screen_simple_overlay_action_mode 0x0 -+int layout abc_screen_toolbar 0x0 -+int layout abc_search_dropdown_item_icons_2line 0x0 -+int layout abc_search_view 0x0 -+int layout abc_select_dialog_material 0x0 -+int layout abc_tooltip 0x0 -+int layout alert_title_layout 0x0 -+int layout autofill_inline_suggestion 0x0 -+int layout custom_dialog 0x0 -+int layout dev_loading_view 0x0 -+int layout fps_view 0x0 -+int layout ime_base_split_test_activity 0x0 -+int layout ime_secondary_split_test_activity 0x0 -+int layout notification_action 0x0 -+int layout notification_action_tombstone 0x0 -+int layout notification_template_custom_big 0x0 -+int layout notification_template_icon_group 0x0 -+int layout notification_template_part_chronometer 0x0 -+int layout notification_template_part_time 0x0 -+int layout paused_in_debugger_view 0x0 -+int layout redbox_item_frame 0x0 -+int layout redbox_item_title 0x0 -+int layout redbox_view 0x0 -+int layout select_dialog_item_material 0x0 -+int layout select_dialog_multichoice_material 0x0 -+int layout select_dialog_singlechoice_material 0x0 -+int layout support_simple_spinner_dropdown_item 0x0 -+int string abc_action_bar_home_description 0x0 -+int string abc_action_bar_up_description 0x0 -+int string abc_action_menu_overflow_description 0x0 -+int string abc_action_mode_done 0x0 -+int string abc_activity_chooser_view_see_all 0x0 -+int string abc_activitychooserview_choose_application 0x0 -+int string abc_capital_off 0x0 -+int string abc_capital_on 0x0 -+int string abc_menu_alt_shortcut_label 0x0 -+int string abc_menu_ctrl_shortcut_label 0x0 -+int string abc_menu_delete_shortcut_label 0x0 -+int string abc_menu_enter_shortcut_label 0x0 -+int string abc_menu_function_shortcut_label 0x0 -+int string abc_menu_meta_shortcut_label 0x0 -+int string abc_menu_shift_shortcut_label 0x0 -+int string abc_menu_space_shortcut_label 0x0 -+int string abc_menu_sym_shortcut_label 0x0 -+int string abc_prepend_shortcut_label 0x0 -+int string abc_search_hint 0x0 -+int string abc_searchview_description_clear 0x0 -+int string abc_searchview_description_query 0x0 -+int string abc_searchview_description_search 0x0 -+int string abc_searchview_description_submit 0x0 -+int string abc_searchview_description_voice 0x0 -+int string abc_shareactionprovider_share_with 0x0 -+int string abc_shareactionprovider_share_with_application 0x0 -+int string abc_toolbar_collapse_description 0x0 -+int string alert_description 0x0 -+int string call_notification_answer_action 0x0 -+int string call_notification_answer_video_action 0x0 -+int string call_notification_decline_action 0x0 -+int string call_notification_hang_up_action 0x0 -+int string call_notification_incoming_text 0x0 -+int string call_notification_ongoing_text 0x0 -+int string call_notification_screening_text 0x0 -+int string catalyst_change_bundle_location 0x0 -+int string catalyst_copy_button 0x0 -+int string catalyst_debug_connecting 0x0 -+int string catalyst_debug_error 0x0 -+int string catalyst_debug_open 0x0 -+int string catalyst_debug_open_disabled 0x0 -+int string catalyst_dev_menu_header 0x0 -+int string catalyst_dev_menu_sub_header 0x0 -+int string catalyst_dismiss_button 0x0 -+int string catalyst_heap_capture 0x0 -+int string catalyst_hot_reloading 0x0 -+int string catalyst_hot_reloading_auto_disable 0x0 -+int string catalyst_hot_reloading_auto_enable 0x0 -+int string catalyst_hot_reloading_stop 0x0 -+int string catalyst_inspector_toggle 0x0 -+int string catalyst_loading_from_url 0x0 -+int string catalyst_open_debugger_error 0x0 -+int string catalyst_perf_monitor 0x0 -+int string catalyst_perf_monitor_stop 0x0 -+int string catalyst_reload 0x0 -+int string catalyst_reload_button 0x0 -+int string catalyst_reload_error 0x0 -+int string catalyst_report_button 0x0 -+int string catalyst_sample_profiler_toggle 0x0 -+int string catalyst_settings 0x0 -+int string catalyst_settings_title 0x0 -+int string combobox_description 0x0 -+int string header_description 0x0 -+int string image_description 0x0 -+int string imagebutton_description 0x0 -+int string link_description 0x0 -+int string menu_description 0x0 -+int string menubar_description 0x0 -+int string menuitem_description 0x0 -+int string progressbar_description 0x0 -+int string radiogroup_description 0x0 -+int string rn_tab_description 0x0 -+int string scrollbar_description 0x0 -+int string search_menu_title 0x0 -+int string spinbutton_description 0x0 -+int string state_busy_description 0x0 -+int string state_collapsed_description 0x0 -+int string state_expanded_description 0x0 -+int string state_mixed_description 0x0 -+int string state_off_description 0x0 -+int string state_on_description 0x0 -+int string state_unselected_description 0x0 -+int string status_bar_notification_info_overflow 0x0 -+int string summary_description 0x0 -+int string tablist_description 0x0 -+int string timer_description 0x0 -+int string toolbar_description 0x0 -+int style AlertDialog_AppCompat 0x0 -+int style AlertDialog_AppCompat_Light 0x0 -+int style Animation_AppCompat_Dialog 0x0 -+int style Animation_AppCompat_DropDownUp 0x0 -+int style Animation_AppCompat_Tooltip 0x0 -+int style Animation_Catalyst_LogBox 0x0 -+int style Animation_Catalyst_RedBox 0x0 -+int style Base_AlertDialog_AppCompat 0x0 -+int style Base_AlertDialog_AppCompat_Light 0x0 -+int style Base_Animation_AppCompat_Dialog 0x0 -+int style Base_Animation_AppCompat_DropDownUp 0x0 -+int style Base_Animation_AppCompat_Tooltip 0x0 -+int style Base_DialogWindowTitleBackground_AppCompat 0x0 -+int style Base_DialogWindowTitle_AppCompat 0x0 -+int style Base_TextAppearance_AppCompat 0x0 -+int style Base_TextAppearance_AppCompat_Body1 0x0 -+int style Base_TextAppearance_AppCompat_Body2 0x0 -+int style Base_TextAppearance_AppCompat_Button 0x0 -+int style Base_TextAppearance_AppCompat_Caption 0x0 -+int style Base_TextAppearance_AppCompat_Display1 0x0 -+int style Base_TextAppearance_AppCompat_Display2 0x0 -+int style Base_TextAppearance_AppCompat_Display3 0x0 -+int style Base_TextAppearance_AppCompat_Display4 0x0 -+int style Base_TextAppearance_AppCompat_Headline 0x0 -+int style Base_TextAppearance_AppCompat_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Large 0x0 -+int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -+int style Base_TextAppearance_AppCompat_Medium 0x0 -+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Menu 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 -+int style Base_TextAppearance_AppCompat_Small 0x0 -+int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Subhead 0x0 -+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Title 0x0 -+int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Tooltip 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 -+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -+int style Base_ThemeOverlay_AppCompat 0x0 -+int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 -+int style Base_ThemeOverlay_AppCompat_Dark 0x0 -+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -+int style Base_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 -+int style Base_ThemeOverlay_AppCompat_Light 0x0 -+int style Base_Theme_AppCompat 0x0 -+int style Base_Theme_AppCompat_CompactMenu 0x0 -+int style Base_Theme_AppCompat_Dialog 0x0 -+int style Base_Theme_AppCompat_DialogWhenLarge 0x0 -+int style Base_Theme_AppCompat_Dialog_Alert 0x0 -+int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 -+int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 -+int style Base_Theme_AppCompat_Light 0x0 -+int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 -+int style Base_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 -+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_V21_Theme_AppCompat 0x0 -+int style Base_V21_Theme_AppCompat_Dialog 0x0 -+int style Base_V21_Theme_AppCompat_Light 0x0 -+int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_V22_Theme_AppCompat 0x0 -+int style Base_V22_Theme_AppCompat_Light 0x0 -+int style Base_V23_Theme_AppCompat 0x0 -+int style Base_V23_Theme_AppCompat_Light 0x0 -+int style Base_V26_Theme_AppCompat 0x0 -+int style Base_V26_Theme_AppCompat_Light 0x0 -+int style Base_V26_Widget_AppCompat_Toolbar 0x0 -+int style Base_V28_Theme_AppCompat 0x0 -+int style Base_V28_Theme_AppCompat_Light 0x0 -+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_V7_Theme_AppCompat 0x0 -+int style Base_V7_Theme_AppCompat_Dialog 0x0 -+int style Base_V7_Theme_AppCompat_Light 0x0 -+int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Base_V7_Widget_AppCompat_EditText 0x0 -+int style Base_V7_Widget_AppCompat_Toolbar 0x0 -+int style Base_Widget_AppCompat_ActionBar 0x0 -+int style Base_Widget_AppCompat_ActionBar_Solid 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabText 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabView 0x0 -+int style Base_Widget_AppCompat_ActionButton 0x0 -+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 -+int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 -+int style Base_Widget_AppCompat_ActionMode 0x0 -+int style Base_Widget_AppCompat_ActivityChooserView 0x0 -+int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Base_Widget_AppCompat_Button 0x0 -+int style Base_Widget_AppCompat_ButtonBar 0x0 -+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 -+int style Base_Widget_AppCompat_Button_Borderless 0x0 -+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 -+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -+int style Base_Widget_AppCompat_Button_Colored 0x0 -+int style Base_Widget_AppCompat_Button_Small 0x0 -+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 -+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 -+int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 -+int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 -+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 -+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 -+int style Base_Widget_AppCompat_EditText 0x0 -+int style Base_Widget_AppCompat_ImageButton 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 -+int style Base_Widget_AppCompat_Light_PopupMenu 0x0 -+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -+int style Base_Widget_AppCompat_ListMenuView 0x0 -+int style Base_Widget_AppCompat_ListPopupWindow 0x0 -+int style Base_Widget_AppCompat_ListView 0x0 -+int style Base_Widget_AppCompat_ListView_DropDown 0x0 -+int style Base_Widget_AppCompat_ListView_Menu 0x0 -+int style Base_Widget_AppCompat_PopupMenu 0x0 -+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 -+int style Base_Widget_AppCompat_PopupWindow 0x0 -+int style Base_Widget_AppCompat_ProgressBar 0x0 -+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 -+int style Base_Widget_AppCompat_RatingBar 0x0 -+int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 -+int style Base_Widget_AppCompat_RatingBar_Small 0x0 -+int style Base_Widget_AppCompat_SearchView 0x0 -+int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 -+int style Base_Widget_AppCompat_SeekBar 0x0 -+int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 -+int style Base_Widget_AppCompat_Spinner 0x0 -+int style Base_Widget_AppCompat_Spinner_Underlined 0x0 -+int style Base_Widget_AppCompat_TextView 0x0 -+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 -+int style Base_Widget_AppCompat_Toolbar 0x0 -+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style CalendarDatePickerDialog 0x0 -+int style CalendarDatePickerStyle 0x0 -+int style DialogAnimationFade 0x0 -+int style DialogAnimationSlide 0x0 -+int style NoAnimationDialog 0x0 -+int style Platform_AppCompat 0x0 -+int style Platform_AppCompat_Light 0x0 -+int style Platform_ThemeOverlay_AppCompat 0x0 -+int style Platform_ThemeOverlay_AppCompat_Dark 0x0 -+int style Platform_ThemeOverlay_AppCompat_Light 0x0 -+int style Platform_V21_AppCompat 0x0 -+int style Platform_V21_AppCompat_Light 0x0 -+int style Platform_V25_AppCompat 0x0 -+int style Platform_V25_AppCompat_Light 0x0 -+int style Platform_Widget_AppCompat_Spinner 0x0 -+int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 -+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 -+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 -+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 -+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 -+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 -+int style SpinnerDatePickerDialog 0x0 -+int style SpinnerDatePickerStyle 0x0 -+int style TextAppearance_AppCompat 0x0 -+int style TextAppearance_AppCompat_Body1 0x0 -+int style TextAppearance_AppCompat_Body2 0x0 -+int style TextAppearance_AppCompat_Button 0x0 -+int style TextAppearance_AppCompat_Caption 0x0 -+int style TextAppearance_AppCompat_Display1 0x0 -+int style TextAppearance_AppCompat_Display2 0x0 -+int style TextAppearance_AppCompat_Display3 0x0 -+int style TextAppearance_AppCompat_Display4 0x0 -+int style TextAppearance_AppCompat_Headline 0x0 -+int style TextAppearance_AppCompat_Inverse 0x0 -+int style TextAppearance_AppCompat_Large 0x0 -+int style TextAppearance_AppCompat_Large_Inverse 0x0 -+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 -+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 -+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -+int style TextAppearance_AppCompat_Medium 0x0 -+int style TextAppearance_AppCompat_Medium_Inverse 0x0 -+int style TextAppearance_AppCompat_Menu 0x0 -+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -+int style TextAppearance_AppCompat_SearchResult_Title 0x0 -+int style TextAppearance_AppCompat_Small 0x0 -+int style TextAppearance_AppCompat_Small_Inverse 0x0 -+int style TextAppearance_AppCompat_Subhead 0x0 -+int style TextAppearance_AppCompat_Subhead_Inverse 0x0 -+int style TextAppearance_AppCompat_Title 0x0 -+int style TextAppearance_AppCompat_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Tooltip 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_Button 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -+int style TextAppearance_AppCompat_Widget_Switch 0x0 -+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -+int style TextAppearance_Compat_Notification 0x0 -+int style TextAppearance_Compat_Notification_Info 0x0 -+int style TextAppearance_Compat_Notification_Line2 0x0 -+int style TextAppearance_Compat_Notification_Time 0x0 -+int style TextAppearance_Compat_Notification_Title 0x0 -+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -+int style Theme 0x0 -+int style ThemeOverlay_AppCompat 0x0 -+int style ThemeOverlay_AppCompat_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_Dark 0x0 -+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_DayNight 0x0 -+int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_Dialog 0x0 -+int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 -+int style ThemeOverlay_AppCompat_Light 0x0 -+int style Theme_AppCompat 0x0 -+int style Theme_AppCompat_CompactMenu 0x0 -+int style Theme_AppCompat_DayNight 0x0 -+int style Theme_AppCompat_DayNight_DarkActionBar 0x0 -+int style Theme_AppCompat_DayNight_Dialog 0x0 -+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 -+int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 -+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_DayNight_NoActionBar 0x0 -+int style Theme_AppCompat_Dialog 0x0 -+int style Theme_AppCompat_DialogWhenLarge 0x0 -+int style Theme_AppCompat_Dialog_Alert 0x0 -+int style Theme_AppCompat_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_Empty 0x0 -+int style Theme_AppCompat_Light 0x0 -+int style Theme_AppCompat_Light_DarkActionBar 0x0 -+int style Theme_AppCompat_Light_Dialog 0x0 -+int style Theme_AppCompat_Light_DialogWhenLarge 0x0 -+int style Theme_AppCompat_Light_Dialog_Alert 0x0 -+int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_Light_NoActionBar 0x0 -+int style Theme_AppCompat_NoActionBar 0x0 -+int style Theme_AutofillInlineSuggestion 0x0 -+int style Theme_Catalyst 0x0 -+int style Theme_Catalyst_LogBox 0x0 -+int style Theme_Catalyst_RedBox 0x0 -+int style Theme_FullScreenDialog 0x0 -+int style Theme_FullScreenDialogAnimatedFade 0x0 -+int style Theme_FullScreenDialogAnimatedSlide 0x0 -+int style Theme_ReactNative_AppCompat_Light 0x0 -+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0 -+int style Theme_ReactNative_TextInput_DefaultBackground 0x0 -+int style Widget_AppCompat_ActionBar 0x0 -+int style Widget_AppCompat_ActionBar_Solid 0x0 -+int style Widget_AppCompat_ActionBar_TabBar 0x0 -+int style Widget_AppCompat_ActionBar_TabText 0x0 -+int style Widget_AppCompat_ActionBar_TabView 0x0 -+int style Widget_AppCompat_ActionButton 0x0 -+int style Widget_AppCompat_ActionButton_CloseMode 0x0 -+int style Widget_AppCompat_ActionButton_Overflow 0x0 -+int style Widget_AppCompat_ActionMode 0x0 -+int style Widget_AppCompat_ActivityChooserView 0x0 -+int style Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Widget_AppCompat_Button 0x0 -+int style Widget_AppCompat_ButtonBar 0x0 -+int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 -+int style Widget_AppCompat_Button_Borderless 0x0 -+int style Widget_AppCompat_Button_Borderless_Colored 0x0 -+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -+int style Widget_AppCompat_Button_Colored 0x0 -+int style Widget_AppCompat_Button_Small 0x0 -+int style Widget_AppCompat_CompoundButton_CheckBox 0x0 -+int style Widget_AppCompat_CompoundButton_RadioButton 0x0 -+int style Widget_AppCompat_CompoundButton_Switch 0x0 -+int style Widget_AppCompat_DrawerArrowToggle 0x0 -+int style Widget_AppCompat_DropDownItem_Spinner 0x0 -+int style Widget_AppCompat_EditText 0x0 -+int style Widget_AppCompat_ImageButton 0x0 -+int style Widget_AppCompat_Light_ActionBar 0x0 -+int style Widget_AppCompat_Light_ActionBar_Solid 0x0 -+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabText 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabView 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionButton 0x0 -+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 -+int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 -+int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 -+int style Widget_AppCompat_Light_ActivityChooserView 0x0 -+int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 -+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 -+int style Widget_AppCompat_Light_ListPopupWindow 0x0 -+int style Widget_AppCompat_Light_ListView_DropDown 0x0 -+int style Widget_AppCompat_Light_PopupMenu 0x0 -+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -+int style Widget_AppCompat_Light_SearchView 0x0 -+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 -+int style Widget_AppCompat_ListMenuView 0x0 -+int style Widget_AppCompat_ListPopupWindow 0x0 -+int style Widget_AppCompat_ListView 0x0 -+int style Widget_AppCompat_ListView_DropDown 0x0 -+int style Widget_AppCompat_ListView_Menu 0x0 -+int style Widget_AppCompat_PopupMenu 0x0 -+int style Widget_AppCompat_PopupMenu_Overflow 0x0 -+int style Widget_AppCompat_PopupWindow 0x0 -+int style Widget_AppCompat_ProgressBar 0x0 -+int style Widget_AppCompat_ProgressBar_Horizontal 0x0 -+int style Widget_AppCompat_RatingBar 0x0 -+int style Widget_AppCompat_RatingBar_Indicator 0x0 -+int style Widget_AppCompat_RatingBar_Small 0x0 -+int style Widget_AppCompat_SearchView 0x0 -+int style Widget_AppCompat_SearchView_ActionBar 0x0 -+int style Widget_AppCompat_SeekBar 0x0 -+int style Widget_AppCompat_SeekBar_Discrete 0x0 -+int style Widget_AppCompat_Spinner 0x0 -+int style Widget_AppCompat_Spinner_DropDown 0x0 -+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 -+int style Widget_AppCompat_Spinner_Underlined 0x0 -+int style Widget_AppCompat_TextView 0x0 -+int style Widget_AppCompat_TextView_SpinnerItem 0x0 -+int style Widget_AppCompat_Toolbar 0x0 -+int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style Widget_Autofill 0x0 -+int style Widget_Autofill_InlineSuggestionChip 0x0 -+int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0 -+int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0 -+int style Widget_Autofill_InlineSuggestionSubtitle 0x0 -+int style Widget_Autofill_InlineSuggestionTitle 0x0 -+int style Widget_Compat_NotificationActionContainer 0x0 -+int style Widget_Compat_NotificationActionText 0x0 -+int style redboxButton 0x0 -+int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionBar_background 0 -+int styleable ActionBar_backgroundSplit 1 -+int styleable ActionBar_backgroundStacked 2 -+int styleable ActionBar_contentInsetEnd 3 -+int styleable ActionBar_contentInsetEndWithActions 4 -+int styleable ActionBar_contentInsetLeft 5 -+int styleable ActionBar_contentInsetRight 6 -+int styleable ActionBar_contentInsetStart 7 -+int styleable ActionBar_contentInsetStartWithNavigation 8 -+int styleable ActionBar_customNavigationLayout 9 -+int styleable ActionBar_displayOptions 10 -+int styleable ActionBar_divider 11 -+int styleable ActionBar_elevation 12 -+int styleable ActionBar_height 13 -+int styleable ActionBar_hideOnContentScroll 14 -+int styleable ActionBar_homeAsUpIndicator 15 -+int styleable ActionBar_homeLayout 16 -+int styleable ActionBar_icon 17 -+int styleable ActionBar_indeterminateProgressStyle 18 -+int styleable ActionBar_itemPadding 19 -+int styleable ActionBar_logo 20 -+int styleable ActionBar_navigationMode 21 -+int styleable ActionBar_popupTheme 22 -+int styleable ActionBar_progressBarPadding 23 -+int styleable ActionBar_progressBarStyle 24 -+int styleable ActionBar_subtitle 25 -+int styleable ActionBar_subtitleTextStyle 26 -+int styleable ActionBar_title 27 -+int styleable ActionBar_titleTextStyle 28 -+int[] styleable ActionBarLayout { 0x10100b3 } -+int styleable ActionBarLayout_android_layout_gravity 0 -+int[] styleable ActionMenuItemView { 0x101013f } -+int styleable ActionMenuItemView_android_minWidth 0 -+int[] styleable ActionMenuView { } -+int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionMode_background 0 -+int styleable ActionMode_backgroundSplit 1 -+int styleable ActionMode_closeItemLayout 2 -+int styleable ActionMode_height 3 -+int styleable ActionMode_subtitleTextStyle 4 -+int styleable ActionMode_titleTextStyle 5 -+int[] styleable ActivityChooserView { 0x0, 0x0 } -+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -+int styleable ActivityChooserView_initialActivityCount 1 -+int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AlertDialog_android_layout 0 -+int styleable AlertDialog_buttonIconDimen 1 -+int styleable AlertDialog_buttonPanelSideLayout 2 -+int styleable AlertDialog_listItemLayout 3 -+int styleable AlertDialog_listLayout 4 -+int styleable AlertDialog_multiChoiceItemLayout 5 -+int styleable AlertDialog_showTitle 6 -+int styleable AlertDialog_singleChoiceItemLayout 7 -+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable AnimatedStateListDrawableCompat_android_constantSize 0 -+int styleable AnimatedStateListDrawableCompat_android_dither 1 -+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 -+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 -+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 -+int styleable AnimatedStateListDrawableCompat_android_visible 5 -+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } -+int styleable AnimatedStateListDrawableItem_android_drawable 0 -+int styleable AnimatedStateListDrawableItem_android_id 1 -+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } -+int styleable AnimatedStateListDrawableTransition_android_drawable 0 -+int styleable AnimatedStateListDrawableTransition_android_fromId 1 -+int styleable AnimatedStateListDrawableTransition_android_reversible 2 -+int styleable AnimatedStateListDrawableTransition_android_toId 3 -+int[] styleable AppCompatEmojiHelper { } -+int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } -+int styleable AppCompatImageView_android_src 0 -+int styleable AppCompatImageView_srcCompat 1 -+int styleable AppCompatImageView_tint 2 -+int styleable AppCompatImageView_tintMode 3 -+int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } -+int styleable AppCompatSeekBar_android_thumb 0 -+int styleable AppCompatSeekBar_tickMark 1 -+int styleable AppCompatSeekBar_tickMarkTint 2 -+int styleable AppCompatSeekBar_tickMarkTintMode 3 -+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } -+int styleable AppCompatTextHelper_android_drawableBottom 0 -+int styleable AppCompatTextHelper_android_drawableEnd 1 -+int styleable AppCompatTextHelper_android_drawableLeft 2 -+int styleable AppCompatTextHelper_android_drawableRight 3 -+int styleable AppCompatTextHelper_android_drawableStart 4 -+int styleable AppCompatTextHelper_android_drawableTop 5 -+int styleable AppCompatTextHelper_android_textAppearance 6 -+int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AppCompatTextView_android_textAppearance 0 -+int styleable AppCompatTextView_autoSizeMaxTextSize 1 -+int styleable AppCompatTextView_autoSizeMinTextSize 2 -+int styleable AppCompatTextView_autoSizePresetSizes 3 -+int styleable AppCompatTextView_autoSizeStepGranularity 4 -+int styleable AppCompatTextView_autoSizeTextType 5 -+int styleable AppCompatTextView_drawableBottomCompat 6 -+int styleable AppCompatTextView_drawableEndCompat 7 -+int styleable AppCompatTextView_drawableLeftCompat 8 -+int styleable AppCompatTextView_drawableRightCompat 9 -+int styleable AppCompatTextView_drawableStartCompat 10 -+int styleable AppCompatTextView_drawableTint 11 -+int styleable AppCompatTextView_drawableTintMode 12 -+int styleable AppCompatTextView_drawableTopCompat 13 -+int styleable AppCompatTextView_emojiCompatEnabled 14 -+int styleable AppCompatTextView_firstBaselineToTopHeight 15 -+int styleable AppCompatTextView_fontFamily 16 -+int styleable AppCompatTextView_fontVariationSettings 17 -+int styleable AppCompatTextView_lastBaselineToBottomHeight 18 -+int styleable AppCompatTextView_lineHeight 19 -+int styleable AppCompatTextView_textAllCaps 20 -+int styleable AppCompatTextView_textLocale 21 -+int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AppCompatTheme_actionBarDivider 0 -+int styleable AppCompatTheme_actionBarItemBackground 1 -+int styleable AppCompatTheme_actionBarPopupTheme 2 -+int styleable AppCompatTheme_actionBarSize 3 -+int styleable AppCompatTheme_actionBarSplitStyle 4 -+int styleable AppCompatTheme_actionBarStyle 5 -+int styleable AppCompatTheme_actionBarTabBarStyle 6 -+int styleable AppCompatTheme_actionBarTabStyle 7 -+int styleable AppCompatTheme_actionBarTabTextStyle 8 -+int styleable AppCompatTheme_actionBarTheme 9 -+int styleable AppCompatTheme_actionBarWidgetTheme 10 -+int styleable AppCompatTheme_actionButtonStyle 11 -+int styleable AppCompatTheme_actionDropDownStyle 12 -+int styleable AppCompatTheme_actionMenuTextAppearance 13 -+int styleable AppCompatTheme_actionMenuTextColor 14 -+int styleable AppCompatTheme_actionModeBackground 15 -+int styleable AppCompatTheme_actionModeCloseButtonStyle 16 -+int styleable AppCompatTheme_actionModeCloseContentDescription 17 -+int styleable AppCompatTheme_actionModeCloseDrawable 18 -+int styleable AppCompatTheme_actionModeCopyDrawable 19 -+int styleable AppCompatTheme_actionModeCutDrawable 20 -+int styleable AppCompatTheme_actionModeFindDrawable 21 -+int styleable AppCompatTheme_actionModePasteDrawable 22 -+int styleable AppCompatTheme_actionModePopupWindowStyle 23 -+int styleable AppCompatTheme_actionModeSelectAllDrawable 24 -+int styleable AppCompatTheme_actionModeShareDrawable 25 -+int styleable AppCompatTheme_actionModeSplitBackground 26 -+int styleable AppCompatTheme_actionModeStyle 27 -+int styleable AppCompatTheme_actionModeTheme 28 -+int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -+int styleable AppCompatTheme_actionOverflowButtonStyle 30 -+int styleable AppCompatTheme_actionOverflowMenuStyle 31 -+int styleable AppCompatTheme_activityChooserViewStyle 32 -+int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -+int styleable AppCompatTheme_alertDialogCenterButtons 34 -+int styleable AppCompatTheme_alertDialogStyle 35 -+int styleable AppCompatTheme_alertDialogTheme 36 -+int styleable AppCompatTheme_android_windowAnimationStyle 37 -+int styleable AppCompatTheme_android_windowIsFloating 38 -+int styleable AppCompatTheme_autoCompleteTextViewStyle 39 -+int styleable AppCompatTheme_borderlessButtonStyle 40 -+int styleable AppCompatTheme_buttonBarButtonStyle 41 -+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 -+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 -+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 -+int styleable AppCompatTheme_buttonBarStyle 45 -+int styleable AppCompatTheme_buttonStyle 46 -+int styleable AppCompatTheme_buttonStyleSmall 47 -+int styleable AppCompatTheme_checkboxStyle 48 -+int styleable AppCompatTheme_checkedTextViewStyle 49 -+int styleable AppCompatTheme_colorAccent 50 -+int styleable AppCompatTheme_colorBackgroundFloating 51 -+int styleable AppCompatTheme_colorButtonNormal 52 -+int styleable AppCompatTheme_colorControlActivated 53 -+int styleable AppCompatTheme_colorControlHighlight 54 -+int styleable AppCompatTheme_colorControlNormal 55 -+int styleable AppCompatTheme_colorError 56 -+int styleable AppCompatTheme_colorPrimary 57 -+int styleable AppCompatTheme_colorPrimaryDark 58 -+int styleable AppCompatTheme_colorSwitchThumbNormal 59 -+int styleable AppCompatTheme_controlBackground 60 -+int styleable AppCompatTheme_dialogCornerRadius 61 -+int styleable AppCompatTheme_dialogPreferredPadding 62 -+int styleable AppCompatTheme_dialogTheme 63 -+int styleable AppCompatTheme_dividerHorizontal 64 -+int styleable AppCompatTheme_dividerVertical 65 -+int styleable AppCompatTheme_dropDownListViewStyle 66 -+int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 -+int styleable AppCompatTheme_editTextBackground 68 -+int styleable AppCompatTheme_editTextColor 69 -+int styleable AppCompatTheme_editTextStyle 70 -+int styleable AppCompatTheme_homeAsUpIndicator 71 -+int styleable AppCompatTheme_imageButtonStyle 72 -+int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 -+int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 -+int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 -+int styleable AppCompatTheme_listDividerAlertDialog 76 -+int styleable AppCompatTheme_listMenuViewStyle 77 -+int styleable AppCompatTheme_listPopupWindowStyle 78 -+int styleable AppCompatTheme_listPreferredItemHeight 79 -+int styleable AppCompatTheme_listPreferredItemHeightLarge 80 -+int styleable AppCompatTheme_listPreferredItemHeightSmall 81 -+int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 -+int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 -+int styleable AppCompatTheme_listPreferredItemPaddingRight 84 -+int styleable AppCompatTheme_listPreferredItemPaddingStart 85 -+int styleable AppCompatTheme_panelBackground 86 -+int styleable AppCompatTheme_panelMenuListTheme 87 -+int styleable AppCompatTheme_panelMenuListWidth 88 -+int styleable AppCompatTheme_popupMenuStyle 89 -+int styleable AppCompatTheme_popupWindowStyle 90 -+int styleable AppCompatTheme_radioButtonStyle 91 -+int styleable AppCompatTheme_ratingBarStyle 92 -+int styleable AppCompatTheme_ratingBarStyleIndicator 93 -+int styleable AppCompatTheme_ratingBarStyleSmall 94 -+int styleable AppCompatTheme_searchViewStyle 95 -+int styleable AppCompatTheme_seekBarStyle 96 -+int styleable AppCompatTheme_selectableItemBackground 97 -+int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 -+int styleable AppCompatTheme_spinnerDropDownItemStyle 99 -+int styleable AppCompatTheme_spinnerStyle 100 -+int styleable AppCompatTheme_switchStyle 101 -+int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 -+int styleable AppCompatTheme_textAppearanceListItem 103 -+int styleable AppCompatTheme_textAppearanceListItemSecondary 104 -+int styleable AppCompatTheme_textAppearanceListItemSmall 105 -+int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 -+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 -+int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 -+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 -+int styleable AppCompatTheme_textColorAlertDialogListItem 110 -+int styleable AppCompatTheme_textColorSearchUrl 111 -+int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 -+int styleable AppCompatTheme_toolbarStyle 113 -+int styleable AppCompatTheme_tooltipForegroundColor 114 -+int styleable AppCompatTheme_tooltipFrameBackground 115 -+int styleable AppCompatTheme_viewInflaterClass 116 -+int styleable AppCompatTheme_windowActionBar 117 -+int styleable AppCompatTheme_windowActionBarOverlay 118 -+int styleable AppCompatTheme_windowActionModeOverlay 119 -+int styleable AppCompatTheme_windowFixedHeightMajor 120 -+int styleable AppCompatTheme_windowFixedHeightMinor 121 -+int styleable AppCompatTheme_windowFixedWidthMajor 122 -+int styleable AppCompatTheme_windowFixedWidthMinor 123 -+int styleable AppCompatTheme_windowMinWidthMajor 124 -+int styleable AppCompatTheme_windowMinWidthMinor 125 -+int styleable AppCompatTheme_windowNoTitle 126 -+int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 -+int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 -+int[] styleable ButtonBarLayout { 0x0 } -+int styleable ButtonBarLayout_allowStacking 0 -+int[] styleable Capability { 0x0, 0x0 } -+int styleable Capability_queryPatterns 0 -+int styleable Capability_shortcutMatchRequired 1 -+int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } -+int styleable CheckedTextView_android_checkMark 0 -+int styleable CheckedTextView_checkMarkCompat 1 -+int styleable CheckedTextView_checkMarkTint 2 -+int styleable CheckedTextView_checkMarkTintMode 3 -+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } -+int styleable ColorStateListItem_alpha 0 -+int styleable ColorStateListItem_android_alpha 1 -+int styleable ColorStateListItem_android_color 2 -+int styleable ColorStateListItem_android_lStar 3 -+int styleable ColorStateListItem_lStar 4 -+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } -+int styleable CompoundButton_android_button 0 -+int styleable CompoundButton_buttonCompat 1 -+int styleable CompoundButton_buttonTint 2 -+int styleable CompoundButton_buttonTintMode 3 -+int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable DrawerArrowToggle_arrowHeadLength 0 -+int styleable DrawerArrowToggle_arrowShaftLength 1 -+int styleable DrawerArrowToggle_barLength 2 -+int styleable DrawerArrowToggle_color 3 -+int styleable DrawerArrowToggle_drawableSize 4 -+int styleable DrawerArrowToggle_gapBetweenBars 5 -+int styleable DrawerArrowToggle_spinBars 6 -+int styleable DrawerArrowToggle_thickness 7 -+int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable FontFamily_fontProviderAuthority 0 -+int styleable FontFamily_fontProviderCerts 1 -+int styleable FontFamily_fontProviderFetchStrategy 2 -+int styleable FontFamily_fontProviderFetchTimeout 3 -+int styleable FontFamily_fontProviderPackage 4 -+int styleable FontFamily_fontProviderQuery 5 -+int styleable FontFamily_fontProviderSystemFontFamily 6 -+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable FontFamilyFont_android_font 0 -+int styleable FontFamilyFont_android_fontStyle 1 -+int styleable FontFamilyFont_android_fontVariationSettings 2 -+int styleable FontFamilyFont_android_fontWeight 3 -+int styleable FontFamilyFont_android_ttcIndex 4 -+int styleable FontFamilyFont_font 5 -+int styleable FontFamilyFont_fontStyle 6 -+int styleable FontFamilyFont_fontVariationSettings 7 -+int styleable FontFamilyFont_fontWeight 8 -+int styleable FontFamilyFont_ttcIndex 9 -+int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } -+int styleable Fragment_android_id 0 -+int styleable Fragment_android_name 1 -+int styleable Fragment_android_tag 2 -+int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } -+int styleable FragmentContainerView_android_name 0 -+int styleable FragmentContainerView_android_tag 1 -+int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable GenericDraweeHierarchy_actualImageScaleType 0 -+int styleable GenericDraweeHierarchy_backgroundImage 1 -+int styleable GenericDraweeHierarchy_fadeDuration 2 -+int styleable GenericDraweeHierarchy_failureImage 3 -+int styleable GenericDraweeHierarchy_failureImageScaleType 4 -+int styleable GenericDraweeHierarchy_overlayImage 5 -+int styleable GenericDraweeHierarchy_placeholderImage 6 -+int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 -+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 -+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 -+int styleable GenericDraweeHierarchy_progressBarImage 10 -+int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 -+int styleable GenericDraweeHierarchy_retryImage 12 -+int styleable GenericDraweeHierarchy_retryImageScaleType 13 -+int styleable GenericDraweeHierarchy_roundAsCircle 14 -+int styleable GenericDraweeHierarchy_roundBottomEnd 15 -+int styleable GenericDraweeHierarchy_roundBottomLeft 16 -+int styleable GenericDraweeHierarchy_roundBottomRight 17 -+int styleable GenericDraweeHierarchy_roundBottomStart 18 -+int styleable GenericDraweeHierarchy_roundTopEnd 19 -+int styleable GenericDraweeHierarchy_roundTopLeft 20 -+int styleable GenericDraweeHierarchy_roundTopRight 21 -+int styleable GenericDraweeHierarchy_roundTopStart 22 -+int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 -+int styleable GenericDraweeHierarchy_roundedCornerRadius 24 -+int styleable GenericDraweeHierarchy_roundingBorderColor 25 -+int styleable GenericDraweeHierarchy_roundingBorderPadding 26 -+int styleable GenericDraweeHierarchy_roundingBorderWidth 27 -+int styleable GenericDraweeHierarchy_viewAspectRatio 28 -+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } -+int styleable GradientColor_android_centerColor 0 -+int styleable GradientColor_android_centerX 1 -+int styleable GradientColor_android_centerY 2 -+int styleable GradientColor_android_endColor 3 -+int styleable GradientColor_android_endX 4 -+int styleable GradientColor_android_endY 5 -+int styleable GradientColor_android_gradientRadius 6 -+int styleable GradientColor_android_startColor 7 -+int styleable GradientColor_android_startX 8 -+int styleable GradientColor_android_startY 9 -+int styleable GradientColor_android_tileMode 10 -+int styleable GradientColor_android_type 11 -+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } -+int styleable GradientColorItem_android_color 0 -+int styleable GradientColorItem_android_offset 1 -+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } -+int styleable LinearLayoutCompat_android_baselineAligned 0 -+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 -+int styleable LinearLayoutCompat_android_gravity 2 -+int styleable LinearLayoutCompat_android_orientation 3 -+int styleable LinearLayoutCompat_android_weightSum 4 -+int styleable LinearLayoutCompat_divider 5 -+int styleable LinearLayoutCompat_dividerPadding 6 -+int styleable LinearLayoutCompat_measureWithLargestChild 7 -+int styleable LinearLayoutCompat_showDividers 8 -+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } -+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -+int styleable LinearLayoutCompat_Layout_android_layout_height 1 -+int styleable LinearLayoutCompat_Layout_android_layout_weight 2 -+int styleable LinearLayoutCompat_Layout_android_layout_width 3 -+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } -+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -+int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } -+int styleable MenuGroup_android_checkableBehavior 0 -+int styleable MenuGroup_android_enabled 1 -+int styleable MenuGroup_android_id 2 -+int styleable MenuGroup_android_menuCategory 3 -+int styleable MenuGroup_android_orderInCategory 4 -+int styleable MenuGroup_android_visible 5 -+int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable MenuItem_actionLayout 0 -+int styleable MenuItem_actionProviderClass 1 -+int styleable MenuItem_actionViewClass 2 -+int styleable MenuItem_alphabeticModifiers 3 -+int styleable MenuItem_android_alphabeticShortcut 4 -+int styleable MenuItem_android_checkable 5 -+int styleable MenuItem_android_checked 6 -+int styleable MenuItem_android_enabled 7 -+int styleable MenuItem_android_icon 8 -+int styleable MenuItem_android_id 9 -+int styleable MenuItem_android_menuCategory 10 -+int styleable MenuItem_android_numericShortcut 11 -+int styleable MenuItem_android_onClick 12 -+int styleable MenuItem_android_orderInCategory 13 -+int styleable MenuItem_android_title 14 -+int styleable MenuItem_android_titleCondensed 15 -+int styleable MenuItem_android_visible 16 -+int styleable MenuItem_contentDescription 17 -+int styleable MenuItem_iconTint 18 -+int styleable MenuItem_iconTintMode 19 -+int styleable MenuItem_numericModifiers 20 -+int styleable MenuItem_showAsAction 21 -+int styleable MenuItem_tooltipText 22 -+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } -+int styleable MenuView_android_headerBackground 0 -+int styleable MenuView_android_horizontalDivider 1 -+int styleable MenuView_android_itemBackground 2 -+int styleable MenuView_android_itemIconDisabledAlpha 3 -+int styleable MenuView_android_itemTextAppearance 4 -+int styleable MenuView_android_verticalDivider 5 -+int styleable MenuView_android_windowAnimationStyle 6 -+int styleable MenuView_preserveIconSpacing 7 -+int styleable MenuView_subMenuArrow 8 -+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } -+int styleable PopupWindow_android_popupAnimationStyle 0 -+int styleable PopupWindow_android_popupBackground 1 -+int styleable PopupWindow_overlapAnchor 2 -+int[] styleable PopupWindowBackgroundState { 0x0 } -+int styleable PopupWindowBackgroundState_state_above_anchor 0 -+int[] styleable RecycleListView { 0x0, 0x0 } -+int styleable RecycleListView_paddingBottomNoButtons 0 -+int styleable RecycleListView_paddingTopNoTitle 1 -+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SearchView_android_focusable 0 -+int styleable SearchView_android_imeOptions 1 -+int styleable SearchView_android_inputType 2 -+int styleable SearchView_android_maxWidth 3 -+int styleable SearchView_closeIcon 4 -+int styleable SearchView_commitIcon 5 -+int styleable SearchView_defaultQueryHint 6 -+int styleable SearchView_goIcon 7 -+int styleable SearchView_iconifiedByDefault 8 -+int styleable SearchView_layout 9 -+int styleable SearchView_queryBackground 10 -+int styleable SearchView_queryHint 11 -+int styleable SearchView_searchHintIcon 12 -+int styleable SearchView_searchIcon 13 -+int styleable SearchView_submitBackground 14 -+int styleable SearchView_suggestionRowLayout 15 -+int styleable SearchView_voiceIcon 16 -+int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SimpleDraweeView_actualImageResource 0 -+int styleable SimpleDraweeView_actualImageUri 1 -+int styleable SimpleDraweeView_backgroundImage 2 -+int styleable SimpleDraweeView_fadeDuration 3 -+int styleable SimpleDraweeView_failureImage 4 -+int styleable SimpleDraweeView_failureImageScaleType 5 -+int styleable SimpleDraweeView_overlayImage 6 -+int styleable SimpleDraweeView_placeholderImage 7 -+int styleable SimpleDraweeView_placeholderImageScaleType 8 -+int styleable SimpleDraweeView_pressedStateOverlayImage 9 -+int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 -+int styleable SimpleDraweeView_progressBarImage 11 -+int styleable SimpleDraweeView_progressBarImageScaleType 12 -+int styleable SimpleDraweeView_retryImage 13 -+int styleable SimpleDraweeView_retryImageScaleType 14 -+int styleable SimpleDraweeView_roundAsCircle 15 -+int styleable SimpleDraweeView_roundBottomEnd 16 -+int styleable SimpleDraweeView_roundBottomLeft 17 -+int styleable SimpleDraweeView_roundBottomRight 18 -+int styleable SimpleDraweeView_roundBottomStart 19 -+int styleable SimpleDraweeView_roundTopEnd 20 -+int styleable SimpleDraweeView_roundTopLeft 21 -+int styleable SimpleDraweeView_roundTopRight 22 -+int styleable SimpleDraweeView_roundTopStart 23 -+int styleable SimpleDraweeView_roundWithOverlayColor 24 -+int styleable SimpleDraweeView_roundedCornerRadius 25 -+int styleable SimpleDraweeView_roundingBorderColor 26 -+int styleable SimpleDraweeView_roundingBorderPadding 27 -+int styleable SimpleDraweeView_roundingBorderWidth 28 -+int styleable SimpleDraweeView_viewAspectRatio 29 -+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } -+int styleable Spinner_android_dropDownWidth 0 -+int styleable Spinner_android_entries 1 -+int styleable Spinner_android_popupBackground 2 -+int styleable Spinner_android_prompt 3 -+int styleable Spinner_popupTheme 4 -+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable StateListDrawable_android_constantSize 0 -+int styleable StateListDrawable_android_dither 1 -+int styleable StateListDrawable_android_enterFadeDuration 2 -+int styleable StateListDrawable_android_exitFadeDuration 3 -+int styleable StateListDrawable_android_variablePadding 4 -+int styleable StateListDrawable_android_visible 5 -+int[] styleable StateListDrawableItem { 0x1010199 } -+int styleable StateListDrawableItem_android_drawable 0 -+int[] styleable SwipeRefreshLayout { 0x0 } -+int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 -+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SwitchCompat_android_textOff 0 -+int styleable SwitchCompat_android_textOn 1 -+int styleable SwitchCompat_android_thumb 2 -+int styleable SwitchCompat_showText 3 -+int styleable SwitchCompat_splitTrack 4 -+int styleable SwitchCompat_switchMinWidth 5 -+int styleable SwitchCompat_switchPadding 6 -+int styleable SwitchCompat_switchTextAppearance 7 -+int styleable SwitchCompat_thumbTextPadding 8 -+int styleable SwitchCompat_thumbTint 9 -+int styleable SwitchCompat_thumbTintMode 10 -+int styleable SwitchCompat_track 11 -+int styleable SwitchCompat_trackTint 12 -+int styleable SwitchCompat_trackTintMode 13 -+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } -+int styleable TextAppearance_android_fontFamily 0 -+int styleable TextAppearance_android_shadowColor 1 -+int styleable TextAppearance_android_shadowDx 2 -+int styleable TextAppearance_android_shadowDy 3 -+int styleable TextAppearance_android_shadowRadius 4 -+int styleable TextAppearance_android_textColor 5 -+int styleable TextAppearance_android_textColorHint 6 -+int styleable TextAppearance_android_textColorLink 7 -+int styleable TextAppearance_android_textFontWeight 8 -+int styleable TextAppearance_android_textSize 9 -+int styleable TextAppearance_android_textStyle 10 -+int styleable TextAppearance_android_typeface 11 -+int styleable TextAppearance_fontFamily 12 -+int styleable TextAppearance_fontVariationSettings 13 -+int styleable TextAppearance_textAllCaps 14 -+int styleable TextAppearance_textLocale 15 -+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable Toolbar_android_gravity 0 -+int styleable Toolbar_android_minHeight 1 -+int styleable Toolbar_buttonGravity 2 -+int styleable Toolbar_collapseContentDescription 3 -+int styleable Toolbar_collapseIcon 4 -+int styleable Toolbar_contentInsetEnd 5 -+int styleable Toolbar_contentInsetEndWithActions 6 -+int styleable Toolbar_contentInsetLeft 7 -+int styleable Toolbar_contentInsetRight 8 -+int styleable Toolbar_contentInsetStart 9 -+int styleable Toolbar_contentInsetStartWithNavigation 10 -+int styleable Toolbar_logo 11 -+int styleable Toolbar_logoDescription 12 -+int styleable Toolbar_maxButtonHeight 13 -+int styleable Toolbar_menu 14 -+int styleable Toolbar_navigationContentDescription 15 -+int styleable Toolbar_navigationIcon 16 -+int styleable Toolbar_popupTheme 17 -+int styleable Toolbar_subtitle 18 -+int styleable Toolbar_subtitleTextAppearance 19 -+int styleable Toolbar_subtitleTextColor 20 -+int styleable Toolbar_title 21 -+int styleable Toolbar_titleMargin 22 -+int styleable Toolbar_titleMarginBottom 23 -+int styleable Toolbar_titleMarginEnd 24 -+int styleable Toolbar_titleMarginStart 25 -+int styleable Toolbar_titleMarginTop 26 -+int styleable Toolbar_titleMargins 27 -+int styleable Toolbar_titleTextAppearance 28 -+int styleable Toolbar_titleTextColor 29 -+int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } -+int styleable View_android_focusable 0 -+int styleable View_android_theme 1 -+int styleable View_paddingEnd 2 -+int styleable View_paddingStart 3 -+int styleable View_theme 4 -+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } -+int styleable ViewBackgroundHelper_android_background 0 -+int styleable ViewBackgroundHelper_backgroundTint 1 -+int styleable ViewBackgroundHelper_backgroundTintMode 2 -+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } -+int styleable ViewStubCompat_android_id 0 -+int styleable ViewStubCompat_android_inflatedId 1 -+int styleable ViewStubCompat_android_layout 2 -+int xml rn_dev_preferences 0x0 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_command_livemarkdown b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_command_livemarkdown -new file mode 100755 -index 0000000..123bb7e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_command_livemarkdown -@@ -0,0 +1,4 @@ -+/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -C \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a \ -+ livemarkdown -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_model.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_model.json -new file mode 100644 -index 0000000..7996153 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_model.json -@@ -0,0 +1,214 @@ -+{ -+ "info": { -+ "name": "arm64-v8a", -+ "bitness": 64, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "arm64", -+ "triple": "aarch64-linux-android", -+ "llvmTriple": "aarch64-none-linux-android" -+ }, -+ "cxxBuildFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "soFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a", -+ "soRepublishFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cmake/debug/obj/arm64-v8a", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [], -+ "variantName": "debug", -+ "isDebuggableEnabled": true, -+ "validAbiList": [ -+ "arm64-v8a" -+ ], -+ "buildTargetSet": [], -+ "implicitBuildTargetSet": [], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx", -+ "intermediatesBaseFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates", -+ "intermediatesFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx", -+ "gradleModulePathName": ":expensify_react-native-live-markdown", -+ "moduleRootFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android", -+ "moduleBuildFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build.gradle", -+ "makeFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "ndkFolderBeforeSymLinking": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "ndkVersion": "27.0.12077973", -+ "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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cmakeVersionFromDsl": "3.22.1" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", -+ "arm64-v8a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", -+ "x86_64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" -+ }, -+ "LIBCXX_STATIC": {}, -+ "NONE": {}, -+ "SYSTEM": {} -+ }, -+ "project": { -+ "rootBuildGradleFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/Mobile-Expensify/Android", -+ "sdkFolder": "/Users/chris/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "ideBuildTargetAbi": "arm64-v8a", -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "4k2e5u4p3k1v4uu4d642o422io324kw2t5y2j5g2g3719431b292y53173j2k", -+ "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.0.12077973.\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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "configurationArguments": [ -+ "-H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp", -+ "-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/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a", -+ "-DCMAKE_BUILD_TYPE\u003dDebug", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab", -+ "-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a", -+ "-GNinja", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79" -+ ], -+ "stlLibraryFile": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "intermediatesParentFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stderr_livemarkdown.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stderr_livemarkdown.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stdout_livemarkdown.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stdout_livemarkdown.txt -new file mode 100644 -index 0000000..716f02f ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/build_stdout_livemarkdown.txt -@@ -0,0 +1,3 @@ -+ninja: Entering directory `/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a' -+[0/2] Re-checking globbed directories... -+ninja: no work to do. -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_command -new file mode 100755 -index 0000000..a81f0fc ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_command -@@ -0,0 +1,21 @@ -+/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp \ -+ -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/chris/Library/Android/sdk/ndk/27.0.12077973 \ -+ -DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a \ -+ -DCMAKE_BUILD_TYPE=Debug \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/arm64-v8a/prefab \ -+ -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a \ -+ -GNinja \ -+ -DANDROID_STL=c++_shared \ -+ -DANDROID_TOOLCHAIN=clang \ -+ -DREACT_NATIVE_MINOR_VERSION=79 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stdout.txt -new file mode 100644 -index 0000000..1c4d6ce ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/configure_stdout.txt -@@ -0,0 +1,15 @@ -+-- The C compiler identification is Clang 18.0.1 -+-- The CXX compiler identification is Clang 18.0.1 -+-- Detecting C compiler ABI info -+-- Detecting C compiler ABI info - done -+-- Check for working C compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1089_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1089_timing.txt -new file mode 100644 -index 0000000..5e2a36b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1089_timing.txt -@@ -0,0 +1,3 @@ -+# C/C++ build system timings -+generate_cxx_metadata 18ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1284_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1284_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1284_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1473_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1473_timing.txt -new file mode 100644 -index 0000000..6443fc5 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1473_timing.txt -@@ -0,0 +1,3 @@ -+# C/C++ build system timings -+generate_cxx_metadata 14ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1652_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1652_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1652_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1863_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1863_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_1863_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_316_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_316_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_316_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_353_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_353_timing.txt -new file mode 100644 -index 0000000..2225dda ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_353_timing.txt -@@ -0,0 +1,17 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ generate-prefab-packages -+ [gap of 53ms] -+ exec-prefab 1660ms -+ [gap of 43ms] -+ generate-prefab-packages completed in 1756ms -+ execute-generate-process -+ exec-configure 4928ms -+ [gap of 23ms] -+ execute-generate-process completed in 4957ms -+ [gap of 26ms] -+ remove-unexpected-so-files 20ms -+ [gap of 76ms] -+ write-metadata-json-to-file 139ms -+generate_cxx_metadata completed in 7007ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_529_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_529_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_529_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_706_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_706_timing.txt -new file mode 100644 -index 0000000..0d22a9b ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_706_timing.txt -@@ -0,0 +1,7 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ [gap of 62ms] -+ create-invalidation-state 43ms -+ [gap of 23ms] -+generate_cxx_metadata completed in 128ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_853_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_853_timing.txt -new file mode 100644 -index 0000000..67efcfd ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/generate_cxx_metadata_853_timing.txt -@@ -0,0 +1,3 @@ -+# C/C++ build system timings -+generate_cxx_metadata 15ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/metadata_generation_record.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/metadata_generation_record.json -new file mode 100644 -index 0000000..ee43a6d ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", -+ "tag_": "debug|arm64-v8a", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON \u0027/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/arm64-v8a/android_gradle_build.json\u0027 was up-to-date", -+ "file_": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_command -new file mode 100755 -index 0000000..26b5d32 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_command -@@ -0,0 +1,22 @@ -+"/Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java" \ -+ --class-path \ -+ /Users/chris/.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/b1/xj_1nb1j5w9gx10ntjfr6jc40000gn/T/agp-prefab-staging18255998437684026286/staged-cli-output \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123 \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274 \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64 \ -+ /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/arm64-v8a/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/build_model.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/build_model.json -new file mode 100644 -index 0000000..069a4a5 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/build_model.json -@@ -0,0 +1,216 @@ -+{ -+ "info": { -+ "name": "x86", -+ "bitness": 32, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "x86", -+ "triple": "i686-linux-android", -+ "llvmTriple": "i686-none-linux-android" -+ }, -+ "cxxBuildFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "soFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86", -+ "soRepublishFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cmake/debug/obj/x86", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [], -+ "variantName": "debug", -+ "isDebuggableEnabled": true, -+ "validAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "x86", -+ "x86_64" -+ ], -+ "buildTargetSet": [], -+ "implicitBuildTargetSet": [], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx", -+ "intermediatesBaseFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates", -+ "intermediatesFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx", -+ "gradleModulePathName": ":expensify_react-native-live-markdown", -+ "moduleRootFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android", -+ "moduleBuildFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build.gradle", -+ "makeFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "ndkFolderBeforeSymLinking": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "ndkVersion": "27.0.12077973", -+ "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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cmakeVersionFromDsl": "3.22.1" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", -+ "arm64-v8a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", -+ "x86_64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" -+ }, -+ "LIBCXX_STATIC": {}, -+ "NONE": {}, -+ "SYSTEM": {} -+ }, -+ "project": { -+ "rootBuildGradleFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/Mobile-Expensify/Android", -+ "sdkFolder": "/Users/chris/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/debug/prefabDebugConfigurePackage/prefab_publication.json", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "4k2e5u4p3k1v4uu4d642o422io324kw2t5y2j5g2g3719431b292y53173j2k", -+ "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.0.12077973.\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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "configurationArguments": [ -+ "-H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp", -+ "-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/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86", -+ "-DCMAKE_BUILD_TYPE\u003dDebug", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab", -+ "-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86", -+ "-GNinja", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79" -+ ], -+ "stlLibraryFile": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", -+ "intermediatesParentFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_command -new file mode 100755 -index 0000000..d7e66f9 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_command -@@ -0,0 +1,21 @@ -+/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp \ -+ -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/chris/Library/Android/sdk/ndk/27.0.12077973 \ -+ -DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/x86 \ -+ -DCMAKE_BUILD_TYPE=Debug \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/prefab/x86/prefab \ -+ -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 \ -+ -GNinja \ -+ -DANDROID_STL=c++_shared \ -+ -DANDROID_TOOLCHAIN=clang \ -+ -DREACT_NATIVE_MINOR_VERSION=79 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stdout.txt -new file mode 100644 -index 0000000..c390583 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/configure_stdout.txt -@@ -0,0 +1,15 @@ -+-- The C compiler identification is Clang 18.0.1 -+-- The CXX compiler identification is Clang 18.0.1 -+-- Detecting C compiler ABI info -+-- Detecting C compiler ABI info - done -+-- Check for working C compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_245_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_245_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_245_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_252_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_252_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_252_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_260_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_260_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_260_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_34_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_34_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_34_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_484_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_484_timing.txt -new file mode 100644 -index 0000000..a01da15 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_484_timing.txt -@@ -0,0 +1,3 @@ -+# C/C++ build system timings -+generate_cxx_metadata 17ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_555_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_555_timing.txt -new file mode 100644 -index 0000000..3b12aa9 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_555_timing.txt -@@ -0,0 +1,11 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ generate-prefab-packages -+ [gap of 31ms] -+ exec-prefab 573ms -+ generate-prefab-packages completed in 611ms -+ execute-generate-process -+ exec-configure 668ms -+ execute-generate-process completed in 671ms -+generate_cxx_metadata completed in 1289ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_683_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_683_timing.txt -new file mode 100644 -index 0000000..9708df4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/generate_cxx_metadata_683_timing.txt -@@ -0,0 +1,2 @@ -+# C/C++ build system timings -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/metadata_generation_record.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/metadata_generation_record.json -new file mode 100644 -index 0000000..47f7553 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", -+ "tag_": "debug|x86", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON \u0027/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/Debug/4k2e5u4p/x86/android_gradle_build.json\u0027 was up-to-date", -+ "file_": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_command -new file mode 100755 -index 0000000..fa1fcc0 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_command -@@ -0,0 +1,22 @@ -+"/Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java" \ -+ --class-path \ -+ /Users/chris/.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/b1/xj_1nb1j5w9gx10ntjfr6jc40000gn/T/agp-prefab-staging19864913764767043/staged-cli-output \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3 \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4 \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55 \ -+ /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/logs/x86/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libc++_shared.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libc++_shared.so -new file mode 100755 -index 0000000..a80c8b3 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libc++_shared.so differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libfbjni.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libfbjni.so -new file mode 100644 -index 0000000..aadd325 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libfbjni.so differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libjsi.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libjsi.so -new file mode 100755 -index 0000000..7fe4b18 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libjsi.so differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so -new file mode 100755 -index 0000000..39b0434 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/liblivemarkdown.so differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libreactnative.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libreactnative.so -new file mode 100755 -index 0000000..cd0074f -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libreactnative.so differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libworklets.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libworklets.so -new file mode 100755 -index 0000000..7b3a105 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/Debug/4k2e5u4p/obj/arm64-v8a/libworklets.so differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/build_model.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/build_model.json -new file mode 100644 -index 0000000..2c2e08e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/build_model.json -@@ -0,0 +1,216 @@ -+{ -+ "info": { -+ "name": "x86", -+ "bitness": 32, -+ "isDefault": true, -+ "isDeprecated": false, -+ "architecture": "x86", -+ "triple": "i686-linux-android", -+ "llvmTriple": "i686-none-linux-android" -+ }, -+ "cxxBuildFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "soFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86", -+ "soRepublishFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cmake/release/obj/x86", -+ "abiPlatformVersion": 24, -+ "cmake": { -+ "effectiveConfiguration": { -+ "inheritEnvironments": [], -+ "variables": [] -+ } -+ }, -+ "variant": { -+ "buildSystemArgumentList": [ -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79" -+ ], -+ "cFlagsList": [], -+ "cppFlagsList": [], -+ "variantName": "release", -+ "isDebuggableEnabled": false, -+ "validAbiList": [ -+ "armeabi-v7a", -+ "arm64-v8a", -+ "x86", -+ "x86_64" -+ ], -+ "buildTargetSet": [], -+ "implicitBuildTargetSet": [], -+ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", -+ "module": { -+ "cxxFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx", -+ "intermediatesBaseFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates", -+ "intermediatesFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx", -+ "gradleModulePathName": ":expensify_react-native-live-markdown", -+ "moduleRootFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android", -+ "moduleBuildFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build.gradle", -+ "makeFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", -+ "buildSystem": "CMAKE", -+ "ndkFolder": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "ndkFolderBeforeSymLinking": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "ndkVersion": "27.0.12077973", -+ "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/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", -+ "cmake": { -+ "cmakeExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake", -+ "cmakeVersionFromDsl": "3.22.1" -+ }, -+ "stlSharedObjectMap": { -+ "LIBCXX_SHARED": { -+ "armeabi-v7a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", -+ "arm64-v8a": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", -+ "riscv64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", -+ "x86": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", -+ "x86_64": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" -+ }, -+ "LIBCXX_STATIC": {}, -+ "NONE": {}, -+ "SYSTEM": {} -+ }, -+ "project": { -+ "rootBuildGradleFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/Mobile-Expensify/Android", -+ "sdkFolder": "/Users/chris/Library/Android/sdk", -+ "isBuildOnlyTargetAbiEnabled": true, -+ "isCmakeBuildCohabitationEnabled": false, -+ "isPrefabEnabled": true -+ }, -+ "outputOptions": [], -+ "ninjaExe": "/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "hasBuildTimeInformation": true -+ }, -+ "prefabClassPaths": [ -+ "/Users/chris/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" -+ ], -+ "prefabPackages": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/release/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/release/prefab", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", -+ "/Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab" -+ ], -+ "prefabPackageConfigurations": [ -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json", -+ "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/release/prefabReleaseConfigurePackage/prefab_publication.json" -+ ], -+ "stlType": "c++_shared", -+ "optimizationTag": "RelWithDebInfo" -+ }, -+ "buildSettings": { -+ "environmentVariables": [] -+ }, -+ "prefabFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86", -+ "isActiveAbi": true, -+ "fullConfigurationHash": "33o4e1g2f42t4fl4s2g5txy4f2g1u6512m604o2b4g2i6k575k3x551u5j", -+ "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.0.12077973.\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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dRelWithDebInfo\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/$HASH/prefab/$ABI/prefab\n-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DANDROID_TOOLCHAIN\u003dclang\n-DREACT_NATIVE_MINOR_VERSION\u003d79", -+ "configurationArguments": [ -+ "-H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp", -+ "-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/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "-DCMAKE_ANDROID_NDK\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973", -+ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake", -+ "-DCMAKE_MAKE_PROGRAM\u003d/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja", -+ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86", -+ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86", -+ "-DCMAKE_BUILD_TYPE\u003dRelWithDebInfo", -+ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab", -+ "-B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86", -+ "-GNinja", -+ "-DANDROID_STL\u003dc++_shared", -+ "-DANDROID_TOOLCHAIN\u003dclang", -+ "-DREACT_NATIVE_MINOR_VERSION\u003d79" -+ ], -+ "stlLibraryFile": "/Users/chris/Library/Android/sdk/ndk/27.0.12077973/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", -+ "intermediatesParentFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_command -new file mode 100755 -index 0000000..85527c3 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_command -@@ -0,0 +1,21 @@ -+/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/cmake \ -+ -H/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp \ -+ -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/chris/Library/Android/sdk/ndk/27.0.12077973 \ -+ -DCMAKE_ANDROID_NDK=/Users/chris/Library/Android/sdk/ndk/27.0.12077973 \ -+ -DCMAKE_TOOLCHAIN_FILE=/Users/chris/Library/Android/sdk/ndk/27.0.12077973/build/cmake/android.toolchain.cmake \ -+ -DCMAKE_MAKE_PROGRAM=/Users/chris/Library/Android/sdk/cmake/3.22.1/bin/ninja \ -+ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 \ -+ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/obj/x86 \ -+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -+ -DCMAKE_FIND_ROOT_PATH=/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/prefab/x86/prefab \ -+ -B/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 \ -+ -GNinja \ -+ -DANDROID_STL=c++_shared \ -+ -DANDROID_TOOLCHAIN=clang \ -+ -DREACT_NATIVE_MINOR_VERSION=79 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stdout.txt -new file mode 100644 -index 0000000..ecce047 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/configure_stdout.txt -@@ -0,0 +1,15 @@ -+-- The C compiler identification is Clang 18.0.1 -+-- The CXX compiler identification is Clang 18.0.1 -+-- Detecting C compiler ABI info -+-- Detecting C compiler ABI info - done -+-- Check for working C compiler: /Users/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Library/Android/sdk/ndk/27.0.12077973/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_251_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_251_timing.txt -new file mode 100644 -index 0000000..3bd9be9 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_251_timing.txt -@@ -0,0 +1,3 @@ -+# C/C++ build system timings -+generate_cxx_metadata 10ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_255_timing.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_255_timing.txt -new file mode 100644 -index 0000000..735b593 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/generate_cxx_metadata_255_timing.txt -@@ -0,0 +1,13 @@ -+# C/C++ build system timings -+generate_cxx_metadata -+ generate-prefab-packages -+ [gap of 12ms] -+ exec-prefab 611ms -+ generate-prefab-packages completed in 628ms -+ execute-generate-process -+ exec-configure 1010ms -+ [gap of 31ms] -+ execute-generate-process completed in 1042ms -+ [gap of 15ms] -+generate_cxx_metadata completed in 1686ms -+ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/metadata_generation_record.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/metadata_generation_record.json -new file mode 100644 -index 0000000..1ac8b8f ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", -+ "tag_": "release|x86", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON \u0027/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/.cxx/RelWithDebInfo/33o4e1g2/x86/android_gradle_build.json\u0027 was up-to-date", -+ "file_": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", -+ "tag_": "release|x86", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ }, -+ { -+ "level_": 0, -+ "message_": "JSON generation completed without problems", -+ "file_": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/cpp/CMakeLists.txt", -+ "tag_": "release|x86", -+ "diagnosticCode_": 0, -+ "memoizedIsInitialized": 1, -+ "unknownFields": { -+ "fields": {} -+ }, -+ "memoizedSize": -1, -+ "memoizedHashCode": 0 -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_command b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_command -new file mode 100755 -index 0000000..d10a00f ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_command -@@ -0,0 +1,22 @@ -+/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home/bin/java \ -+ --class-path \ -+ /Users/chris/.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/b1/xj_1nb1j5w9gx10ntjfr6jc40000gn/T/agp-prefab-staging6631222449705268583/staged-cli-output \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5 \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6 \ -+ /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5 \ -+ /Users/chris/.gradle/caches/8.13/transforms/331f3d19491c3d2f7e030a03f74853a4/transformed/fbjni-0.7.0/prefab -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_stderr.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_stderr.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_stdout.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/RelWithDebInfo/33o4e1g2/logs/x86/prefab_stdout.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/hermestooling/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsctooling/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/jsi/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/modules/reactnative/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab.json -new file mode 100644 -index 0000000..5688f33 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "ReactAndroid", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.79.2" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab_publication.json -new file mode 100644 -index 0000000..49b3cfc ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/1w4m6123/prefab_publication.json -@@ -0,0 +1,72 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":packages:react-native:ReactAndroid", -+ "packageInfo": { -+ "packageName": "ReactAndroid", -+ "packageVersion": "0.79.2", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "hermestooling", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libhermestooling.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/arm64-v8a/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "jsctooling", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsctooling.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/arm64-v8a/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "jsi", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libjsi.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/arm64-v8a/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "reactnative", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/arm64-v8a/libreactnative.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/arm64-v8a/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/hermestooling/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsctooling/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/jsi/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/modules/reactnative/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab.json -new file mode 100644 -index 0000000..5688f33 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "ReactAndroid", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.79.2" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab_publication.json -new file mode 100644 -index 0000000..15c8a0d ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/2c45zgh3/prefab_publication.json -@@ -0,0 +1,72 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":packages:react-native:ReactAndroid", -+ "packageInfo": { -+ "packageName": "ReactAndroid", -+ "packageVersion": "0.79.2", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "hermestooling", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libhermestooling.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/x86/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "jsctooling", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsctooling.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/x86/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "jsi", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libjsi.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/x86/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "reactnative", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/Debug/46j422n5/obj/x86/libreactnative.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/Debug/46j422n5/x86/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/hermestooling/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsctooling/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/jsi/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/modules/reactnative/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab.json -new file mode 100644 -index 0000000..5688f33 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "ReactAndroid", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.79.2" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab_publication.json -new file mode 100644 -index 0000000..4aa6b39 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/6p5324l5/prefab_publication.json -@@ -0,0 +1,72 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/prefab_package/release/prefab", -+ "gradlePath": ":packages:react-native:ReactAndroid", -+ "packageInfo": { -+ "packageName": "ReactAndroid", -+ "packageVersion": "0.79.2", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "hermestooling", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/hermestooling", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libhermestooling.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/RelWithDebInfo/5x4pv4p6/x86/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "jsctooling", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsctooling", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsctooling.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/RelWithDebInfo/5x4pv4p6/x86/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "jsi", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/jsi", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libjsi.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/RelWithDebInfo/5x4pv4p6/x86/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "reactnative", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/prefab-headers/reactnative", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/build/intermediates/cxx/RelWithDebInfo/5x4pv4p6/obj/x86/libreactnative.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/.cxx/RelWithDebInfo/5x4pv4p6/x86/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/module.json -new file mode 100644 -index 0000000..4438faf ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/modules/libhermes/module.json -@@ -0,0 +1,5 @@ -+{ -+ "export_libraries": [], -+ "library_name": "libhermes", -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab.json -new file mode 100644 -index 0000000..b559523 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "hermes-engine", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.79.2" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab_publication.json -new file mode 100644 -index 0000000..5d5f08e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/404n7274/prefab_publication.json -@@ -0,0 +1,28 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":packages:react-native:ReactAndroid:hermes-engine", -+ "packageInfo": { -+ "packageName": "hermes-engine", -+ "packageVersion": "0.79.2", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "libhermes", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers", -+ "moduleExportLibraries": [], -+ "moduleLibraryName": "libhermes", -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/Release/5o5v6w66/obj/arm64-v8a/libhermes.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/.cxx/Release/5o5v6w66/arm64-v8a/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/module.json -new file mode 100644 -index 0000000..4438faf ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/modules/libhermes/module.json -@@ -0,0 +1,5 @@ -+{ -+ "export_libraries": [], -+ "library_name": "libhermes", -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab.json -new file mode 100644 -index 0000000..b559523 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "hermes-engine", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.79.2" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab_publication.json -new file mode 100644 -index 0000000..34cc8b8 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/6u592wi6/prefab_publication.json -@@ -0,0 +1,28 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/release/prefab", -+ "gradlePath": ":packages:react-native:ReactAndroid:hermes-engine", -+ "packageInfo": { -+ "packageName": "hermes-engine", -+ "packageVersion": "0.79.2", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "libhermes", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers", -+ "moduleExportLibraries": [], -+ "moduleLibraryName": "libhermes", -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/MinSizeRel/2r4v3745/obj/x86/libhermes.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/.cxx/MinSizeRel/2r4v3745/x86/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/module.json -new file mode 100644 -index 0000000..4438faf ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/modules/libhermes/module.json -@@ -0,0 +1,5 @@ -+{ -+ "export_libraries": [], -+ "library_name": "libhermes", -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab.json -new file mode 100644 -index 0000000..b559523 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab.json -@@ -0,0 +1,6 @@ -+{ -+ "name": "hermes-engine", -+ "schema_version": 2, -+ "dependencies": [], -+ "version": "0.79.2" -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab_publication.json -new file mode 100644 -index 0000000..319c822 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/packages/react-native/ReactAndroid/hermes-engine/k1o3r6o4/prefab_publication.json -@@ -0,0 +1,28 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/prefab_package/debug/prefab", -+ "gradlePath": ":packages:react-native:ReactAndroid:hermes-engine", -+ "packageInfo": { -+ "packageName": "hermes-engine", -+ "packageVersion": "0.79.2", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "libhermes", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/prefab-headers", -+ "moduleExportLibraries": [], -+ "moduleLibraryName": "libhermes", -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/build/intermediates/cxx/Release/5o5v6w66/obj/x86/libhermes.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native/ReactAndroid/hermes-engine/.cxx/Release/5o5v6w66/x86/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/reanimated/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/modules/worklets/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab.json -new file mode 100644 -index 0000000..3551a3a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab_publication.json -new file mode 100644 -index 0000000..b7c6bf0 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/0a39h4t5/prefab_publication.json -@@ -0,0 +1,42 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", -+ "gradlePath": ":react-native-reanimated", -+ "packageInfo": { -+ "packageName": "react-native-reanimated", -+ "packageVersion": "3.17.1", -+ "packageSchemaVersion": 2, -+ "packageDependencies": [], -+ "modules": [ -+ { -+ "moduleName": "reanimated", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libreanimated.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/RelWithDebInfo/3i3ot5h5/x86/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "worklets", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/RelWithDebInfo/3i3ot5h5/obj/x86/libworklets.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/RelWithDebInfo/3i3ot5h5/x86/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/reanimated/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/libs/android.arm64-v8a/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/libs/android.arm64-v8a/abi.json -new file mode 100644 -index 0000000..d307572 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/libs/android.arm64-v8a/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "arm64-v8a", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/modules/worklets/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab.json -new file mode 100644 -index 0000000..3551a3a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab_publication.json -new file mode 100644 -index 0000000..067a43e ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/2x3o3y64/prefab_publication.json -@@ -0,0 +1,42 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libreanimated.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/Debug/5bc2d5h2/arm64-v8a/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "worklets", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "arm64-v8a", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/arm64-v8a/libworklets.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/Debug/5bc2d5h2/arm64-v8a/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/reanimated/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/include/placeholder.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/include/placeholder.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/libs/android.x86/abi.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/libs/android.x86/abi.json -new file mode 100644 -index 0000000..e37d79c ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/libs/android.x86/abi.json -@@ -0,0 +1,7 @@ -+{ -+ "abi": "x86", -+ "api": 24, -+ "ndk": 27, -+ "stl": "c++_shared", -+ "static": false -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/module.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/module.json -new file mode 100644 -index 0000000..b6a8fc6 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/modules/worklets/module.json -@@ -0,0 +1,4 @@ -+{ -+ "export_libraries": [], -+ "android": {} -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab.json -new file mode 100644 -index 0000000..3551a3a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/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/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab_publication.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab_publication.json -new file mode 100644 -index 0000000..49d82c1 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/cxx/refs/react-native-reanimated/f6l58e55/prefab_publication.json -@@ -0,0 +1,42 @@ -+{ -+ "installationFolder": "/Users/chris/Projects/Margelo/ExpensifyApp3/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/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libreanimated.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/Debug/5bc2d5h2/x86/android_gradle_build.json" -+ } -+ ] -+ }, -+ { -+ "moduleName": "worklets", -+ "moduleHeaders": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", -+ "moduleExportLibraries": [], -+ "abis": [ -+ { -+ "abiName": "x86", -+ "abiApi": 24, -+ "abiNdkMajor": 27, -+ "abiStl": "c++_shared", -+ "abiLibrary": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/5bc2d5h2/obj/x86/libworklets.so", -+ "abiAndroidGradleBuildJsonFile": "/Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-reanimated/android/.cxx/Debug/5bc2d5h2/x86/android_gradle_build.json" -+ } -+ ] -+ } -+ ] -+ } -+} -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -new file mode 100644 -index 0000000..9939f51 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -@@ -0,0 +1 @@ -+#Tue Jun 24 13:45:23 CEST 2025 -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -new file mode 100644 -index 0000000..2e0c04a ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -new file mode 100644 -index 0000000..369f79d ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -new file mode 100644 -index 0000000..cf75989 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/packageDebugAssets/merger.xml -new file mode 100644 -index 0000000..19a8a34 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/incremental/packageDebugAssets/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/BuildConfig.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/BuildConfig.class -new file mode 100644 -index 0000000..aac1d38 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/BuildConfig.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomFabricUIManager.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomFabricUIManager.class -new file mode 100644 -index 0000000..020f19a -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomFabricUIManager.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager$1.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager$1.class -new file mode 100644 -index 0000000..bca3262 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager$1.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager.class -new file mode 100644 -index 0000000..890140c -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/CustomMountingManager.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModule.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModule.class -new file mode 100644 -index 0000000..1a546f6 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModule.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModuleSpec.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModuleSpec.class -new file mode 100644 -index 0000000..b4c79eb -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownModuleSpec.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage$1.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage$1.class -new file mode 100644 -index 0000000..f7f099e -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage$1.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage.class -new file mode 100644 -index 0000000..a4d06c7 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/LiveMarkdownPackage.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownFormatter.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownFormatter.class -new file mode 100644 -index 0000000..d34e5af -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownFormatter.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownParser.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownParser.class -new file mode 100644 -index 0000000..953adca -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownParser.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownRange.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownRange.class -new file mode 100644 -index 0000000..079da17 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownRange.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle$1.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle$1.class -new file mode 100644 -index 0000000..b2e7aa7 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle$1.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle.class -new file mode 100644 -index 0000000..9c4571a -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownStyle.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorView.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorView.class -new file mode 100644 -index 0000000..6bfc7f4 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorView.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManager.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManager.class -new file mode 100644 -index 0000000..38f2716 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManager.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManagerSpec.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManagerSpec.class -new file mode 100644 -index 0000000..074be7b -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextInputDecoratorViewManagerSpec.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextWatcher.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextWatcher.class -new file mode 100644 -index 0000000..0cb86d3 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownTextWatcher.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownUtils.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownUtils.class -new file mode 100644 -index 0000000..c52c7b3 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/MarkdownUtils.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.class -new file mode 100644 -index 0000000..c07f498 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/NativeLiveMarkdownModuleSpec.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBackgroundColorSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBackgroundColorSpan.class -new file mode 100644 -index 0000000..c262976 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBackgroundColorSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBlockquoteSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBlockquoteSpan.class -new file mode 100644 -index 0000000..5587e87 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBlockquoteSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBoldSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBoldSpan.class -new file mode 100644 -index 0000000..1772c80 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownBoldSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownEmojiSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownEmojiSpan.class -new file mode 100644 -index 0000000..3576baf -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownEmojiSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontFamilySpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontFamilySpan.class -new file mode 100644 -index 0000000..6114373 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontFamilySpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontSizeSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontSizeSpan.class -new file mode 100644 -index 0000000..c316580 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownFontSizeSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownForegroundColorSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownForegroundColorSpan.class -new file mode 100644 -index 0000000..147fb40 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownForegroundColorSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownItalicSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownItalicSpan.class -new file mode 100644 -index 0000000..2400c0b -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownItalicSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownLineHeightSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownLineHeightSpan.class -new file mode 100644 -index 0000000..b650d27 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownLineHeightSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownSpan.class -new file mode 100644 -index 0000000..880413a -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownStrikethroughSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownStrikethroughSpan.class -new file mode 100644 -index 0000000..9c27ef3 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownStrikethroughSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownUnderlineSpan.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownUnderlineSpan.class -new file mode 100644 -index 0000000..7753002 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/expensify/livemarkdown/spans/MarkdownUnderlineSpan.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.class -new file mode 100644 -index 0000000..e3d558e -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerDelegate.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.class b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.class -new file mode 100644 -index 0000000..391687a -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/MarkdownTextInputDecoratorViewManagerInterface.class differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/liblivemarkdown.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/liblivemarkdown.so -new file mode 100644 -index 0000000..39b0434 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/liblivemarkdown.so differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt -new file mode 100644 -index 0000000..78ac5b8 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -new file mode 100644 -index 0000000..2258aa4 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -new file mode 100644 -index 0000000..647d884 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -@@ -0,0 +1,7 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/liblivemarkdown.so b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/liblivemarkdown.so -new file mode 100644 -index 0000000..39b0434 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/liblivemarkdown.so differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -new file mode 100644 -index 0000000..0637a08 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -@@ -0,0 +1 @@ -+[] -\ No newline at end of file -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt -new file mode 100644 -index 0000000..08f4ebe ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/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/@expensify/react-native-live-markdown/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar -new file mode 100644 -index 0000000..3a80e39 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -new file mode 100644 -index 0000000..d110fe0 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -@@ -0,0 +1,1489 @@ -+com.expensify.livemarkdown -+anim abc_fade_in -+anim abc_fade_out -+anim abc_grow_fade_in_from_bottom -+anim abc_popup_enter -+anim abc_popup_exit -+anim abc_shrink_fade_out_from_bottom -+anim abc_slide_in_bottom -+anim abc_slide_in_top -+anim abc_slide_out_bottom -+anim abc_slide_out_top -+anim abc_tooltip_enter -+anim abc_tooltip_exit -+anim btn_checkbox_to_checked_box_inner_merged_animation -+anim btn_checkbox_to_checked_box_outer_merged_animation -+anim btn_checkbox_to_checked_icon_null_animation -+anim btn_checkbox_to_unchecked_box_inner_merged_animation -+anim btn_checkbox_to_unchecked_check_path_merged_animation -+anim btn_checkbox_to_unchecked_icon_null_animation -+anim btn_radio_to_off_mtrl_dot_group_animation -+anim btn_radio_to_off_mtrl_ring_outer_animation -+anim btn_radio_to_off_mtrl_ring_outer_path_animation -+anim btn_radio_to_on_mtrl_dot_group_animation -+anim btn_radio_to_on_mtrl_ring_outer_animation -+anim btn_radio_to_on_mtrl_ring_outer_path_animation -+anim catalyst_fade_in -+anim catalyst_fade_out -+anim catalyst_push_up_in -+anim catalyst_push_up_out -+anim catalyst_slide_down -+anim catalyst_slide_up -+anim fragment_fast_out_extra_slow_in -+animator fragment_close_enter -+animator fragment_close_exit -+animator fragment_fade_enter -+animator fragment_fade_exit -+animator fragment_open_enter -+animator fragment_open_exit -+attr actionBarDivider -+attr actionBarItemBackground -+attr actionBarPopupTheme -+attr actionBarSize -+attr actionBarSplitStyle -+attr actionBarStyle -+attr actionBarTabBarStyle -+attr actionBarTabStyle -+attr actionBarTabTextStyle -+attr actionBarTheme -+attr actionBarWidgetTheme -+attr actionButtonStyle -+attr actionDropDownStyle -+attr actionLayout -+attr actionMenuTextAppearance -+attr actionMenuTextColor -+attr actionModeBackground -+attr actionModeCloseButtonStyle -+attr actionModeCloseContentDescription -+attr actionModeCloseDrawable -+attr actionModeCopyDrawable -+attr actionModeCutDrawable -+attr actionModeFindDrawable -+attr actionModePasteDrawable -+attr actionModePopupWindowStyle -+attr actionModeSelectAllDrawable -+attr actionModeShareDrawable -+attr actionModeSplitBackground -+attr actionModeStyle -+attr actionModeTheme -+attr actionModeWebSearchDrawable -+attr actionOverflowButtonStyle -+attr actionOverflowMenuStyle -+attr actionProviderClass -+attr actionViewClass -+attr activityChooserViewStyle -+attr actualImageResource -+attr actualImageScaleType -+attr actualImageUri -+attr alertDialogButtonGroupStyle -+attr alertDialogCenterButtons -+attr alertDialogStyle -+attr alertDialogTheme -+attr allowStacking -+attr alpha -+attr alphabeticModifiers -+attr arrowHeadLength -+attr arrowShaftLength -+attr autoCompleteTextViewStyle -+attr autoSizeMaxTextSize -+attr autoSizeMinTextSize -+attr autoSizePresetSizes -+attr autoSizeStepGranularity -+attr autoSizeTextType -+attr autofillInlineSuggestionChip -+attr autofillInlineSuggestionEndIconStyle -+attr autofillInlineSuggestionStartIconStyle -+attr autofillInlineSuggestionSubtitle -+attr autofillInlineSuggestionTitle -+attr background -+attr backgroundImage -+attr backgroundSplit -+attr backgroundStacked -+attr backgroundTint -+attr backgroundTintMode -+attr barLength -+attr borderlessButtonStyle -+attr buttonBarButtonStyle -+attr buttonBarNegativeButtonStyle -+attr buttonBarNeutralButtonStyle -+attr buttonBarPositiveButtonStyle -+attr buttonBarStyle -+attr buttonCompat -+attr buttonGravity -+attr buttonIconDimen -+attr buttonPanelSideLayout -+attr buttonStyle -+attr buttonStyleSmall -+attr buttonTint -+attr buttonTintMode -+attr checkMarkCompat -+attr checkMarkTint -+attr checkMarkTintMode -+attr checkboxStyle -+attr checkedTextViewStyle -+attr closeIcon -+attr closeItemLayout -+attr collapseContentDescription -+attr collapseIcon -+attr color -+attr colorAccent -+attr colorBackgroundFloating -+attr colorButtonNormal -+attr colorControlActivated -+attr colorControlHighlight -+attr colorControlNormal -+attr colorError -+attr colorPrimary -+attr colorPrimaryDark -+attr colorSwitchThumbNormal -+attr commitIcon -+attr contentDescription -+attr contentInsetEnd -+attr contentInsetEndWithActions -+attr contentInsetLeft -+attr contentInsetRight -+attr contentInsetStart -+attr contentInsetStartWithNavigation -+attr controlBackground -+attr customNavigationLayout -+attr defaultQueryHint -+attr dialogCornerRadius -+attr dialogPreferredPadding -+attr dialogTheme -+attr displayOptions -+attr divider -+attr dividerHorizontal -+attr dividerPadding -+attr dividerVertical -+attr drawableBottomCompat -+attr drawableEndCompat -+attr drawableLeftCompat -+attr drawableRightCompat -+attr drawableSize -+attr drawableStartCompat -+attr drawableTint -+attr drawableTintMode -+attr drawableTopCompat -+attr drawerArrowStyle -+attr dropDownListViewStyle -+attr dropdownListPreferredItemHeight -+attr editTextBackground -+attr editTextColor -+attr editTextStyle -+attr elevation -+attr emojiCompatEnabled -+attr expandActivityOverflowButtonDrawable -+attr fadeDuration -+attr failureImage -+attr failureImageScaleType -+attr firstBaselineToTopHeight -+attr font -+attr fontFamily -+attr fontProviderAuthority -+attr fontProviderCerts -+attr fontProviderFetchStrategy -+attr fontProviderFetchTimeout -+attr fontProviderPackage -+attr fontProviderQuery -+attr fontProviderSystemFontFamily -+attr fontStyle -+attr fontVariationSettings -+attr fontWeight -+attr gapBetweenBars -+attr goIcon -+attr height -+attr hideOnContentScroll -+attr homeAsUpIndicator -+attr homeLayout -+attr icon -+attr iconTint -+attr iconTintMode -+attr iconifiedByDefault -+attr imageButtonStyle -+attr indeterminateProgressStyle -+attr initialActivityCount -+attr isAutofillInlineSuggestionTheme -+attr isLightTheme -+attr itemPadding -+attr lStar -+attr lastBaselineToBottomHeight -+attr layout -+attr lineHeight -+attr listChoiceBackgroundIndicator -+attr listChoiceIndicatorMultipleAnimated -+attr listChoiceIndicatorSingleAnimated -+attr listDividerAlertDialog -+attr listItemLayout -+attr listLayout -+attr listMenuViewStyle -+attr listPopupWindowStyle -+attr listPreferredItemHeight -+attr listPreferredItemHeightLarge -+attr listPreferredItemHeightSmall -+attr listPreferredItemPaddingEnd -+attr listPreferredItemPaddingLeft -+attr listPreferredItemPaddingRight -+attr listPreferredItemPaddingStart -+attr logo -+attr logoDescription -+attr maxButtonHeight -+attr measureWithLargestChild -+attr menu -+attr multiChoiceItemLayout -+attr navigationContentDescription -+attr navigationIcon -+attr navigationMode -+attr nestedScrollViewStyle -+attr numericModifiers -+attr overlapAnchor -+attr overlayImage -+attr paddingBottomNoButtons -+attr paddingEnd -+attr paddingStart -+attr paddingTopNoTitle -+attr panelBackground -+attr panelMenuListTheme -+attr panelMenuListWidth -+attr placeholderImage -+attr placeholderImageScaleType -+attr popupMenuStyle -+attr popupTheme -+attr popupWindowStyle -+attr preserveIconSpacing -+attr pressedStateOverlayImage -+attr progressBarAutoRotateInterval -+attr progressBarImage -+attr progressBarImageScaleType -+attr progressBarPadding -+attr progressBarStyle -+attr queryBackground -+attr queryHint -+attr queryPatterns -+attr radioButtonStyle -+attr ratingBarStyle -+attr ratingBarStyleIndicator -+attr ratingBarStyleSmall -+attr retryImage -+attr retryImageScaleType -+attr roundAsCircle -+attr roundBottomEnd -+attr roundBottomLeft -+attr roundBottomRight -+attr roundBottomStart -+attr roundTopEnd -+attr roundTopLeft -+attr roundTopRight -+attr roundTopStart -+attr roundWithOverlayColor -+attr roundedCornerRadius -+attr roundingBorderColor -+attr roundingBorderPadding -+attr roundingBorderWidth -+attr searchHintIcon -+attr searchIcon -+attr searchViewStyle -+attr seekBarStyle -+attr selectableItemBackground -+attr selectableItemBackgroundBorderless -+attr shortcutMatchRequired -+attr showAsAction -+attr showDividers -+attr showText -+attr showTitle -+attr singleChoiceItemLayout -+attr spinBars -+attr spinnerDropDownItemStyle -+attr spinnerStyle -+attr splitTrack -+attr srcCompat -+attr state_above_anchor -+attr subMenuArrow -+attr submitBackground -+attr subtitle -+attr subtitleTextAppearance -+attr subtitleTextColor -+attr subtitleTextStyle -+attr suggestionRowLayout -+attr swipeRefreshLayoutProgressSpinnerBackgroundColor -+attr switchMinWidth -+attr switchPadding -+attr switchStyle -+attr switchTextAppearance -+attr textAllCaps -+attr textAppearanceLargePopupMenu -+attr textAppearanceListItem -+attr textAppearanceListItemSecondary -+attr textAppearanceListItemSmall -+attr textAppearancePopupMenuHeader -+attr textAppearanceSearchResultSubtitle -+attr textAppearanceSearchResultTitle -+attr textAppearanceSmallPopupMenu -+attr textColorAlertDialogListItem -+attr textColorSearchUrl -+attr textLocale -+attr theme -+attr thickness -+attr thumbTextPadding -+attr thumbTint -+attr thumbTintMode -+attr tickMark -+attr tickMarkTint -+attr tickMarkTintMode -+attr tint -+attr tintMode -+attr title -+attr titleMargin -+attr titleMarginBottom -+attr titleMarginEnd -+attr titleMarginStart -+attr titleMarginTop -+attr titleMargins -+attr titleTextAppearance -+attr titleTextColor -+attr titleTextStyle -+attr toolbarNavigationButtonStyle -+attr toolbarStyle -+attr tooltipForegroundColor -+attr tooltipFrameBackground -+attr tooltipText -+attr track -+attr trackTint -+attr trackTintMode -+attr ttcIndex -+attr viewAspectRatio -+attr viewInflaterClass -+attr voiceIcon -+attr windowActionBar -+attr windowActionBarOverlay -+attr windowActionModeOverlay -+attr windowFixedHeightMajor -+attr windowFixedHeightMinor -+attr windowFixedWidthMajor -+attr windowFixedWidthMinor -+attr windowMinWidthMajor -+attr windowMinWidthMinor -+attr windowNoTitle -+bool abc_action_bar_embed_tabs -+bool abc_config_actionMenuItemAllCaps -+color abc_background_cache_hint_selector_material_dark -+color abc_background_cache_hint_selector_material_light -+color abc_btn_colored_borderless_text_material -+color abc_btn_colored_text_material -+color abc_color_highlight_material -+color abc_decor_view_status_guard -+color abc_decor_view_status_guard_light -+color abc_hint_foreground_material_dark -+color abc_hint_foreground_material_light -+color abc_primary_text_disable_only_material_dark -+color abc_primary_text_disable_only_material_light -+color abc_primary_text_material_dark -+color abc_primary_text_material_light -+color abc_search_url_text -+color abc_search_url_text_normal -+color abc_search_url_text_pressed -+color abc_search_url_text_selected -+color abc_secondary_text_material_dark -+color abc_secondary_text_material_light -+color abc_tint_btn_checkable -+color abc_tint_default -+color abc_tint_edittext -+color abc_tint_seek_thumb -+color abc_tint_spinner -+color abc_tint_switch_track -+color accent_material_dark -+color accent_material_light -+color androidx_core_ripple_material_light -+color androidx_core_secondary_text_default_material_light -+color background_floating_material_dark -+color background_floating_material_light -+color background_material_dark -+color background_material_light -+color bright_foreground_disabled_material_dark -+color bright_foreground_disabled_material_light -+color bright_foreground_inverse_material_dark -+color bright_foreground_inverse_material_light -+color bright_foreground_material_dark -+color bright_foreground_material_light -+color button_material_dark -+color button_material_light -+color call_notification_answer_color -+color call_notification_decline_color -+color catalyst_logbox_background -+color catalyst_redbox_background -+color dim_foreground_disabled_material_dark -+color dim_foreground_disabled_material_light -+color dim_foreground_material_dark -+color dim_foreground_material_light -+color error_color_material_dark -+color error_color_material_light -+color foreground_material_dark -+color foreground_material_light -+color highlighted_text_material_dark -+color highlighted_text_material_light -+color material_blue_grey_800 -+color material_blue_grey_900 -+color material_blue_grey_950 -+color material_deep_teal_200 -+color material_deep_teal_500 -+color material_grey_100 -+color material_grey_300 -+color material_grey_50 -+color material_grey_600 -+color material_grey_800 -+color material_grey_850 -+color material_grey_900 -+color notification_action_color_filter -+color notification_icon_bg_color -+color primary_dark_material_dark -+color primary_dark_material_light -+color primary_material_dark -+color primary_material_light -+color primary_text_default_material_dark -+color primary_text_default_material_light -+color primary_text_disabled_material_dark -+color primary_text_disabled_material_light -+color ripple_material_dark -+color ripple_material_light -+color secondary_text_default_material_dark -+color secondary_text_default_material_light -+color secondary_text_disabled_material_dark -+color secondary_text_disabled_material_light -+color switch_thumb_disabled_material_dark -+color switch_thumb_disabled_material_light -+color switch_thumb_material_dark -+color switch_thumb_material_light -+color switch_thumb_normal_material_dark -+color switch_thumb_normal_material_light -+color tooltip_background_dark -+color tooltip_background_light -+dimen abc_action_bar_content_inset_material -+dimen abc_action_bar_content_inset_with_nav -+dimen abc_action_bar_default_height_material -+dimen abc_action_bar_default_padding_end_material -+dimen abc_action_bar_default_padding_start_material -+dimen abc_action_bar_elevation_material -+dimen abc_action_bar_icon_vertical_padding_material -+dimen abc_action_bar_overflow_padding_end_material -+dimen abc_action_bar_overflow_padding_start_material -+dimen abc_action_bar_stacked_max_height -+dimen abc_action_bar_stacked_tab_max_width -+dimen abc_action_bar_subtitle_bottom_margin_material -+dimen abc_action_bar_subtitle_top_margin_material -+dimen abc_action_button_min_height_material -+dimen abc_action_button_min_width_material -+dimen abc_action_button_min_width_overflow_material -+dimen abc_alert_dialog_button_bar_height -+dimen abc_alert_dialog_button_dimen -+dimen abc_button_inset_horizontal_material -+dimen abc_button_inset_vertical_material -+dimen abc_button_padding_horizontal_material -+dimen abc_button_padding_vertical_material -+dimen abc_cascading_menus_min_smallest_width -+dimen abc_config_prefDialogWidth -+dimen abc_control_corner_material -+dimen abc_control_inset_material -+dimen abc_control_padding_material -+dimen abc_dialog_corner_radius_material -+dimen abc_dialog_fixed_height_major -+dimen abc_dialog_fixed_height_minor -+dimen abc_dialog_fixed_width_major -+dimen abc_dialog_fixed_width_minor -+dimen abc_dialog_list_padding_bottom_no_buttons -+dimen abc_dialog_list_padding_top_no_title -+dimen abc_dialog_min_width_major -+dimen abc_dialog_min_width_minor -+dimen abc_dialog_padding_material -+dimen abc_dialog_padding_top_material -+dimen abc_dialog_title_divider_material -+dimen abc_disabled_alpha_material_dark -+dimen abc_disabled_alpha_material_light -+dimen abc_dropdownitem_icon_width -+dimen abc_dropdownitem_text_padding_left -+dimen abc_dropdownitem_text_padding_right -+dimen abc_edit_text_inset_bottom_material -+dimen abc_edit_text_inset_horizontal_material -+dimen abc_edit_text_inset_top_material -+dimen abc_floating_window_z -+dimen abc_list_item_height_large_material -+dimen abc_list_item_height_material -+dimen abc_list_item_height_small_material -+dimen abc_list_item_padding_horizontal_material -+dimen abc_panel_menu_list_width -+dimen abc_progress_bar_height_material -+dimen abc_search_view_preferred_height -+dimen abc_search_view_preferred_width -+dimen abc_seekbar_track_background_height_material -+dimen abc_seekbar_track_progress_height_material -+dimen abc_select_dialog_padding_start_material -+dimen abc_star_big -+dimen abc_star_medium -+dimen abc_star_small -+dimen abc_switch_padding -+dimen abc_text_size_body_1_material -+dimen abc_text_size_body_2_material -+dimen abc_text_size_button_material -+dimen abc_text_size_caption_material -+dimen abc_text_size_display_1_material -+dimen abc_text_size_display_2_material -+dimen abc_text_size_display_3_material -+dimen abc_text_size_display_4_material -+dimen abc_text_size_headline_material -+dimen abc_text_size_large_material -+dimen abc_text_size_medium_material -+dimen abc_text_size_menu_header_material -+dimen abc_text_size_menu_material -+dimen abc_text_size_small_material -+dimen abc_text_size_subhead_material -+dimen abc_text_size_subtitle_material_toolbar -+dimen abc_text_size_title_material -+dimen abc_text_size_title_material_toolbar -+dimen autofill_inline_suggestion_icon_size -+dimen compat_button_inset_horizontal_material -+dimen compat_button_inset_vertical_material -+dimen compat_button_padding_horizontal_material -+dimen compat_button_padding_vertical_material -+dimen compat_control_corner_material -+dimen compat_notification_large_icon_max_height -+dimen compat_notification_large_icon_max_width -+dimen disabled_alpha_material_dark -+dimen disabled_alpha_material_light -+dimen highlight_alpha_material_colored -+dimen highlight_alpha_material_dark -+dimen highlight_alpha_material_light -+dimen hint_alpha_material_dark -+dimen hint_alpha_material_light -+dimen hint_pressed_alpha_material_dark -+dimen hint_pressed_alpha_material_light -+dimen notification_action_icon_size -+dimen notification_action_text_size -+dimen notification_big_circle_margin -+dimen notification_content_margin_start -+dimen notification_large_icon_height -+dimen notification_large_icon_width -+dimen notification_main_column_padding_top -+dimen notification_media_narrow_margin -+dimen notification_right_icon_size -+dimen notification_right_side_padding_top -+dimen notification_small_icon_background_padding -+dimen notification_small_icon_size_as_large -+dimen notification_subtext_size -+dimen notification_top_pad -+dimen notification_top_pad_large_text -+dimen tooltip_corner_radius -+dimen tooltip_horizontal_padding -+dimen tooltip_margin -+dimen tooltip_precise_anchor_extra_offset -+dimen tooltip_precise_anchor_threshold -+dimen tooltip_vertical_padding -+dimen tooltip_y_offset_non_touch -+dimen tooltip_y_offset_touch -+drawable abc_ab_share_pack_mtrl_alpha -+drawable abc_action_bar_item_background_material -+drawable abc_btn_borderless_material -+drawable abc_btn_check_material -+drawable abc_btn_check_material_anim -+drawable abc_btn_check_to_on_mtrl_000 -+drawable abc_btn_check_to_on_mtrl_015 -+drawable abc_btn_colored_material -+drawable abc_btn_default_mtrl_shape -+drawable abc_btn_radio_material -+drawable abc_btn_radio_material_anim -+drawable abc_btn_radio_to_on_mtrl_000 -+drawable abc_btn_radio_to_on_mtrl_015 -+drawable abc_btn_switch_to_on_mtrl_00001 -+drawable abc_btn_switch_to_on_mtrl_00012 -+drawable abc_cab_background_internal_bg -+drawable abc_cab_background_top_material -+drawable abc_cab_background_top_mtrl_alpha -+drawable abc_control_background_material -+drawable abc_dialog_material_background -+drawable abc_edit_text_material -+drawable abc_ic_ab_back_material -+drawable abc_ic_arrow_drop_right_black_24dp -+drawable abc_ic_clear_material -+drawable abc_ic_commit_search_api_mtrl_alpha -+drawable abc_ic_go_search_api_material -+drawable abc_ic_menu_copy_mtrl_am_alpha -+drawable abc_ic_menu_cut_mtrl_alpha -+drawable abc_ic_menu_overflow_material -+drawable abc_ic_menu_paste_mtrl_am_alpha -+drawable abc_ic_menu_selectall_mtrl_alpha -+drawable abc_ic_menu_share_mtrl_alpha -+drawable abc_ic_search_api_material -+drawable abc_ic_voice_search_api_material -+drawable abc_item_background_holo_dark -+drawable abc_item_background_holo_light -+drawable abc_list_divider_material -+drawable abc_list_divider_mtrl_alpha -+drawable abc_list_focused_holo -+drawable abc_list_longpressed_holo -+drawable abc_list_pressed_holo_dark -+drawable abc_list_pressed_holo_light -+drawable abc_list_selector_background_transition_holo_dark -+drawable abc_list_selector_background_transition_holo_light -+drawable abc_list_selector_disabled_holo_dark -+drawable abc_list_selector_disabled_holo_light -+drawable abc_list_selector_holo_dark -+drawable abc_list_selector_holo_light -+drawable abc_menu_hardkey_panel_mtrl_mult -+drawable abc_popup_background_mtrl_mult -+drawable abc_ratingbar_indicator_material -+drawable abc_ratingbar_material -+drawable abc_ratingbar_small_material -+drawable abc_scrubber_control_off_mtrl_alpha -+drawable abc_scrubber_control_to_pressed_mtrl_000 -+drawable abc_scrubber_control_to_pressed_mtrl_005 -+drawable abc_scrubber_primary_mtrl_alpha -+drawable abc_scrubber_track_mtrl_alpha -+drawable abc_seekbar_thumb_material -+drawable abc_seekbar_tick_mark_material -+drawable abc_seekbar_track_material -+drawable abc_spinner_mtrl_am_alpha -+drawable abc_spinner_textfield_background_material -+drawable abc_star_black_48dp -+drawable abc_star_half_black_48dp -+drawable abc_switch_thumb_material -+drawable abc_switch_track_mtrl_alpha -+drawable abc_tab_indicator_material -+drawable abc_tab_indicator_mtrl_alpha -+drawable abc_text_cursor_material -+drawable abc_text_select_handle_left_mtrl -+drawable abc_text_select_handle_middle_mtrl -+drawable abc_text_select_handle_right_mtrl -+drawable abc_textfield_activated_mtrl_alpha -+drawable abc_textfield_default_mtrl_alpha -+drawable abc_textfield_search_activated_mtrl_alpha -+drawable abc_textfield_search_default_mtrl_alpha -+drawable abc_textfield_search_material -+drawable abc_vector_test -+drawable autofill_inline_suggestion_chip_background -+drawable btn_checkbox_checked_mtrl -+drawable btn_checkbox_checked_to_unchecked_mtrl_animation -+drawable btn_checkbox_unchecked_mtrl -+drawable btn_checkbox_unchecked_to_checked_mtrl_animation -+drawable btn_radio_off_mtrl -+drawable btn_radio_off_to_on_mtrl_animation -+drawable btn_radio_on_mtrl -+drawable btn_radio_on_to_off_mtrl_animation -+drawable ic_call_answer -+drawable ic_call_answer_low -+drawable ic_call_answer_video -+drawable ic_call_answer_video_low -+drawable ic_call_decline -+drawable ic_call_decline_low -+drawable ic_resume -+drawable notification_action_background -+drawable notification_bg -+drawable notification_bg_low -+drawable notification_bg_low_normal -+drawable notification_bg_low_pressed -+drawable notification_bg_normal -+drawable notification_bg_normal_pressed -+drawable notification_icon_background -+drawable notification_oversize_large_icon_bg -+drawable notification_template_icon_bg -+drawable notification_template_icon_low_bg -+drawable notification_tile_bg -+drawable notify_panel_notification_icon_bg -+drawable paused_in_debugger_background -+drawable paused_in_debugger_dialog_background -+drawable redbox_top_border_background -+drawable ripple_effect -+drawable test_level_drawable -+drawable tooltip_frame_dark -+drawable tooltip_frame_light -+id accessibility_action_clickable_span -+id accessibility_actions -+id accessibility_collection -+id accessibility_collection_item -+id accessibility_custom_action_0 -+id accessibility_custom_action_1 -+id accessibility_custom_action_10 -+id accessibility_custom_action_11 -+id accessibility_custom_action_12 -+id accessibility_custom_action_13 -+id accessibility_custom_action_14 -+id accessibility_custom_action_15 -+id accessibility_custom_action_16 -+id accessibility_custom_action_17 -+id accessibility_custom_action_18 -+id accessibility_custom_action_19 -+id accessibility_custom_action_2 -+id accessibility_custom_action_20 -+id accessibility_custom_action_21 -+id accessibility_custom_action_22 -+id accessibility_custom_action_23 -+id accessibility_custom_action_24 -+id accessibility_custom_action_25 -+id accessibility_custom_action_26 -+id accessibility_custom_action_27 -+id accessibility_custom_action_28 -+id accessibility_custom_action_29 -+id accessibility_custom_action_3 -+id accessibility_custom_action_30 -+id accessibility_custom_action_31 -+id accessibility_custom_action_4 -+id accessibility_custom_action_5 -+id accessibility_custom_action_6 -+id accessibility_custom_action_7 -+id accessibility_custom_action_8 -+id accessibility_custom_action_9 -+id accessibility_hint -+id accessibility_label -+id accessibility_links -+id accessibility_role -+id accessibility_state -+id accessibility_state_expanded -+id accessibility_value -+id action_bar -+id action_bar_activity_content -+id action_bar_container -+id action_bar_root -+id action_bar_spinner -+id action_bar_subtitle -+id action_bar_title -+id action_container -+id action_context_bar -+id action_divider -+id action_image -+id action_menu_divider -+id action_menu_presenter -+id action_mode_bar -+id action_mode_bar_stub -+id action_mode_close_button -+id action_text -+id actions -+id activity_chooser_view_content -+id add -+id alertTitle -+id alert_title -+id async -+id autofill_inline_suggestion_end_icon -+id autofill_inline_suggestion_start_icon -+id autofill_inline_suggestion_subtitle -+id autofill_inline_suggestion_title -+id blocking -+id button -+id buttonPanel -+id button_text -+id catalyst_redbox_title -+id center -+id centerCrop -+id centerInside -+id checkbox -+id checked -+id chronometer -+id content -+id contentPanel -+id custom -+id customPanel -+id decor_content_parent -+id default_activity_button -+id dialog_button -+id edit_query -+id edit_text_id -+id expand_activities_button -+id expanded_menu -+id filter -+id fitBottomStart -+id fitCenter -+id fitEnd -+id fitStart -+id fitXY -+id focusCrop -+id forever -+id fps_text -+id fragment_container_view_tag -+id ghost_view -+id ghost_view_holder -+id group_divider -+id hide_ime_id -+id home -+id icon -+id icon_group -+id image -+id info -+id invalidate_transform -+id italic -+id labelled_by -+id line1 -+id line3 -+id listMode -+id list_item -+id message -+id mix_blend_mode -+id multiply -+id none -+id normal -+id notification_background -+id notification_main_column -+id notification_main_column_container -+id off -+id on -+id parentPanel -+id parent_matrix -+id pointer_events -+id progress_circular -+id progress_horizontal -+id radio -+id react_test_id -+id report_drawn -+id right_icon -+id right_side -+id rn_frame_file -+id rn_frame_method -+id rn_redbox_dismiss_button -+id rn_redbox_line_separator -+id rn_redbox_loading_indicator -+id rn_redbox_reload_button -+id rn_redbox_report_button -+id rn_redbox_report_label -+id rn_redbox_stack -+id role -+id save_non_transition_alpha -+id save_overlay_view -+id screen -+id scrollIndicatorDown -+id scrollIndicatorUp -+id scrollView -+id search_badge -+id search_bar -+id search_button -+id search_close_btn -+id search_edit_frame -+id search_go_btn -+id search_mag_icon -+id search_plate -+id search_src_text -+id search_voice_btn -+id select_dialog_listview -+id shortcut -+id spacer -+id special_effects_controller_view_tag -+id split_action_bar -+id src_atop -+id src_in -+id src_over -+id submenuarrow -+id submit_area -+id tabMode -+id tag_accessibility_actions -+id tag_accessibility_clickable_spans -+id tag_accessibility_heading -+id tag_accessibility_pane_title -+id tag_on_apply_window_listener -+id tag_on_receive_content_listener -+id tag_on_receive_content_mime_types -+id tag_screen_reader_focusable -+id tag_state_description -+id tag_transition_group -+id tag_unhandled_key_event_manager -+id tag_unhandled_key_listeners -+id tag_window_insets_animation_callback -+id text -+id text2 -+id textSpacerNoButtons -+id textSpacerNoTitle -+id time -+id title -+id titleDividerNoCustom -+id title_template -+id topPanel -+id transform -+id transform_origin -+id transition_current_scene -+id transition_layout_save -+id transition_position -+id transition_scene_layoutid_cache -+id transition_transform -+id unchecked -+id uniform -+id up -+id use_hardware_layer -+id view_clipped -+id view_tag_instance_handle -+id view_tag_native_id -+id view_tree_lifecycle_owner -+id view_tree_on_back_pressed_dispatcher_owner -+id view_tree_saved_state_registry_owner -+id view_tree_view_model_store_owner -+id visible_removing_fragment_view_tag -+id wrap_content -+integer abc_config_activityDefaultDur -+integer abc_config_activityShortDur -+integer cancel_button_image_alpha -+integer config_tooltipAnimTime -+integer react_native_dev_server_port -+integer status_bar_notification_info_maxnum -+interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 -+interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 -+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 -+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 -+interpolator btn_radio_to_off_mtrl_animation_interpolator_0 -+interpolator btn_radio_to_on_mtrl_animation_interpolator_0 -+interpolator fast_out_slow_in -+layout abc_action_bar_title_item -+layout abc_action_bar_up_container -+layout abc_action_menu_item_layout -+layout abc_action_menu_layout -+layout abc_action_mode_bar -+layout abc_action_mode_close_item_material -+layout abc_activity_chooser_view -+layout abc_activity_chooser_view_list_item -+layout abc_alert_dialog_button_bar_material -+layout abc_alert_dialog_material -+layout abc_alert_dialog_title_material -+layout abc_cascading_menu_item_layout -+layout abc_dialog_title_material -+layout abc_expanded_menu_layout -+layout abc_list_menu_item_checkbox -+layout abc_list_menu_item_icon -+layout abc_list_menu_item_layout -+layout abc_list_menu_item_radio -+layout abc_popup_menu_header_item_layout -+layout abc_popup_menu_item_layout -+layout abc_screen_content_include -+layout abc_screen_simple -+layout abc_screen_simple_overlay_action_mode -+layout abc_screen_toolbar -+layout abc_search_dropdown_item_icons_2line -+layout abc_search_view -+layout abc_select_dialog_material -+layout abc_tooltip -+layout alert_title_layout -+layout autofill_inline_suggestion -+layout custom_dialog -+layout dev_loading_view -+layout fps_view -+layout ime_base_split_test_activity -+layout ime_secondary_split_test_activity -+layout notification_action -+layout notification_action_tombstone -+layout notification_template_custom_big -+layout notification_template_icon_group -+layout notification_template_part_chronometer -+layout notification_template_part_time -+layout paused_in_debugger_view -+layout redbox_item_frame -+layout redbox_item_title -+layout redbox_view -+layout select_dialog_item_material -+layout select_dialog_multichoice_material -+layout select_dialog_singlechoice_material -+layout support_simple_spinner_dropdown_item -+string abc_action_bar_home_description -+string abc_action_bar_up_description -+string abc_action_menu_overflow_description -+string abc_action_mode_done -+string abc_activity_chooser_view_see_all -+string abc_activitychooserview_choose_application -+string abc_capital_off -+string abc_capital_on -+string abc_menu_alt_shortcut_label -+string abc_menu_ctrl_shortcut_label -+string abc_menu_delete_shortcut_label -+string abc_menu_enter_shortcut_label -+string abc_menu_function_shortcut_label -+string abc_menu_meta_shortcut_label -+string abc_menu_shift_shortcut_label -+string abc_menu_space_shortcut_label -+string abc_menu_sym_shortcut_label -+string abc_prepend_shortcut_label -+string abc_search_hint -+string abc_searchview_description_clear -+string abc_searchview_description_query -+string abc_searchview_description_search -+string abc_searchview_description_submit -+string abc_searchview_description_voice -+string abc_shareactionprovider_share_with -+string abc_shareactionprovider_share_with_application -+string abc_toolbar_collapse_description -+string alert_description -+string call_notification_answer_action -+string call_notification_answer_video_action -+string call_notification_decline_action -+string call_notification_hang_up_action -+string call_notification_incoming_text -+string call_notification_ongoing_text -+string call_notification_screening_text -+string catalyst_change_bundle_location -+string catalyst_copy_button -+string catalyst_debug_connecting -+string catalyst_debug_error -+string catalyst_debug_open -+string catalyst_debug_open_disabled -+string catalyst_dev_menu_header -+string catalyst_dev_menu_sub_header -+string catalyst_dismiss_button -+string catalyst_heap_capture -+string catalyst_hot_reloading -+string catalyst_hot_reloading_auto_disable -+string catalyst_hot_reloading_auto_enable -+string catalyst_hot_reloading_stop -+string catalyst_inspector_toggle -+string catalyst_loading_from_url -+string catalyst_open_debugger_error -+string catalyst_perf_monitor -+string catalyst_perf_monitor_stop -+string catalyst_reload -+string catalyst_reload_button -+string catalyst_reload_error -+string catalyst_report_button -+string catalyst_sample_profiler_toggle -+string catalyst_settings -+string catalyst_settings_title -+string combobox_description -+string header_description -+string image_description -+string imagebutton_description -+string link_description -+string menu_description -+string menubar_description -+string menuitem_description -+string progressbar_description -+string radiogroup_description -+string rn_tab_description -+string scrollbar_description -+string search_menu_title -+string spinbutton_description -+string state_busy_description -+string state_collapsed_description -+string state_expanded_description -+string state_mixed_description -+string state_off_description -+string state_on_description -+string state_unselected_description -+string status_bar_notification_info_overflow -+string summary_description -+string tablist_description -+string timer_description -+string toolbar_description -+style AlertDialog_AppCompat -+style AlertDialog_AppCompat_Light -+style Animation_AppCompat_Dialog -+style Animation_AppCompat_DropDownUp -+style Animation_AppCompat_Tooltip -+style Animation_Catalyst_LogBox -+style Animation_Catalyst_RedBox -+style Base_AlertDialog_AppCompat -+style Base_AlertDialog_AppCompat_Light -+style Base_Animation_AppCompat_Dialog -+style Base_Animation_AppCompat_DropDownUp -+style Base_Animation_AppCompat_Tooltip -+style Base_DialogWindowTitleBackground_AppCompat -+style Base_DialogWindowTitle_AppCompat -+style Base_TextAppearance_AppCompat -+style Base_TextAppearance_AppCompat_Body1 -+style Base_TextAppearance_AppCompat_Body2 -+style Base_TextAppearance_AppCompat_Button -+style Base_TextAppearance_AppCompat_Caption -+style Base_TextAppearance_AppCompat_Display1 -+style Base_TextAppearance_AppCompat_Display2 -+style Base_TextAppearance_AppCompat_Display3 -+style Base_TextAppearance_AppCompat_Display4 -+style Base_TextAppearance_AppCompat_Headline -+style Base_TextAppearance_AppCompat_Inverse -+style Base_TextAppearance_AppCompat_Large -+style Base_TextAppearance_AppCompat_Large_Inverse -+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -+style Base_TextAppearance_AppCompat_Medium -+style Base_TextAppearance_AppCompat_Medium_Inverse -+style Base_TextAppearance_AppCompat_Menu -+style Base_TextAppearance_AppCompat_SearchResult -+style Base_TextAppearance_AppCompat_SearchResult_Subtitle -+style Base_TextAppearance_AppCompat_SearchResult_Title -+style Base_TextAppearance_AppCompat_Small -+style Base_TextAppearance_AppCompat_Small_Inverse -+style Base_TextAppearance_AppCompat_Subhead -+style Base_TextAppearance_AppCompat_Subhead_Inverse -+style Base_TextAppearance_AppCompat_Title -+style Base_TextAppearance_AppCompat_Title_Inverse -+style Base_TextAppearance_AppCompat_Tooltip -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title -+style Base_TextAppearance_AppCompat_Widget_Button -+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -+style Base_TextAppearance_AppCompat_Widget_Button_Colored -+style Base_TextAppearance_AppCompat_Widget_Button_Inverse -+style Base_TextAppearance_AppCompat_Widget_DropDownItem -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -+style Base_TextAppearance_AppCompat_Widget_Switch -+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title -+style Base_ThemeOverlay_AppCompat -+style Base_ThemeOverlay_AppCompat_ActionBar -+style Base_ThemeOverlay_AppCompat_Dark -+style Base_ThemeOverlay_AppCompat_Dark_ActionBar -+style Base_ThemeOverlay_AppCompat_Dialog -+style Base_ThemeOverlay_AppCompat_Dialog_Alert -+style Base_ThemeOverlay_AppCompat_Light -+style Base_Theme_AppCompat -+style Base_Theme_AppCompat_CompactMenu -+style Base_Theme_AppCompat_Dialog -+style Base_Theme_AppCompat_DialogWhenLarge -+style Base_Theme_AppCompat_Dialog_Alert -+style Base_Theme_AppCompat_Dialog_FixedSize -+style Base_Theme_AppCompat_Dialog_MinWidth -+style Base_Theme_AppCompat_Light -+style Base_Theme_AppCompat_Light_DarkActionBar -+style Base_Theme_AppCompat_Light_Dialog -+style Base_Theme_AppCompat_Light_DialogWhenLarge -+style Base_Theme_AppCompat_Light_Dialog_Alert -+style Base_Theme_AppCompat_Light_Dialog_FixedSize -+style Base_Theme_AppCompat_Light_Dialog_MinWidth -+style Base_V21_ThemeOverlay_AppCompat_Dialog -+style Base_V21_Theme_AppCompat -+style Base_V21_Theme_AppCompat_Dialog -+style Base_V21_Theme_AppCompat_Light -+style Base_V21_Theme_AppCompat_Light_Dialog -+style Base_V22_Theme_AppCompat -+style Base_V22_Theme_AppCompat_Light -+style Base_V23_Theme_AppCompat -+style Base_V23_Theme_AppCompat_Light -+style Base_V26_Theme_AppCompat -+style Base_V26_Theme_AppCompat_Light -+style Base_V26_Widget_AppCompat_Toolbar -+style Base_V28_Theme_AppCompat -+style Base_V28_Theme_AppCompat_Light -+style Base_V7_ThemeOverlay_AppCompat_Dialog -+style Base_V7_Theme_AppCompat -+style Base_V7_Theme_AppCompat_Dialog -+style Base_V7_Theme_AppCompat_Light -+style Base_V7_Theme_AppCompat_Light_Dialog -+style Base_V7_Widget_AppCompat_AutoCompleteTextView -+style Base_V7_Widget_AppCompat_EditText -+style Base_V7_Widget_AppCompat_Toolbar -+style Base_Widget_AppCompat_ActionBar -+style Base_Widget_AppCompat_ActionBar_Solid -+style Base_Widget_AppCompat_ActionBar_TabBar -+style Base_Widget_AppCompat_ActionBar_TabText -+style Base_Widget_AppCompat_ActionBar_TabView -+style Base_Widget_AppCompat_ActionButton -+style Base_Widget_AppCompat_ActionButton_CloseMode -+style Base_Widget_AppCompat_ActionButton_Overflow -+style Base_Widget_AppCompat_ActionMode -+style Base_Widget_AppCompat_ActivityChooserView -+style Base_Widget_AppCompat_AutoCompleteTextView -+style Base_Widget_AppCompat_Button -+style Base_Widget_AppCompat_ButtonBar -+style Base_Widget_AppCompat_ButtonBar_AlertDialog -+style Base_Widget_AppCompat_Button_Borderless -+style Base_Widget_AppCompat_Button_Borderless_Colored -+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -+style Base_Widget_AppCompat_Button_Colored -+style Base_Widget_AppCompat_Button_Small -+style Base_Widget_AppCompat_CompoundButton_CheckBox -+style Base_Widget_AppCompat_CompoundButton_RadioButton -+style Base_Widget_AppCompat_CompoundButton_Switch -+style Base_Widget_AppCompat_DrawerArrowToggle -+style Base_Widget_AppCompat_DrawerArrowToggle_Common -+style Base_Widget_AppCompat_DropDownItem_Spinner -+style Base_Widget_AppCompat_EditText -+style Base_Widget_AppCompat_ImageButton -+style Base_Widget_AppCompat_Light_ActionBar -+style Base_Widget_AppCompat_Light_ActionBar_Solid -+style Base_Widget_AppCompat_Light_ActionBar_TabBar -+style Base_Widget_AppCompat_Light_ActionBar_TabText -+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -+style Base_Widget_AppCompat_Light_ActionBar_TabView -+style Base_Widget_AppCompat_Light_PopupMenu -+style Base_Widget_AppCompat_Light_PopupMenu_Overflow -+style Base_Widget_AppCompat_ListMenuView -+style Base_Widget_AppCompat_ListPopupWindow -+style Base_Widget_AppCompat_ListView -+style Base_Widget_AppCompat_ListView_DropDown -+style Base_Widget_AppCompat_ListView_Menu -+style Base_Widget_AppCompat_PopupMenu -+style Base_Widget_AppCompat_PopupMenu_Overflow -+style Base_Widget_AppCompat_PopupWindow -+style Base_Widget_AppCompat_ProgressBar -+style Base_Widget_AppCompat_ProgressBar_Horizontal -+style Base_Widget_AppCompat_RatingBar -+style Base_Widget_AppCompat_RatingBar_Indicator -+style Base_Widget_AppCompat_RatingBar_Small -+style Base_Widget_AppCompat_SearchView -+style Base_Widget_AppCompat_SearchView_ActionBar -+style Base_Widget_AppCompat_SeekBar -+style Base_Widget_AppCompat_SeekBar_Discrete -+style Base_Widget_AppCompat_Spinner -+style Base_Widget_AppCompat_Spinner_Underlined -+style Base_Widget_AppCompat_TextView -+style Base_Widget_AppCompat_TextView_SpinnerItem -+style Base_Widget_AppCompat_Toolbar -+style Base_Widget_AppCompat_Toolbar_Button_Navigation -+style CalendarDatePickerDialog -+style CalendarDatePickerStyle -+style DialogAnimationFade -+style DialogAnimationSlide -+style NoAnimationDialog -+style Platform_AppCompat -+style Platform_AppCompat_Light -+style Platform_ThemeOverlay_AppCompat -+style Platform_ThemeOverlay_AppCompat_Dark -+style Platform_ThemeOverlay_AppCompat_Light -+style Platform_V21_AppCompat -+style Platform_V21_AppCompat_Light -+style Platform_V25_AppCompat -+style Platform_V25_AppCompat_Light -+style Platform_Widget_AppCompat_Spinner -+style RtlOverlay_DialogWindowTitle_AppCompat -+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon -+style RtlOverlay_Widget_AppCompat_PopupMenuItem -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon -+style RtlOverlay_Widget_AppCompat_Search_DropDown -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text -+style RtlUnderlay_Widget_AppCompat_ActionButton -+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -+style SpinnerDatePickerDialog -+style SpinnerDatePickerStyle -+style TextAppearance_AppCompat -+style TextAppearance_AppCompat_Body1 -+style TextAppearance_AppCompat_Body2 -+style TextAppearance_AppCompat_Button -+style TextAppearance_AppCompat_Caption -+style TextAppearance_AppCompat_Display1 -+style TextAppearance_AppCompat_Display2 -+style TextAppearance_AppCompat_Display3 -+style TextAppearance_AppCompat_Display4 -+style TextAppearance_AppCompat_Headline -+style TextAppearance_AppCompat_Inverse -+style TextAppearance_AppCompat_Large -+style TextAppearance_AppCompat_Large_Inverse -+style TextAppearance_AppCompat_Light_SearchResult_Subtitle -+style TextAppearance_AppCompat_Light_SearchResult_Title -+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -+style TextAppearance_AppCompat_Medium -+style TextAppearance_AppCompat_Medium_Inverse -+style TextAppearance_AppCompat_Menu -+style TextAppearance_AppCompat_SearchResult_Subtitle -+style TextAppearance_AppCompat_SearchResult_Title -+style TextAppearance_AppCompat_Small -+style TextAppearance_AppCompat_Small_Inverse -+style TextAppearance_AppCompat_Subhead -+style TextAppearance_AppCompat_Subhead_Inverse -+style TextAppearance_AppCompat_Title -+style TextAppearance_AppCompat_Title_Inverse -+style TextAppearance_AppCompat_Tooltip -+style TextAppearance_AppCompat_Widget_ActionBar_Menu -+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle -+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -+style TextAppearance_AppCompat_Widget_ActionBar_Title -+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle -+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -+style TextAppearance_AppCompat_Widget_ActionMode_Title -+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -+style TextAppearance_AppCompat_Widget_Button -+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored -+style TextAppearance_AppCompat_Widget_Button_Colored -+style TextAppearance_AppCompat_Widget_Button_Inverse -+style TextAppearance_AppCompat_Widget_DropDownItem -+style TextAppearance_AppCompat_Widget_PopupMenu_Header -+style TextAppearance_AppCompat_Widget_PopupMenu_Large -+style TextAppearance_AppCompat_Widget_PopupMenu_Small -+style TextAppearance_AppCompat_Widget_Switch -+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem -+style TextAppearance_Compat_Notification -+style TextAppearance_Compat_Notification_Info -+style TextAppearance_Compat_Notification_Line2 -+style TextAppearance_Compat_Notification_Time -+style TextAppearance_Compat_Notification_Title -+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item -+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle -+style TextAppearance_Widget_AppCompat_Toolbar_Title -+style Theme -+style ThemeOverlay_AppCompat -+style ThemeOverlay_AppCompat_ActionBar -+style ThemeOverlay_AppCompat_Dark -+style ThemeOverlay_AppCompat_Dark_ActionBar -+style ThemeOverlay_AppCompat_DayNight -+style ThemeOverlay_AppCompat_DayNight_ActionBar -+style ThemeOverlay_AppCompat_Dialog -+style ThemeOverlay_AppCompat_Dialog_Alert -+style ThemeOverlay_AppCompat_Light -+style Theme_AppCompat -+style Theme_AppCompat_CompactMenu -+style Theme_AppCompat_DayNight -+style Theme_AppCompat_DayNight_DarkActionBar -+style Theme_AppCompat_DayNight_Dialog -+style Theme_AppCompat_DayNight_DialogWhenLarge -+style Theme_AppCompat_DayNight_Dialog_Alert -+style Theme_AppCompat_DayNight_Dialog_MinWidth -+style Theme_AppCompat_DayNight_NoActionBar -+style Theme_AppCompat_Dialog -+style Theme_AppCompat_DialogWhenLarge -+style Theme_AppCompat_Dialog_Alert -+style Theme_AppCompat_Dialog_MinWidth -+style Theme_AppCompat_Empty -+style Theme_AppCompat_Light -+style Theme_AppCompat_Light_DarkActionBar -+style Theme_AppCompat_Light_Dialog -+style Theme_AppCompat_Light_DialogWhenLarge -+style Theme_AppCompat_Light_Dialog_Alert -+style Theme_AppCompat_Light_Dialog_MinWidth -+style Theme_AppCompat_Light_NoActionBar -+style Theme_AppCompat_NoActionBar -+style Theme_AutofillInlineSuggestion -+style Theme_Catalyst -+style Theme_Catalyst_LogBox -+style Theme_Catalyst_RedBox -+style Theme_FullScreenDialog -+style Theme_FullScreenDialogAnimatedFade -+style Theme_FullScreenDialogAnimatedSlide -+style Theme_ReactNative_AppCompat_Light -+style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen -+style Theme_ReactNative_TextInput_DefaultBackground -+style Widget_AppCompat_ActionBar -+style Widget_AppCompat_ActionBar_Solid -+style Widget_AppCompat_ActionBar_TabBar -+style Widget_AppCompat_ActionBar_TabText -+style Widget_AppCompat_ActionBar_TabView -+style Widget_AppCompat_ActionButton -+style Widget_AppCompat_ActionButton_CloseMode -+style Widget_AppCompat_ActionButton_Overflow -+style Widget_AppCompat_ActionMode -+style Widget_AppCompat_ActivityChooserView -+style Widget_AppCompat_AutoCompleteTextView -+style Widget_AppCompat_Button -+style Widget_AppCompat_ButtonBar -+style Widget_AppCompat_ButtonBar_AlertDialog -+style Widget_AppCompat_Button_Borderless -+style Widget_AppCompat_Button_Borderless_Colored -+style Widget_AppCompat_Button_ButtonBar_AlertDialog -+style Widget_AppCompat_Button_Colored -+style Widget_AppCompat_Button_Small -+style Widget_AppCompat_CompoundButton_CheckBox -+style Widget_AppCompat_CompoundButton_RadioButton -+style Widget_AppCompat_CompoundButton_Switch -+style Widget_AppCompat_DrawerArrowToggle -+style Widget_AppCompat_DropDownItem_Spinner -+style Widget_AppCompat_EditText -+style Widget_AppCompat_ImageButton -+style Widget_AppCompat_Light_ActionBar -+style Widget_AppCompat_Light_ActionBar_Solid -+style Widget_AppCompat_Light_ActionBar_Solid_Inverse -+style Widget_AppCompat_Light_ActionBar_TabBar -+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse -+style Widget_AppCompat_Light_ActionBar_TabText -+style Widget_AppCompat_Light_ActionBar_TabText_Inverse -+style Widget_AppCompat_Light_ActionBar_TabView -+style Widget_AppCompat_Light_ActionBar_TabView_Inverse -+style Widget_AppCompat_Light_ActionButton -+style Widget_AppCompat_Light_ActionButton_CloseMode -+style Widget_AppCompat_Light_ActionButton_Overflow -+style Widget_AppCompat_Light_ActionMode_Inverse -+style Widget_AppCompat_Light_ActivityChooserView -+style Widget_AppCompat_Light_AutoCompleteTextView -+style Widget_AppCompat_Light_DropDownItem_Spinner -+style Widget_AppCompat_Light_ListPopupWindow -+style Widget_AppCompat_Light_ListView_DropDown -+style Widget_AppCompat_Light_PopupMenu -+style Widget_AppCompat_Light_PopupMenu_Overflow -+style Widget_AppCompat_Light_SearchView -+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar -+style Widget_AppCompat_ListMenuView -+style Widget_AppCompat_ListPopupWindow -+style Widget_AppCompat_ListView -+style Widget_AppCompat_ListView_DropDown -+style Widget_AppCompat_ListView_Menu -+style Widget_AppCompat_PopupMenu -+style Widget_AppCompat_PopupMenu_Overflow -+style Widget_AppCompat_PopupWindow -+style Widget_AppCompat_ProgressBar -+style Widget_AppCompat_ProgressBar_Horizontal -+style Widget_AppCompat_RatingBar -+style Widget_AppCompat_RatingBar_Indicator -+style Widget_AppCompat_RatingBar_Small -+style Widget_AppCompat_SearchView -+style Widget_AppCompat_SearchView_ActionBar -+style Widget_AppCompat_SeekBar -+style Widget_AppCompat_SeekBar_Discrete -+style Widget_AppCompat_Spinner -+style Widget_AppCompat_Spinner_DropDown -+style Widget_AppCompat_Spinner_DropDown_ActionBar -+style Widget_AppCompat_Spinner_Underlined -+style Widget_AppCompat_TextView -+style Widget_AppCompat_TextView_SpinnerItem -+style Widget_AppCompat_Toolbar -+style Widget_AppCompat_Toolbar_Button_Navigation -+style Widget_Autofill -+style Widget_Autofill_InlineSuggestionChip -+style Widget_Autofill_InlineSuggestionEndIconStyle -+style Widget_Autofill_InlineSuggestionStartIconStyle -+style Widget_Autofill_InlineSuggestionSubtitle -+style Widget_Autofill_InlineSuggestionTitle -+style Widget_Compat_NotificationActionContainer -+style Widget_Compat_NotificationActionText -+style redboxButton -+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle -+styleable ActionBarLayout android_layout_gravity -+styleable ActionMenuItemView android_minWidth -+styleable ActionMenuView -+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle -+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount -+styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout -+styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -+styleable AnimatedStateListDrawableItem android_drawable android_id -+styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId -+styleable AppCompatEmojiHelper -+styleable AppCompatImageView android_src srcCompat tint tintMode -+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode -+styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance -+styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale -+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle -+styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme -+styleable ButtonBarLayout allowStacking -+styleable Capability queryPatterns shortcutMatchRequired -+styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode -+styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar -+styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode -+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness -+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily -+styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex -+styleable Fragment android_id android_name android_tag -+styleable FragmentContainerView android_name android_tag -+styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio -+styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type -+styleable GradientColorItem android_color android_offset -+styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers -+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width -+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset -+styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible -+styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText -+styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow -+styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor -+styleable PopupWindowBackgroundState state_above_anchor -+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle -+styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon -+styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio -+styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme -+styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -+styleable StateListDrawableItem android_drawable -+styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor -+styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode -+styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale -+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor -+styleable View android_focusable android_theme paddingEnd paddingStart theme -+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode -+styleable ViewStubCompat android_id android_inflatedId android_layout -+xml rn_dev_preferences -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@expensify/react-native-live-markdown/android/build/outputs/logs/manifest-merger-debug-report.txt -new file mode 100644 -index 0000000..5cb6505 ---- /dev/null -+++ b/node_modules/@expensify/react-native-live-markdown/android/build/outputs/logs/manifest-merger-debug-report.txt -@@ -0,0 +1,16 @@ -+-- Merging decision tree log --- -+manifest -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml:1:1-2:12 -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml:1:1-2:12 -+ package -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml -+ xmlns:android -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml:1:11-69 -+uses-sdk -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml reason: use-sdk injection requested -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml -+ android:targetSdkVersion -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml -+ android:minSdkVersion -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/@expensify/react-native-live-markdown/android/src/main/AndroidManifestNew.xml -diff --git a/node_modules/@expensify/react-native-live-markdown/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/@expensify/react-native-live-markdown/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin -new file mode 100644 -index 0000000..ce955a0 -Binary files /dev/null and b/node_modules/@expensify/react-native-live-markdown/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ From 8dd9b65315d05d7a03a589de51ae34a4a5b76bcb Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 14:53:26 +0700 Subject: [PATCH 26/50] chore: ignore another file in cspell --- cspell.json | 1 + 1 file changed, 1 insertion(+) diff --git a/cspell.json b/cspell.json index cca98864f5d7b..e1a79a586b246 100644 --- a/cspell.json +++ b/cspell.json @@ -782,6 +782,7 @@ "modules/ExpensifyNitroUtils/android/build.gradle", "modules/ExpensifyNitroUtils/android/src/main/cpp/**", "modules/hybrid-app/android/build.gradle", + "modules/background-task/android/build.gradle", "src/TIMEZONES.ts", "tests/unit/EmojiTest.ts", "tests/unit/FastSearchTest.ts", From 38bcd3de5df20d6b4579b39ccacc486fb057f03e Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 15:45:32 +0700 Subject: [PATCH 27/50] Update @onfido+react-native-sdk+10.6.0.patch --- patches/@onfido+react-native-sdk+10.6.0.patch | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/patches/@onfido+react-native-sdk+10.6.0.patch b/patches/@onfido+react-native-sdk+10.6.0.patch index 14d026ca023cb..4b7a1ca4741a7 100644 --- a/patches/@onfido+react-native-sdk+10.6.0.patch +++ b/patches/@onfido+react-native-sdk+10.6.0.patch @@ -1265,6 +1265,35 @@ index a9de0d0..ed1e6fd 100644 + s.dependency "React" + end end +diff --git a/node_modules/@onfido/react-native-sdk/package.json b/node_modules/@onfido/react-native-sdk/package.json +index 50a331b..754c3c0 100644 +--- a/node_modules/@onfido/react-native-sdk/package.json ++++ b/node_modules/@onfido/react-native-sdk/package.json +@@ -24,7 +24,8 @@ + ], + "testPathIgnorePatterns": [ + "/TestApp", +- "/SampleApp" ++ "/SampleApp", ++ "/FabricSample" + ], + "globals": { + "__DEV__": true +@@ -82,6 +83,14 @@ + "react-native": "0.72.6", + "typescript": "^4.6.4" + }, ++ "codegenConfig": { ++ "name": "rnonfidosdk", ++ "type": "modules", ++ "jsSrcsDir": "./js", ++ "android": { ++ "javaPackageName": "com.onfido.reactnative.sdk" ++ } ++ }, + "dependencies": { + "js-base64": "3.7.5" + }, diff --git a/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh b/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh index 49f9d4c..1b9f304 100755 --- a/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh From e126fceeb1740d4cc8316364c05ba3dc1a5513ad Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 19:59:42 +0700 Subject: [PATCH 28/50] chore: remove useLegacyPackaging --- .../ExpensifyNitroUtils/android/build.gradle | 6 +----- modules/background-task/android/build.gradle | 6 ------ modules/hybrid-app/android/build.gradle | 6 ------ ...android-enable-16kb-memory-page-size.patch | 20 ++++++++++--------- 4 files changed, 12 insertions(+), 26 deletions(-) diff --git a/modules/ExpensifyNitroUtils/android/build.gradle b/modules/ExpensifyNitroUtils/android/build.gradle index a648dc5df5b26..c28d8c672f098 100644 --- a/modules/ExpensifyNitroUtils/android/build.gradle +++ b/modules/ExpensifyNitroUtils/android/build.gradle @@ -47,7 +47,7 @@ android { externalNativeBuild { cmake { cppFlags "-O2 -frtti -fexceptions -Wall -fstack-protector-all" - arguments "-DANDROID_STL=c++_shared -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" + arguments "-DANDROID_STL=c++_shared", "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" abiFilters (*reactNativeArchitectures()) } } @@ -60,10 +60,6 @@ android { } packagingOptions { - jniLibs { - useLegacyPackaging true - } - excludes = [ "META-INF", "META-INF/**", diff --git a/modules/background-task/android/build.gradle b/modules/background-task/android/build.gradle index 74723efc2f087..88d301341125b 100644 --- a/modules/background-task/android/build.gradle +++ b/modules/background-task/android/build.gradle @@ -71,12 +71,6 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } - packagingOptions { - jniLibs { - useLegacyPackaging true - } - } - sourceSets { main { if (isNewArchitectureEnabled()) { diff --git a/modules/hybrid-app/android/build.gradle b/modules/hybrid-app/android/build.gradle index eba8c5b463558..3556fa102fc19 100644 --- a/modules/hybrid-app/android/build.gradle +++ b/modules/hybrid-app/android/build.gradle @@ -59,12 +59,6 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } - packagingOptions { - jniLibs { - useLegacyPackaging true - } - } - sourceSets { main { java.srcDirs += [ diff --git a/patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch b/patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch index 71eb299d1382d..a472e3ca51b0d 100644 --- a/patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch +++ b/patches/react-native-safe-area-context/react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch @@ -1,15 +1,17 @@ diff --git a/node_modules/react-native-safe-area-context/android/build.gradle b/node_modules/react-native-safe-area-context/android/build.gradle -index f324b9a..d35b98f 100644 +index f324b9a..4aca83e 100644 --- a/node_modules/react-native-safe-area-context/android/build.gradle +++ b/node_modules/react-native-safe-area-context/android/build.gradle -@@ -80,6 +80,10 @@ android { - // only the ones that make the build fail (ideally we should only include libsafeareacontext_modules but we - // are only allowed to specify exclude patterns) - exclude "**/libreact_render*.so" +@@ -68,6 +68,12 @@ android { + ndk { + abiFilters (*reactNativeArchitectures()) + } + -+ jniLibs { -+ useLegacyPackaging true ++ externalNativeBuild { ++ cmake { ++ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ } + } } - sourceSets.main { - java { \ No newline at end of file + + lintOptions{ \ No newline at end of file From 9a5d8a8f4823deb7019f23889a020d6b00aea156 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 21:17:17 +0700 Subject: [PATCH 29/50] chore: update @rnmapbox/map --- package-lock.json | 6 +- package.json | 2 +- .../@rnmapbox+maps+10.1.33+001+initial.patch | 200 ------------------ ...android-enable-16kb-memory-page-size.patch | 28 --- .../@rnmapbox+maps+10.1.39+001+initial.patch | 74 +++++++ 5 files changed, 79 insertions(+), 231 deletions(-) delete mode 100644 patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+001+initial.patch delete mode 100644 patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-enable-16kb-memory-page-size.patch create mode 100644 patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+initial.patch diff --git a/package-lock.json b/package-lock.json index 33c72b9695b2f..edf39426aa57c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -48,7 +48,7 @@ "@react-navigation/native-stack": "7.3.14", "@react-navigation/stack": "7.3.3", "@react-ng/bounds-observer": "^0.2.1", - "@rnmapbox/maps": "10.1.33", + "@rnmapbox/maps": "10.1.39", "@shopify/flash-list": "1.8.2", "@ua/react-native-airship": "~24.4.0", "awesome-phonenumber": "^5.4.0", @@ -11623,7 +11623,9 @@ } }, "node_modules/@rnmapbox/maps": { - "version": "10.1.33", + "version": "10.1.39", + "resolved": "https://registry.npmjs.org/@rnmapbox/maps/-/maps-10.1.39.tgz", + "integrity": "sha512-h96h/wPwmuJ6Je/qDL8KTh3QSVvlX41SNVAZpEUtPpIos/n/3eDzERvBxNd/8FGZYZVR/3FcZnv4razaNCFksg==", "license": "MIT", "dependencies": { "@turf/along": "6.5.0", diff --git a/package.json b/package.json index c5e7e110991ba..f4728e4eeab3a 100644 --- a/package.json +++ b/package.json @@ -118,7 +118,7 @@ "@react-navigation/native-stack": "7.3.14", "@react-navigation/stack": "7.3.3", "@react-ng/bounds-observer": "^0.2.1", - "@rnmapbox/maps": "10.1.33", + "@rnmapbox/maps": "10.1.39", "@shopify/flash-list": "1.8.2", "@ua/react-native-airship": "~24.4.0", "awesome-phonenumber": "^5.4.0", diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+001+initial.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+001+initial.patch deleted file mode 100644 index 683f92326cba2..0000000000000 --- a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+001+initial.patch +++ /dev/null @@ -1,200 +0,0 @@ -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt -index fb2147f..241d789 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt -@@ -249,10 +249,10 @@ class RNMBXImagesManager(private val mContext: ReactApplicationContext) : - Logger.e("RNMBXImages", "each element of strech should be an array but was: ${array.getDynamic(i)}") - } else { - val pair = array.getArray(i) -- if (pair.size() != 2 || pair.getType(0) != ReadableType.Number || pair.getType(1) != ReadableType.Number) { -+ if (pair?.size() != 2 || pair.getType(0) != ReadableType.Number || pair.getType(1) != ReadableType.Number) { - Logger.e("RNMBXImages", "each element of stretch should be pair of 2 integers but was ${pair}") - } -- result.add(ImageStretches(pair.getDouble(0).toFloat(), pair.getDouble(1).toFloat())) -+ result.add(ImageStretches(pair!!.getDouble(0).toFloat(), pair.getDouble(1).toFloat())) - } - } - return result; -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt -index 688f3a6..0627519 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt -@@ -15,7 +15,7 @@ import android.widget.FrameLayout - import androidx.lifecycle.Lifecycle - import androidx.lifecycle.LifecycleOwner - import androidx.lifecycle.LifecycleRegistry --import androidx.lifecycle.ViewTreeLifecycleOwner -+import androidx.lifecycle.setViewTreeLifecycleOwner - import com.facebook.react.bridge.* - import com.mapbox.android.gestures.* - import com.mapbox.bindgen.Value -@@ -131,12 +131,13 @@ class RNMBXLifeCycle { - } - } - -- override fun getLifecycle(): Lifecycle { -- return lifecycleRegistry -+ override val lifecycle: Lifecycle -+ get() = lifecycleRegistry -+ - } - } -- ViewTreeLifecycleOwner.set(view, lifecycleOwner); -- } -+ view.setViewTreeLifecycleOwner(lifecycleOwner) -+ - lifecycleOwner?.handleLifecycleEvent(Lifecycle.Event.ON_START) - } - -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt -index 220cf54..3e026c7 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt -@@ -34,13 +34,13 @@ import java.util.HashMap - - fun ReadableArray.forEachString(action: (String) -> Unit) { - for (i in 0 until size()) { -- action(getString(i)) -+ action(getString(i)!!) - } - } - - fun ReadableArray.asArrayString(): Array { - val result = Array(size()) { -- getString(it) -+ getString(it)!! - } - return result - } -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt -index db13128..99fd5c8 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt -@@ -82,7 +82,7 @@ class RNMBXStyleValue(config: ReadableMap) { - val result = ArrayList(arr!!.size()) - for (i in 0 until arr.size()) { - val item = arr.getMap(i) -- result.add(item.getDouble("value")) -+ result.add(item!!.getDouble("value")) - } - return result - } -@@ -104,7 +104,7 @@ class RNMBXStyleValue(config: ReadableMap) { - val result = ArrayList(arr!!.size()) - for (i in 0 until arr.size()) { - val item = arr.getMap(i) -- val value = item.getString("value") -+ val value = item!!.getString("value") - if (value != null) { - result.add(value) - } else { -@@ -121,9 +121,9 @@ class RNMBXStyleValue(config: ReadableMap) { - val result = WritableNativeMap() - for (i in 0 until keyValues!!.size()) { - val keyValue = keyValues.getArray(i) -- val stringKey = keyValue.getMap(0).getString("value") -+ val stringKey = keyValue!!.getMap(0)!!.getString("value") - val value = WritableNativeMap() -- value.merge(keyValue.getMap(1)) -+ value.merge(keyValue.getMap(1)!!) - result.putMap(stringKey!!, value) - } - return result -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt -index 637372d..da3bf91 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt -@@ -119,7 +119,7 @@ class RNMBXShapeSourceManager(private val mContext: ReactApplicationContext, val - ) - ReadableType.Boolean -> Expression.literal(expressions.getBoolean(iExp)) - ReadableType.Number -> Expression.literal(expressions.getDouble(iExp)) -- else -> Expression.literal(expressions.getString(iExp)) -+ else -> Expression.literal(expressions.getString(iExp)!!) - } - builder.add(argument) - } -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt -index 3b0a072..2530916 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt -@@ -41,7 +41,7 @@ abstract class RNMBXTileSourceManager> internal construct - val urls: MutableList = ArrayList() - for (i in 0 until tileUrlTemplates.asArray().size()) { - if (tileUrlTemplates.asArray().getType(0) == ReadableType.String) { -- urls.add(tileUrlTemplates.asArray().getString(i)) -+ urls.add(tileUrlTemplates.asArray().getString(i)!!) - } - } - source!!.tileUrlTemplates = urls -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.kt -index 28d1020..41f80d5 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.kt -@@ -210,7 +210,7 @@ private fun buildLineString(_coordinates: ReadableArray): LineString { - - for (i in 0 until _coordinates.size()) { - val arr = _coordinates.getArray(i) -- val coord = Point.fromLngLat(arr.getDouble(0), arr.getDouble(1)) -+ val coord = Point.fromLngLat(arr!!.getDouble(0), arr.getDouble(1)) - coordinates = coordinates.plus(coord) - } - -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/Dynamic.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/Dynamic.kt -index d52fa21..1a17410 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/Dynamic.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/Dynamic.kt -@@ -38,9 +38,9 @@ fun ReadableArray.toValue(): Value { - ReadableType.Null -> Value.nullValue() - ReadableType.Boolean -> Value.valueOf(getBoolean(i)) - ReadableType.Number -> Value.valueOf(getDouble(i)) -- ReadableType.String -> Value.valueOf(getString(i)) -- ReadableType.Array -> getArray(i).toValue() -- ReadableType.Map -> getMap(i).toValue() -+ ReadableType.String -> Value.valueOf(getString(i)!!) -+ ReadableType.Array -> getArray(i)!!.toValue() -+ ReadableType.Map -> getMap(i)!!.toValue() - }) - } - return Value.valueOf(result) -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableArray.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableArray.kt -index 83a78bc..b27dce1 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableArray.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableArray.kt -@@ -46,8 +46,8 @@ fun ReadableArray.toJsonArray() : JsonArray { - val result = JsonArray(size()) - for (i in 0 until size()) { - when (getType(i)) { -- ReadableType.Map -> result.add(getMap(i).toJsonObject()) -- ReadableType.Array -> result.add(getArray(i).toJsonArray()) -+ ReadableType.Map -> result.add(getMap(i)?.toJsonObject()) -+ ReadableType.Array -> result.add(getArray(i)?.toJsonArray()) - ReadableType.Null -> result.add(null as JsonElement?) - ReadableType.Number -> result.add(getDouble(i)) - ReadableType.String -> result.add(getString(i)) -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt -index c69ef8c..912601f 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt -@@ -25,7 +25,7 @@ fun ReadableMap.forEach(action: (String, Any) -> Unit) { - val iterator = this.entryIterator - while (iterator.hasNext()) { - val next = iterator.next() -- action(next.key, next.value) -+ action(next.key, next.value!!) - } - } - fun ReadableMap.getIfDouble(key: String): Double? { -diff --git a/node_modules/@rnmapbox/maps/android/src/main/rn-compat/rn75/com/rnmapbox/rnmbx/rncompat/ReadableMap.kt b/node_modules/@rnmapbox/maps/android/src/main/rn-compat/rn75/com/rnmapbox/rnmbx/rncompat/ReadableMap.kt -index fee7f22..194e630 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/rn-compat/rn75/com/rnmapbox/rnmbx/rncompat/ReadableMap.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/rn-compat/rn75/com/rnmapbox/rnmbx/rncompat/ReadableMap.kt -@@ -1,7 +1,7 @@ - package com.rnmapbox.rnmbx.rncompat.readable_map - import com.facebook.react.bridge.ReadableMap - --fun ReadableMap.getEntryIterator(): Iterator> -+fun ReadableMap.getEntryIterator(): Iterator> - { - return this.entryIterator - } -\ No newline at end of file diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-enable-16kb-memory-page-size.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-enable-16kb-memory-page-size.patch deleted file mode 100644 index 40b255d6fa709..0000000000000 --- a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.33+002+android-enable-16kb-memory-page-size.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/node_modules/@rnmapbox/maps/android/build.gradle b/node_modules/@rnmapbox/maps/android/build.gradle -index dd8e6c6..dfca30e 100644 ---- a/node_modules/@rnmapbox/maps/android/build.gradle -+++ b/node_modules/@rnmapbox/maps/android/build.gradle -@@ -84,6 +84,10 @@ android { - } - - packagingOptions { -+ jniLibs { -+ useLegacyPackaging true -+ } -+ - pickFirst 'lib/x86/libc++_shared.so' - pickFirst 'lib/x86_64/libc++_shared.so' - pickFirst 'lib/arm64-v8a/libc++_shared.so' -@@ -113,6 +117,12 @@ android { - versionCode 1 - versionName "1.0" - buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() -+ -+ externalNativeBuild { -+ cmake { -+ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" -+ } -+ } - } - - compileOptions { diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+initial.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+initial.patch new file mode 100644 index 0000000000000..1fa7b137e569e --- /dev/null +++ b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+initial.patch @@ -0,0 +1,74 @@ +diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt +index 4c5a3a8..0cf3c5e 100644 +--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt ++++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt +@@ -248,10 +248,10 @@ class RNMBXImagesManager(private val mContext: ReactApplicationContext) : + } else { + val pair = array.getArray(i) + if (pair != null) { +- if (pair.size() != 2 || pair.getType(0) != ReadableType.Number || pair.getType(1) != ReadableType.Number) { ++ if (pair?.size() != 2 || pair.getType(0) != ReadableType.Number || pair.getType(1) != ReadableType.Number) { + Logger.e("RNMBXImages", "each element of stretch should be pair of 2 integers but was ${pair}") + } +- result.add(ImageStretches(pair.getDouble(0).toFloat(), pair.getDouble(1).toFloat())) ++ result.add(ImageStretches(pair!!.getDouble(0).toFloat(), pair.getDouble(1).toFloat())) + } else { + Logger.e("RNMBXImages", "each element of stretch should be an array but was null") + } +diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt +index 15f4917..f518bd5 100644 +--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt ++++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt +@@ -40,7 +40,7 @@ fun ReadableArray.forEachString(action: (String) -> Unit) { + + fun ReadableArray.asArrayString(): Array { + val result = Array(size()) { +- getString(it).toString() ++ getString(it)!!.toString() + } + return result + } +diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt +index 8710d28..573e096 100644 +--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt ++++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt +@@ -83,7 +83,7 @@ class RNMBXStyleValue(config: ReadableMap) { + for (i in 0 until arr.size()) { + val item = arr.getMap(i) + if (item != null) { +- result.add(item.getDouble("value")) ++ result.add(item!!.getDouble("value")) + } else { + Logger.e("RNMBXStyleValue", "getFloatArray: null value for item: $i") + } +diff --git a/node_modules/@rnmapbox/maps/android/src/main/lifecycle-compat/v25/com/rnmapbox/rnmbx/components/mapview/LifecycleCompat.kt b/node_modules/@rnmapbox/maps/android/src/main/lifecycle-compat/v25/com/rnmapbox/rnmbx/components/mapview/LifecycleCompat.kt +index 80e49ed..4691073 100644 +--- a/node_modules/@rnmapbox/maps/android/src/main/lifecycle-compat/v25/com/rnmapbox/rnmbx/components/mapview/LifecycleCompat.kt ++++ b/node_modules/@rnmapbox/maps/android/src/main/lifecycle-compat/v25/com/rnmapbox/rnmbx/components/mapview/LifecycleCompat.kt +@@ -5,7 +5,7 @@ import android.view.View + import androidx.lifecycle.Lifecycle + import androidx.lifecycle.LifecycleOwner + import androidx.lifecycle.LifecycleRegistry +-import androidx.lifecycle.ViewTreeLifecycleOwner ++import androidx.lifecycle.setViewTreeLifecycleOwner + + /** + * Lifecycle compatibility for Lifecycle 2.5 and older which uses getLifecycle() method +@@ -35,13 +35,14 @@ class RNMBXLifeCycle { + } + + // Lifecycle 2.5 and older uses method syntax +- override fun getLifecycle(): Lifecycle { +- return lifecycleRegistry ++ override val lifecycle: Lifecycle ++ get() = lifecycleRegistry + } + + } +- ViewTreeLifecycleOwner.set(view, lifecycleOwner) + } ++ view.setViewTreeLifecycleOwner(lifecycleOwner) ++ + lifecycleOwner?.handleLifecycleEvent(Lifecycle.Event.ON_START) + } + From df54ee896997da4e625d98d410c1c8a7abf09f14 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 21:21:59 +0700 Subject: [PATCH 30/50] chore: updat react-native-pdf --- package-lock.json | 6 +- package.json | 2 +- ...android-enable-16kb-memory-page-size.patch | 4433 ----------------- patches/react-native-pdf/details.md | 14 - ...1+update-podspec-to-support-new-arch.patch | 30 - 5 files changed, 5 insertions(+), 4480 deletions(-) delete mode 100644 patches/react-native-pdf+6.7.3+001+android-enable-16kb-memory-page-size.patch delete mode 100644 patches/react-native-pdf/details.md delete mode 100644 patches/react-native-pdf/react-native-pdf+6.7.3+001+update-podspec-to-support-new-arch.patch diff --git a/package-lock.json b/package-lock.json index edf39426aa57c..cb97436013b9b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -111,7 +111,7 @@ "react-native-nitro-sqlite": "9.1.10", "react-native-onyx": "2.0.132", "react-native-pager-view": "6.5.3", - "react-native-pdf": "6.7.3", + "react-native-pdf": "6.7.5", "react-native-performance": "^5.1.4", "react-native-permissions": "^5.4.0", "react-native-picker-select": "git+https://github.com/Expensify/react-native-picker-select.git#07d60d78d4772d47afd7a744940fc6b6d1881806", @@ -31821,7 +31821,9 @@ } }, "node_modules/react-native-pdf": { - "version": "6.7.3", + "version": "6.7.5", + "resolved": "https://registry.npmjs.org/react-native-pdf/-/react-native-pdf-6.7.5.tgz", + "integrity": "sha512-d1S76p2Vwax2iG+kTnjINiUMvpjtJJvtMiYwHRbgGczT8GJjtXH49YCWOd+HfnUAU29cB+knzsKGYoZBMQM8Ow==", "license": "MIT", "dependencies": { "crypto-js": "4.2.0", diff --git a/package.json b/package.json index f4728e4eeab3a..b908e6f50d649 100644 --- a/package.json +++ b/package.json @@ -181,7 +181,7 @@ "react-native-nitro-sqlite": "9.1.10", "react-native-onyx": "2.0.132", "react-native-pager-view": "6.5.3", - "react-native-pdf": "6.7.3", + "react-native-pdf": "6.7.5", "react-native-performance": "^5.1.4", "react-native-permissions": "^5.4.0", "react-native-picker-select": "git+https://github.com/Expensify/react-native-picker-select.git#07d60d78d4772d47afd7a744940fc6b6d1881806", diff --git a/patches/react-native-pdf+6.7.3+001+android-enable-16kb-memory-page-size.patch b/patches/react-native-pdf+6.7.3+001+android-enable-16kb-memory-page-size.patch deleted file mode 100644 index 9121660871617..0000000000000 --- a/patches/react-native-pdf+6.7.3+001+android-enable-16kb-memory-page-size.patch +++ /dev/null @@ -1,4433 +0,0 @@ -diff --git a/node_modules/react-native-pdf/android/build.gradle b/node_modules/react-native-pdf/android/build.gradle -index 2d76d8f..77e190a 100644 ---- a/node_modules/react-native-pdf/android/build.gradle -+++ b/node_modules/react-native-pdf/android/build.gradle -@@ -89,6 +89,12 @@ android { - minSdkVersion safeExtGet('minSdkVersion', 21) - targetSdkVersion safeExtGet('targetSdkVersion', 31) - buildConfigField("boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()) -+ -+ externalNativeBuild { -+ cmake { -+ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" -+ } -+ } - } - - sourceSets.main { -@@ -106,6 +112,10 @@ android { - } - - packagingOptions { -+ jniLibs { -+ useLegacyPackaging true -+ } -+ - pickFirst 'lib/x86/libc++_shared.so' - pickFirst 'lib/x86_64/libjsc.so' - pickFirst 'lib/x86_64/libc++_shared.so' -@@ -124,5 +134,5 @@ dependencies { - // NOTE: The original repo at com.github.barteksc is abandoned by the maintainer; there will be no more updates coming from that repo. - // It was taken over by com.github.TalbotGooday; from now on please use this repo until (if ever) the Barteksc repo is resumed. - implementation 'com.github.TalbotGooday:AndroidPdfViewer:3.1.0-beta.3' -- implementation 'com.google.code.gson:gson:2.8.5' -+ implementation 'com.google.code.gson:gson:2.11.0' - } -diff --git a/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/results.bin b/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/results.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/results.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/transformed/classes/classes_dex/classes.dex -new file mode 100644 -index 0000000..c6d84e5 -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/.transforms/735bbb234e3eed1c6d3bf353375ac4a9/transformed/classes/classes_dex/classes.dex differ -diff --git a/node_modules/react-native-pdf/android/build/generated/source/buildConfig/debug/org/wonday/pdf/BuildConfig.java b/node_modules/react-native-pdf/android/build/generated/source/buildConfig/debug/org/wonday/pdf/BuildConfig.java -new file mode 100644 -index 0000000..f9cb8cc ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/buildConfig/debug/org/wonday/pdf/BuildConfig.java -@@ -0,0 +1,12 @@ -+/** -+ * Automatically generated file. DO NOT MODIFY -+ */ -+package org.wonday.pdf; -+ -+public final class BuildConfig { -+ public static final boolean DEBUG = Boolean.parseBoolean("true"); -+ public static final String LIBRARY_PACKAGE_NAME = "org.wonday.pdf"; -+ public static final String BUILD_TYPE = "debug"; -+ // Field from default config. -+ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = true; -+} -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.java b/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.java -new file mode 100644 -index 0000000..e067c2f ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.java -@@ -0,0 +1,87 @@ -+/** -+* 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.ReadableArray; -+import com.facebook.react.uimanager.BaseViewManager; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.LayoutShadowNode; -+ -+public class RNPDFPdfViewManagerDelegate & RNPDFPdfViewManagerInterface> extends BaseViewManagerDelegate { -+ public RNPDFPdfViewManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "path": -+ mViewManager.setPath(view, value == null ? null : (String) value); -+ break; -+ case "page": -+ mViewManager.setPage(view, value == null ? 0 : ((Double) value).intValue()); -+ break; -+ case "scale": -+ mViewManager.setScale(view, value == null ? 0f : ((Double) value).floatValue()); -+ break; -+ case "minScale": -+ mViewManager.setMinScale(view, value == null ? 0f : ((Double) value).floatValue()); -+ break; -+ case "maxScale": -+ mViewManager.setMaxScale(view, value == null ? 0f : ((Double) value).floatValue()); -+ break; -+ case "horizontal": -+ mViewManager.setHorizontal(view, value == null ? false : (boolean) value); -+ break; -+ case "enablePaging": -+ mViewManager.setEnablePaging(view, value == null ? false : (boolean) value); -+ break; -+ case "enableRTL": -+ mViewManager.setEnableRTL(view, value == null ? false : (boolean) value); -+ break; -+ case "enableAnnotationRendering": -+ mViewManager.setEnableAnnotationRendering(view, value == null ? false : (boolean) value); -+ break; -+ case "showsHorizontalScrollIndicator": -+ mViewManager.setShowsHorizontalScrollIndicator(view, value == null ? false : (boolean) value); -+ break; -+ case "showsVerticalScrollIndicator": -+ mViewManager.setShowsVerticalScrollIndicator(view, value == null ? false : (boolean) value); -+ break; -+ case "enableAntialiasing": -+ mViewManager.setEnableAntialiasing(view, value == null ? false : (boolean) value); -+ break; -+ case "fitPolicy": -+ mViewManager.setFitPolicy(view, value == null ? 0 : ((Double) value).intValue()); -+ break; -+ case "spacing": -+ mViewManager.setSpacing(view, value == null ? 0 : ((Double) value).intValue()); -+ break; -+ case "password": -+ mViewManager.setPassword(view, value == null ? null : (String) value); -+ break; -+ case "singlePage": -+ mViewManager.setSinglePage(view, value == null ? false : (boolean) value); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+ -+ @Override -+ public void receiveCommand(T view, String commandName, @Nullable ReadableArray args) { -+ switch (commandName) { -+ case "setNativePage": -+ mViewManager.setNativePage(view, args.getInt(0)); -+ break; -+ } -+ } -+} -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.java b/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.java -new file mode 100644 -index 0000000..e087cb3 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.java -@@ -0,0 +1,34 @@ -+/** -+* 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 RNPDFPdfViewManagerInterface extends ViewManagerWithGeneratedInterface { -+ void setPath(T view, @Nullable String value); -+ void setPage(T view, int value); -+ void setScale(T view, float value); -+ void setMinScale(T view, float value); -+ void setMaxScale(T view, float value); -+ void setHorizontal(T view, boolean value); -+ void setEnablePaging(T view, boolean value); -+ void setEnableRTL(T view, boolean value); -+ void setEnableAnnotationRendering(T view, boolean value); -+ void setShowsHorizontalScrollIndicator(T view, boolean value); -+ void setShowsVerticalScrollIndicator(T view, boolean value); -+ void setEnableAntialiasing(T view, boolean value); -+ void setFitPolicy(T view, int value); -+ void setSpacing(T view, int value); -+ void setPassword(T view, @Nullable String value); -+ void setSinglePage(T view, boolean value); -+ void setNativePage(T view, int page); -+} -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/CMakeLists.txt -new file mode 100644 -index 0000000..dc19dc1 ---- /dev/null -+++ b/node_modules/react-native-pdf/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/rnpdf/*.cpp) -+ -+add_library( -+ react_codegen_rnpdf -+ OBJECT -+ ${react_codegen_SRCS} -+) -+ -+target_include_directories(react_codegen_rnpdf PUBLIC . react/renderer/components/rnpdf) -+ -+target_link_libraries( -+ react_codegen_rnpdf -+ 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_rnpdf -+ PRIVATE -+ -DLOG_TAG=\"ReactNative\" -+ -fexceptions -+ -frtti -+ -std=c++20 -+ -Wall -+) -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.cpp -new file mode 100644 -index 0000000..c81c5fc ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.cpp -@@ -0,0 +1,22 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateComponentDescriptorCpp.js -+ */ -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+void rnpdf_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry) { -+registry->add(concreteComponentDescriptorProvider()); -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.h -new file mode 100644 -index 0000000..1402029 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ComponentDescriptors.h -@@ -0,0 +1,24 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateComponentDescriptorH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+using RNPDFPdfViewComponentDescriptor = ConcreteComponentDescriptor; -+ -+void rnpdf_registerComponentDescriptorsFromCodegen( -+ std::shared_ptr registry); -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.cpp -new file mode 100644 -index 0000000..65aac50 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.cpp -@@ -0,0 +1,24 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateEventEmitterCpp.js -+ */ -+ -+#include -+ -+ -+namespace facebook::react { -+ -+void RNPDFPdfViewEventEmitter::onChange(OnChange $event) const { -+ dispatchEvent("change", [$event=std::move($event)](jsi::Runtime &runtime) { -+ auto $payload = jsi::Object(runtime); -+ $payload.setProperty(runtime, "message", $event.message); -+ return $payload; -+ }); -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.h -new file mode 100644 -index 0000000..ec3c6d7 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/EventEmitters.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: GenerateEventEmitterH.js -+ */ -+#pragma once -+ -+#include -+ -+ -+namespace facebook::react { -+class RNPDFPdfViewEventEmitter : public ViewEventEmitter { -+ public: -+ using ViewEventEmitter::ViewEventEmitter; -+ -+ struct OnChange { -+ std::string message; -+ }; -+ void onChange(OnChange value) const; -+}; -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.cpp -new file mode 100644 -index 0000000..43fc343 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.cpp -@@ -0,0 +1,40 @@ -+ -+/** -+ * 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 { -+ -+RNPDFPdfViewProps::RNPDFPdfViewProps( -+ const PropsParserContext &context, -+ const RNPDFPdfViewProps &sourceProps, -+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), -+ -+ path(convertRawProp(context, rawProps, "path", sourceProps.path, {})), -+ page(convertRawProp(context, rawProps, "page", sourceProps.page, {0})), -+ scale(convertRawProp(context, rawProps, "scale", sourceProps.scale, {0.0})), -+ minScale(convertRawProp(context, rawProps, "minScale", sourceProps.minScale, {0.0})), -+ maxScale(convertRawProp(context, rawProps, "maxScale", sourceProps.maxScale, {0.0})), -+ horizontal(convertRawProp(context, rawProps, "horizontal", sourceProps.horizontal, {false})), -+ enablePaging(convertRawProp(context, rawProps, "enablePaging", sourceProps.enablePaging, {false})), -+ enableRTL(convertRawProp(context, rawProps, "enableRTL", sourceProps.enableRTL, {false})), -+ enableAnnotationRendering(convertRawProp(context, rawProps, "enableAnnotationRendering", sourceProps.enableAnnotationRendering, {false})), -+ showsHorizontalScrollIndicator(convertRawProp(context, rawProps, "showsHorizontalScrollIndicator", sourceProps.showsHorizontalScrollIndicator, {false})), -+ showsVerticalScrollIndicator(convertRawProp(context, rawProps, "showsVerticalScrollIndicator", sourceProps.showsVerticalScrollIndicator, {false})), -+ enableAntialiasing(convertRawProp(context, rawProps, "enableAntialiasing", sourceProps.enableAntialiasing, {false})), -+ fitPolicy(convertRawProp(context, rawProps, "fitPolicy", sourceProps.fitPolicy, {0})), -+ spacing(convertRawProp(context, rawProps, "spacing", sourceProps.spacing, {0})), -+ password(convertRawProp(context, rawProps, "password", sourceProps.password, {})), -+ singlePage(convertRawProp(context, rawProps, "singlePage", sourceProps.singlePage, {false})) -+ {} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.h -new file mode 100644 -index 0000000..077477a ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/Props.h -@@ -0,0 +1,42 @@ -+ -+/** -+ * 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 -+ -+namespace facebook::react { -+ -+class RNPDFPdfViewProps final : public ViewProps { -+ public: -+ RNPDFPdfViewProps() = default; -+ RNPDFPdfViewProps(const PropsParserContext& context, const RNPDFPdfViewProps &sourceProps, const RawProps &rawProps); -+ -+#pragma mark - Props -+ -+ std::string path{}; -+ int page{0}; -+ Float scale{0.0}; -+ Float minScale{0.0}; -+ Float maxScale{0.0}; -+ bool horizontal{false}; -+ bool enablePaging{false}; -+ bool enableRTL{false}; -+ bool enableAnnotationRendering{false}; -+ bool showsHorizontalScrollIndicator{false}; -+ bool showsVerticalScrollIndicator{false}; -+ bool enableAntialiasing{false}; -+ int fitPolicy{0}; -+ int spacing{0}; -+ std::string password{}; -+ bool singlePage{false}; -+}; -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.cpp -new file mode 100644 -index 0000000..a74c2eb ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.cpp -@@ -0,0 +1,17 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateShadowNodeCpp.js -+ */ -+ -+#include -+ -+namespace facebook::react { -+ -+extern const char RNPDFPdfViewComponentName[] = "RNPDFPdfView"; -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.h -new file mode 100644 -index 0000000..13bd342 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/ShadowNodes.h -@@ -0,0 +1,32 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateShadowNodeH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+JSI_EXPORT extern const char RNPDFPdfViewComponentName[]; -+ -+/* -+ * `ShadowNode` for component. -+ */ -+using RNPDFPdfViewShadowNode = ConcreteViewShadowNode< -+ RNPDFPdfViewComponentName, -+ RNPDFPdfViewProps, -+ RNPDFPdfViewEventEmitter, -+ RNPDFPdfViewState>; -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.cpp -new file mode 100644 -index 0000000..7fb743e ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/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-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.h -new file mode 100644 -index 0000000..591d315 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/States.h -@@ -0,0 +1,29 @@ -+/** -+ * 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 RNPDFPdfViewState { -+public: -+ RNPDFPdfViewState() = default; -+ -+#ifdef ANDROID -+ RNPDFPdfViewState(RNPDFPdfViewState 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-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI-generated.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI-generated.cpp -new file mode 100644 -index 0000000..306425f ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI-generated.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: GenerateModuleCpp.js -+ */ -+ -+#include "rnpdfJSI.h" -+ -+namespace facebook::react { -+ -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI.h -new file mode 100644 -index 0000000..ec16260 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/react/renderer/components/rnpdf/rnpdfJSI.h -@@ -0,0 +1,19 @@ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf-generated.cpp b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf-generated.cpp -new file mode 100644 -index 0000000..7a1645e ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf-generated.cpp -@@ -0,0 +1,22 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleJniCpp.js -+ */ -+ -+#include "rnpdf.h" -+ -+namespace facebook::react { -+ -+ -+ -+std::shared_ptr rnpdf_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { -+ -+ return nullptr; -+} -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf.h b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf.h -new file mode 100644 -index 0000000..bfe4487 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/jni/rnpdf.h -@@ -0,0 +1,24 @@ -+ -+/** -+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). -+ * -+ * Do not edit this file as changes may cause incorrect behavior and will be lost -+ * once the code is regenerated. -+ * -+ * @generated by codegen project: GenerateModuleJniH.js -+ */ -+ -+#pragma once -+ -+#include -+#include -+#include -+ -+namespace facebook::react { -+ -+ -+ -+JSI_EXPORT -+std::shared_ptr rnpdf_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); -+ -+} // namespace facebook::react -diff --git a/node_modules/react-native-pdf/android/build/generated/source/codegen/schema.json b/node_modules/react-native-pdf/android/build/generated/source/codegen/schema.json -new file mode 100644 -index 0000000..1599500 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/generated/source/codegen/schema.json -@@ -0,0 +1 @@ -+{"modules":{"RNPDFPdfView":{"type":"Component","components":{"RNPDFPdfView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onChange","optional":true,"bubblingType":"bubble","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"message","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation"}}]}}}],"props":[{"name":"path","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"page","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}},{"name":"scale","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"minScale","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"maxScale","optional":true,"typeAnnotation":{"type":"FloatTypeAnnotation","default":0}},{"name":"horizontal","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enablePaging","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enableRTL","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enableAnnotationRendering","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"showsHorizontalScrollIndicator","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"showsVerticalScrollIndicator","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"enableAntialiasing","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"fitPolicy","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}},{"name":"spacing","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}},{"name":"password","optional":true,"typeAnnotation":{"type":"StringTypeAnnotation","default":null}},{"name":"singlePage","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}}],"commands":[{"name":"setNativePage","optional":false,"typeAnnotation":{"type":"FunctionTypeAnnotation","params":[{"name":"page","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}}],"returnTypeAnnotation":{"type":"VoidTypeAnnotation"}}}]}}}}} -\ No newline at end of file -diff --git a/node_modules/react-native-pdf/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-pdf/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml -new file mode 100644 -index 0000000..f25cf52 ---- /dev/null -+++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-pdf/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json -new file mode 100644 -index 0000000..ef0be3c ---- /dev/null -+++ b/node_modules/react-native-pdf/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": "org.wonday.pdf", -+ "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-pdf/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-pdf/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties -new file mode 100644 -index 0000000..1211b1e ---- /dev/null -+++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-pdf/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json -new file mode 100644 -index 0000000..9e26dfe ---- /dev/null -+++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-pdf/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar -new file mode 100644 -index 0000000..b600dda -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-pdf/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar -new file mode 100644 -index 0000000..a2efae4 -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-pdf/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -new file mode 100644 -index 0000000..978234b ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt -@@ -0,0 +1,1999 @@ -+int anim abc_fade_in 0x0 -+int anim abc_fade_out 0x0 -+int anim abc_grow_fade_in_from_bottom 0x0 -+int anim abc_popup_enter 0x0 -+int anim abc_popup_exit 0x0 -+int anim abc_shrink_fade_out_from_bottom 0x0 -+int anim abc_slide_in_bottom 0x0 -+int anim abc_slide_in_top 0x0 -+int anim abc_slide_out_bottom 0x0 -+int anim abc_slide_out_top 0x0 -+int anim abc_tooltip_enter 0x0 -+int anim abc_tooltip_exit 0x0 -+int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 -+int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 -+int anim btn_checkbox_to_checked_icon_null_animation 0x0 -+int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 -+int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 -+int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 -+int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 -+int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 -+int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 -+int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 -+int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 -+int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 -+int anim catalyst_fade_in 0x0 -+int anim catalyst_fade_out 0x0 -+int anim catalyst_push_up_in 0x0 -+int anim catalyst_push_up_out 0x0 -+int anim catalyst_slide_down 0x0 -+int anim catalyst_slide_up 0x0 -+int anim fragment_fast_out_extra_slow_in 0x0 -+int animator fragment_close_enter 0x0 -+int animator fragment_close_exit 0x0 -+int animator fragment_fade_enter 0x0 -+int animator fragment_fade_exit 0x0 -+int animator fragment_open_enter 0x0 -+int animator fragment_open_exit 0x0 -+int attr actionBarDivider 0x0 -+int attr actionBarItemBackground 0x0 -+int attr actionBarPopupTheme 0x0 -+int attr actionBarSize 0x0 -+int attr actionBarSplitStyle 0x0 -+int attr actionBarStyle 0x0 -+int attr actionBarTabBarStyle 0x0 -+int attr actionBarTabStyle 0x0 -+int attr actionBarTabTextStyle 0x0 -+int attr actionBarTheme 0x0 -+int attr actionBarWidgetTheme 0x0 -+int attr actionButtonStyle 0x0 -+int attr actionDropDownStyle 0x0 -+int attr actionLayout 0x0 -+int attr actionMenuTextAppearance 0x0 -+int attr actionMenuTextColor 0x0 -+int attr actionModeBackground 0x0 -+int attr actionModeCloseButtonStyle 0x0 -+int attr actionModeCloseContentDescription 0x0 -+int attr actionModeCloseDrawable 0x0 -+int attr actionModeCopyDrawable 0x0 -+int attr actionModeCutDrawable 0x0 -+int attr actionModeFindDrawable 0x0 -+int attr actionModePasteDrawable 0x0 -+int attr actionModePopupWindowStyle 0x0 -+int attr actionModeSelectAllDrawable 0x0 -+int attr actionModeShareDrawable 0x0 -+int attr actionModeSplitBackground 0x0 -+int attr actionModeStyle 0x0 -+int attr actionModeTheme 0x0 -+int attr actionModeWebSearchDrawable 0x0 -+int attr actionOverflowButtonStyle 0x0 -+int attr actionOverflowMenuStyle 0x0 -+int attr actionProviderClass 0x0 -+int attr actionViewClass 0x0 -+int attr activityChooserViewStyle 0x0 -+int attr actualImageResource 0x0 -+int attr actualImageScaleType 0x0 -+int attr actualImageUri 0x0 -+int attr alertDialogButtonGroupStyle 0x0 -+int attr alertDialogCenterButtons 0x0 -+int attr alertDialogStyle 0x0 -+int attr alertDialogTheme 0x0 -+int attr allowStacking 0x0 -+int attr alpha 0x0 -+int attr alphabeticModifiers 0x0 -+int attr arrowHeadLength 0x0 -+int attr arrowShaftLength 0x0 -+int attr autoCompleteTextViewStyle 0x0 -+int attr autoSizeMaxTextSize 0x0 -+int attr autoSizeMinTextSize 0x0 -+int attr autoSizePresetSizes 0x0 -+int attr autoSizeStepGranularity 0x0 -+int attr autoSizeTextType 0x0 -+int attr autofillInlineSuggestionChip 0x0 -+int attr autofillInlineSuggestionEndIconStyle 0x0 -+int attr autofillInlineSuggestionStartIconStyle 0x0 -+int attr autofillInlineSuggestionSubtitle 0x0 -+int attr autofillInlineSuggestionTitle 0x0 -+int attr background 0x0 -+int attr backgroundImage 0x0 -+int attr backgroundSplit 0x0 -+int attr backgroundStacked 0x0 -+int attr backgroundTint 0x0 -+int attr backgroundTintMode 0x0 -+int attr barLength 0x0 -+int attr borderlessButtonStyle 0x0 -+int attr buttonBarButtonStyle 0x0 -+int attr buttonBarNegativeButtonStyle 0x0 -+int attr buttonBarNeutralButtonStyle 0x0 -+int attr buttonBarPositiveButtonStyle 0x0 -+int attr buttonBarStyle 0x0 -+int attr buttonCompat 0x0 -+int attr buttonGravity 0x0 -+int attr buttonIconDimen 0x0 -+int attr buttonPanelSideLayout 0x0 -+int attr buttonStyle 0x0 -+int attr buttonStyleSmall 0x0 -+int attr buttonTint 0x0 -+int attr buttonTintMode 0x0 -+int attr checkMarkCompat 0x0 -+int attr checkMarkTint 0x0 -+int attr checkMarkTintMode 0x0 -+int attr checkboxStyle 0x0 -+int attr checkedTextViewStyle 0x0 -+int attr closeIcon 0x0 -+int attr closeItemLayout 0x0 -+int attr collapseContentDescription 0x0 -+int attr collapseIcon 0x0 -+int attr color 0x0 -+int attr colorAccent 0x0 -+int attr colorBackgroundFloating 0x0 -+int attr colorButtonNormal 0x0 -+int attr colorControlActivated 0x0 -+int attr colorControlHighlight 0x0 -+int attr colorControlNormal 0x0 -+int attr colorError 0x0 -+int attr colorPrimary 0x0 -+int attr colorPrimaryDark 0x0 -+int attr colorSwitchThumbNormal 0x0 -+int attr commitIcon 0x0 -+int attr contentDescription 0x0 -+int attr contentInsetEnd 0x0 -+int attr contentInsetEndWithActions 0x0 -+int attr contentInsetLeft 0x0 -+int attr contentInsetRight 0x0 -+int attr contentInsetStart 0x0 -+int attr contentInsetStartWithNavigation 0x0 -+int attr controlBackground 0x0 -+int attr customNavigationLayout 0x0 -+int attr defaultQueryHint 0x0 -+int attr dialogCornerRadius 0x0 -+int attr dialogPreferredPadding 0x0 -+int attr dialogTheme 0x0 -+int attr displayOptions 0x0 -+int attr divider 0x0 -+int attr dividerHorizontal 0x0 -+int attr dividerPadding 0x0 -+int attr dividerVertical 0x0 -+int attr drawableBottomCompat 0x0 -+int attr drawableEndCompat 0x0 -+int attr drawableLeftCompat 0x0 -+int attr drawableRightCompat 0x0 -+int attr drawableSize 0x0 -+int attr drawableStartCompat 0x0 -+int attr drawableTint 0x0 -+int attr drawableTintMode 0x0 -+int attr drawableTopCompat 0x0 -+int attr drawerArrowStyle 0x0 -+int attr dropDownListViewStyle 0x0 -+int attr dropdownListPreferredItemHeight 0x0 -+int attr editTextBackground 0x0 -+int attr editTextColor 0x0 -+int attr editTextStyle 0x0 -+int attr elevation 0x0 -+int attr emojiCompatEnabled 0x0 -+int attr expandActivityOverflowButtonDrawable 0x0 -+int attr fadeDuration 0x0 -+int attr failureImage 0x0 -+int attr failureImageScaleType 0x0 -+int attr firstBaselineToTopHeight 0x0 -+int attr font 0x0 -+int attr fontFamily 0x0 -+int attr fontProviderAuthority 0x0 -+int attr fontProviderCerts 0x0 -+int attr fontProviderFetchStrategy 0x0 -+int attr fontProviderFetchTimeout 0x0 -+int attr fontProviderPackage 0x0 -+int attr fontProviderQuery 0x0 -+int attr fontProviderSystemFontFamily 0x0 -+int attr fontStyle 0x0 -+int attr fontVariationSettings 0x0 -+int attr fontWeight 0x0 -+int attr gapBetweenBars 0x0 -+int attr goIcon 0x0 -+int attr height 0x0 -+int attr hideOnContentScroll 0x0 -+int attr homeAsUpIndicator 0x0 -+int attr homeLayout 0x0 -+int attr icon 0x0 -+int attr iconTint 0x0 -+int attr iconTintMode 0x0 -+int attr iconifiedByDefault 0x0 -+int attr imageButtonStyle 0x0 -+int attr indeterminateProgressStyle 0x0 -+int attr initialActivityCount 0x0 -+int attr isAutofillInlineSuggestionTheme 0x0 -+int attr isLightTheme 0x0 -+int attr itemPadding 0x0 -+int attr lStar 0x0 -+int attr lastBaselineToBottomHeight 0x0 -+int attr layout 0x0 -+int attr lineHeight 0x0 -+int attr listChoiceBackgroundIndicator 0x0 -+int attr listChoiceIndicatorMultipleAnimated 0x0 -+int attr listChoiceIndicatorSingleAnimated 0x0 -+int attr listDividerAlertDialog 0x0 -+int attr listItemLayout 0x0 -+int attr listLayout 0x0 -+int attr listMenuViewStyle 0x0 -+int attr listPopupWindowStyle 0x0 -+int attr listPreferredItemHeight 0x0 -+int attr listPreferredItemHeightLarge 0x0 -+int attr listPreferredItemHeightSmall 0x0 -+int attr listPreferredItemPaddingEnd 0x0 -+int attr listPreferredItemPaddingLeft 0x0 -+int attr listPreferredItemPaddingRight 0x0 -+int attr listPreferredItemPaddingStart 0x0 -+int attr logo 0x0 -+int attr logoDescription 0x0 -+int attr maxButtonHeight 0x0 -+int attr measureWithLargestChild 0x0 -+int attr menu 0x0 -+int attr multiChoiceItemLayout 0x0 -+int attr navigationContentDescription 0x0 -+int attr navigationIcon 0x0 -+int attr navigationMode 0x0 -+int attr nestedScrollViewStyle 0x0 -+int attr numericModifiers 0x0 -+int attr overlapAnchor 0x0 -+int attr overlayImage 0x0 -+int attr paddingBottomNoButtons 0x0 -+int attr paddingEnd 0x0 -+int attr paddingStart 0x0 -+int attr paddingTopNoTitle 0x0 -+int attr panelBackground 0x0 -+int attr panelMenuListTheme 0x0 -+int attr panelMenuListWidth 0x0 -+int attr placeholderImage 0x0 -+int attr placeholderImageScaleType 0x0 -+int attr popupMenuStyle 0x0 -+int attr popupTheme 0x0 -+int attr popupWindowStyle 0x0 -+int attr preserveIconSpacing 0x0 -+int attr pressedStateOverlayImage 0x0 -+int attr progressBarAutoRotateInterval 0x0 -+int attr progressBarImage 0x0 -+int attr progressBarImageScaleType 0x0 -+int attr progressBarPadding 0x0 -+int attr progressBarStyle 0x0 -+int attr queryBackground 0x0 -+int attr queryHint 0x0 -+int attr queryPatterns 0x0 -+int attr radioButtonStyle 0x0 -+int attr ratingBarStyle 0x0 -+int attr ratingBarStyleIndicator 0x0 -+int attr ratingBarStyleSmall 0x0 -+int attr retryImage 0x0 -+int attr retryImageScaleType 0x0 -+int attr roundAsCircle 0x0 -+int attr roundBottomEnd 0x0 -+int attr roundBottomLeft 0x0 -+int attr roundBottomRight 0x0 -+int attr roundBottomStart 0x0 -+int attr roundTopEnd 0x0 -+int attr roundTopLeft 0x0 -+int attr roundTopRight 0x0 -+int attr roundTopStart 0x0 -+int attr roundWithOverlayColor 0x0 -+int attr roundedCornerRadius 0x0 -+int attr roundingBorderColor 0x0 -+int attr roundingBorderPadding 0x0 -+int attr roundingBorderWidth 0x0 -+int attr sb_handlerColor 0x0 -+int attr sb_horizontal 0x0 -+int attr sb_indicatorColor 0x0 -+int attr sb_indicatorTextColor 0x0 -+int attr searchHintIcon 0x0 -+int attr searchIcon 0x0 -+int attr searchViewStyle 0x0 -+int attr seekBarStyle 0x0 -+int attr selectableItemBackground 0x0 -+int attr selectableItemBackgroundBorderless 0x0 -+int attr shortcutMatchRequired 0x0 -+int attr showAsAction 0x0 -+int attr showDividers 0x0 -+int attr showText 0x0 -+int attr showTitle 0x0 -+int attr singleChoiceItemLayout 0x0 -+int attr spinBars 0x0 -+int attr spinnerDropDownItemStyle 0x0 -+int attr spinnerStyle 0x0 -+int attr splitTrack 0x0 -+int attr srcCompat 0x0 -+int attr state_above_anchor 0x0 -+int attr subMenuArrow 0x0 -+int attr submitBackground 0x0 -+int attr subtitle 0x0 -+int attr subtitleTextAppearance 0x0 -+int attr subtitleTextColor 0x0 -+int attr subtitleTextStyle 0x0 -+int attr suggestionRowLayout 0x0 -+int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x0 -+int attr switchMinWidth 0x0 -+int attr switchPadding 0x0 -+int attr switchStyle 0x0 -+int attr switchTextAppearance 0x0 -+int attr textAllCaps 0x0 -+int attr textAppearanceLargePopupMenu 0x0 -+int attr textAppearanceListItem 0x0 -+int attr textAppearanceListItemSecondary 0x0 -+int attr textAppearanceListItemSmall 0x0 -+int attr textAppearancePopupMenuHeader 0x0 -+int attr textAppearanceSearchResultSubtitle 0x0 -+int attr textAppearanceSearchResultTitle 0x0 -+int attr textAppearanceSmallPopupMenu 0x0 -+int attr textColorAlertDialogListItem 0x0 -+int attr textColorSearchUrl 0x0 -+int attr textLocale 0x0 -+int attr theme 0x0 -+int attr thickness 0x0 -+int attr thumbTextPadding 0x0 -+int attr thumbTint 0x0 -+int attr thumbTintMode 0x0 -+int attr tickMark 0x0 -+int attr tickMarkTint 0x0 -+int attr tickMarkTintMode 0x0 -+int attr tint 0x0 -+int attr tintMode 0x0 -+int attr title 0x0 -+int attr titleMargin 0x0 -+int attr titleMarginBottom 0x0 -+int attr titleMarginEnd 0x0 -+int attr titleMarginStart 0x0 -+int attr titleMarginTop 0x0 -+int attr titleMargins 0x0 -+int attr titleTextAppearance 0x0 -+int attr titleTextColor 0x0 -+int attr titleTextStyle 0x0 -+int attr toolbarNavigationButtonStyle 0x0 -+int attr toolbarStyle 0x0 -+int attr tooltipForegroundColor 0x0 -+int attr tooltipFrameBackground 0x0 -+int attr tooltipText 0x0 -+int attr track 0x0 -+int attr trackTint 0x0 -+int attr trackTintMode 0x0 -+int attr ttcIndex 0x0 -+int attr viewAspectRatio 0x0 -+int attr viewInflaterClass 0x0 -+int attr voiceIcon 0x0 -+int attr windowActionBar 0x0 -+int attr windowActionBarOverlay 0x0 -+int attr windowActionModeOverlay 0x0 -+int attr windowFixedHeightMajor 0x0 -+int attr windowFixedHeightMinor 0x0 -+int attr windowFixedWidthMajor 0x0 -+int attr windowFixedWidthMinor 0x0 -+int attr windowMinWidthMajor 0x0 -+int attr windowMinWidthMinor 0x0 -+int attr windowNoTitle 0x0 -+int bool abc_action_bar_embed_tabs 0x0 -+int bool abc_config_actionMenuItemAllCaps 0x0 -+int color abc_background_cache_hint_selector_material_dark 0x0 -+int color abc_background_cache_hint_selector_material_light 0x0 -+int color abc_btn_colored_borderless_text_material 0x0 -+int color abc_btn_colored_text_material 0x0 -+int color abc_color_highlight_material 0x0 -+int color abc_decor_view_status_guard 0x0 -+int color abc_decor_view_status_guard_light 0x0 -+int color abc_hint_foreground_material_dark 0x0 -+int color abc_hint_foreground_material_light 0x0 -+int color abc_primary_text_disable_only_material_dark 0x0 -+int color abc_primary_text_disable_only_material_light 0x0 -+int color abc_primary_text_material_dark 0x0 -+int color abc_primary_text_material_light 0x0 -+int color abc_search_url_text 0x0 -+int color abc_search_url_text_normal 0x0 -+int color abc_search_url_text_pressed 0x0 -+int color abc_search_url_text_selected 0x0 -+int color abc_secondary_text_material_dark 0x0 -+int color abc_secondary_text_material_light 0x0 -+int color abc_tint_btn_checkable 0x0 -+int color abc_tint_default 0x0 -+int color abc_tint_edittext 0x0 -+int color abc_tint_seek_thumb 0x0 -+int color abc_tint_spinner 0x0 -+int color abc_tint_switch_track 0x0 -+int color accent_material_dark 0x0 -+int color accent_material_light 0x0 -+int color androidx_core_ripple_material_light 0x0 -+int color androidx_core_secondary_text_default_material_light 0x0 -+int color background_floating_material_dark 0x0 -+int color background_floating_material_light 0x0 -+int color background_material_dark 0x0 -+int color background_material_light 0x0 -+int color bright_foreground_disabled_material_dark 0x0 -+int color bright_foreground_disabled_material_light 0x0 -+int color bright_foreground_inverse_material_dark 0x0 -+int color bright_foreground_inverse_material_light 0x0 -+int color bright_foreground_material_dark 0x0 -+int color bright_foreground_material_light 0x0 -+int color button_material_dark 0x0 -+int color button_material_light 0x0 -+int color call_notification_answer_color 0x0 -+int color call_notification_decline_color 0x0 -+int color catalyst_logbox_background 0x0 -+int color catalyst_redbox_background 0x0 -+int color dim_foreground_disabled_material_dark 0x0 -+int color dim_foreground_disabled_material_light 0x0 -+int color dim_foreground_material_dark 0x0 -+int color dim_foreground_material_light 0x0 -+int color error_color_material_dark 0x0 -+int color error_color_material_light 0x0 -+int color foreground_material_dark 0x0 -+int color foreground_material_light 0x0 -+int color highlighted_text_material_dark 0x0 -+int color highlighted_text_material_light 0x0 -+int color material_blue_grey_800 0x0 -+int color material_blue_grey_900 0x0 -+int color material_blue_grey_950 0x0 -+int color material_deep_teal_200 0x0 -+int color material_deep_teal_500 0x0 -+int color material_grey_100 0x0 -+int color material_grey_300 0x0 -+int color material_grey_50 0x0 -+int color material_grey_600 0x0 -+int color material_grey_800 0x0 -+int color material_grey_850 0x0 -+int color material_grey_900 0x0 -+int color notification_action_color_filter 0x0 -+int color notification_icon_bg_color 0x0 -+int color primary_dark_material_dark 0x0 -+int color primary_dark_material_light 0x0 -+int color primary_material_dark 0x0 -+int color primary_material_light 0x0 -+int color primary_text_default_material_dark 0x0 -+int color primary_text_default_material_light 0x0 -+int color primary_text_disabled_material_dark 0x0 -+int color primary_text_disabled_material_light 0x0 -+int color ripple_material_dark 0x0 -+int color ripple_material_light 0x0 -+int color secondary_text_default_material_dark 0x0 -+int color secondary_text_default_material_light 0x0 -+int color secondary_text_disabled_material_dark 0x0 -+int color secondary_text_disabled_material_light 0x0 -+int color switch_thumb_disabled_material_dark 0x0 -+int color switch_thumb_disabled_material_light 0x0 -+int color switch_thumb_material_dark 0x0 -+int color switch_thumb_material_light 0x0 -+int color switch_thumb_normal_material_dark 0x0 -+int color switch_thumb_normal_material_light 0x0 -+int color tooltip_background_dark 0x0 -+int color tooltip_background_light 0x0 -+int dimen abc_action_bar_content_inset_material 0x0 -+int dimen abc_action_bar_content_inset_with_nav 0x0 -+int dimen abc_action_bar_default_height_material 0x0 -+int dimen abc_action_bar_default_padding_end_material 0x0 -+int dimen abc_action_bar_default_padding_start_material 0x0 -+int dimen abc_action_bar_elevation_material 0x0 -+int dimen abc_action_bar_icon_vertical_padding_material 0x0 -+int dimen abc_action_bar_overflow_padding_end_material 0x0 -+int dimen abc_action_bar_overflow_padding_start_material 0x0 -+int dimen abc_action_bar_stacked_max_height 0x0 -+int dimen abc_action_bar_stacked_tab_max_width 0x0 -+int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 -+int dimen abc_action_bar_subtitle_top_margin_material 0x0 -+int dimen abc_action_button_min_height_material 0x0 -+int dimen abc_action_button_min_width_material 0x0 -+int dimen abc_action_button_min_width_overflow_material 0x0 -+int dimen abc_alert_dialog_button_bar_height 0x0 -+int dimen abc_alert_dialog_button_dimen 0x0 -+int dimen abc_button_inset_horizontal_material 0x0 -+int dimen abc_button_inset_vertical_material 0x0 -+int dimen abc_button_padding_horizontal_material 0x0 -+int dimen abc_button_padding_vertical_material 0x0 -+int dimen abc_cascading_menus_min_smallest_width 0x0 -+int dimen abc_config_prefDialogWidth 0x0 -+int dimen abc_control_corner_material 0x0 -+int dimen abc_control_inset_material 0x0 -+int dimen abc_control_padding_material 0x0 -+int dimen abc_dialog_corner_radius_material 0x0 -+int dimen abc_dialog_fixed_height_major 0x0 -+int dimen abc_dialog_fixed_height_minor 0x0 -+int dimen abc_dialog_fixed_width_major 0x0 -+int dimen abc_dialog_fixed_width_minor 0x0 -+int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 -+int dimen abc_dialog_list_padding_top_no_title 0x0 -+int dimen abc_dialog_min_width_major 0x0 -+int dimen abc_dialog_min_width_minor 0x0 -+int dimen abc_dialog_padding_material 0x0 -+int dimen abc_dialog_padding_top_material 0x0 -+int dimen abc_dialog_title_divider_material 0x0 -+int dimen abc_disabled_alpha_material_dark 0x0 -+int dimen abc_disabled_alpha_material_light 0x0 -+int dimen abc_dropdownitem_icon_width 0x0 -+int dimen abc_dropdownitem_text_padding_left 0x0 -+int dimen abc_dropdownitem_text_padding_right 0x0 -+int dimen abc_edit_text_inset_bottom_material 0x0 -+int dimen abc_edit_text_inset_horizontal_material 0x0 -+int dimen abc_edit_text_inset_top_material 0x0 -+int dimen abc_floating_window_z 0x0 -+int dimen abc_list_item_height_large_material 0x0 -+int dimen abc_list_item_height_material 0x0 -+int dimen abc_list_item_height_small_material 0x0 -+int dimen abc_list_item_padding_horizontal_material 0x0 -+int dimen abc_panel_menu_list_width 0x0 -+int dimen abc_progress_bar_height_material 0x0 -+int dimen abc_search_view_preferred_height 0x0 -+int dimen abc_search_view_preferred_width 0x0 -+int dimen abc_seekbar_track_background_height_material 0x0 -+int dimen abc_seekbar_track_progress_height_material 0x0 -+int dimen abc_select_dialog_padding_start_material 0x0 -+int dimen abc_star_big 0x0 -+int dimen abc_star_medium 0x0 -+int dimen abc_star_small 0x0 -+int dimen abc_switch_padding 0x0 -+int dimen abc_text_size_body_1_material 0x0 -+int dimen abc_text_size_body_2_material 0x0 -+int dimen abc_text_size_button_material 0x0 -+int dimen abc_text_size_caption_material 0x0 -+int dimen abc_text_size_display_1_material 0x0 -+int dimen abc_text_size_display_2_material 0x0 -+int dimen abc_text_size_display_3_material 0x0 -+int dimen abc_text_size_display_4_material 0x0 -+int dimen abc_text_size_headline_material 0x0 -+int dimen abc_text_size_large_material 0x0 -+int dimen abc_text_size_medium_material 0x0 -+int dimen abc_text_size_menu_header_material 0x0 -+int dimen abc_text_size_menu_material 0x0 -+int dimen abc_text_size_small_material 0x0 -+int dimen abc_text_size_subhead_material 0x0 -+int dimen abc_text_size_subtitle_material_toolbar 0x0 -+int dimen abc_text_size_title_material 0x0 -+int dimen abc_text_size_title_material_toolbar 0x0 -+int dimen autofill_inline_suggestion_icon_size 0x0 -+int dimen compat_button_inset_horizontal_material 0x0 -+int dimen compat_button_inset_vertical_material 0x0 -+int dimen compat_button_padding_horizontal_material 0x0 -+int dimen compat_button_padding_vertical_material 0x0 -+int dimen compat_control_corner_material 0x0 -+int dimen compat_notification_large_icon_max_height 0x0 -+int dimen compat_notification_large_icon_max_width 0x0 -+int dimen disabled_alpha_material_dark 0x0 -+int dimen disabled_alpha_material_light 0x0 -+int dimen highlight_alpha_material_colored 0x0 -+int dimen highlight_alpha_material_dark 0x0 -+int dimen highlight_alpha_material_light 0x0 -+int dimen hint_alpha_material_dark 0x0 -+int dimen hint_alpha_material_light 0x0 -+int dimen hint_pressed_alpha_material_dark 0x0 -+int dimen hint_pressed_alpha_material_light 0x0 -+int dimen notification_action_icon_size 0x0 -+int dimen notification_action_text_size 0x0 -+int dimen notification_big_circle_margin 0x0 -+int dimen notification_content_margin_start 0x0 -+int dimen notification_large_icon_height 0x0 -+int dimen notification_large_icon_width 0x0 -+int dimen notification_main_column_padding_top 0x0 -+int dimen notification_media_narrow_margin 0x0 -+int dimen notification_right_icon_size 0x0 -+int dimen notification_right_side_padding_top 0x0 -+int dimen notification_small_icon_background_padding 0x0 -+int dimen notification_small_icon_size_as_large 0x0 -+int dimen notification_subtext_size 0x0 -+int dimen notification_top_pad 0x0 -+int dimen notification_top_pad_large_text 0x0 -+int dimen tooltip_corner_radius 0x0 -+int dimen tooltip_horizontal_padding 0x0 -+int dimen tooltip_margin 0x0 -+int dimen tooltip_precise_anchor_extra_offset 0x0 -+int dimen tooltip_precise_anchor_threshold 0x0 -+int dimen tooltip_vertical_padding 0x0 -+int dimen tooltip_y_offset_non_touch 0x0 -+int dimen tooltip_y_offset_touch 0x0 -+int drawable abc_ab_share_pack_mtrl_alpha 0x0 -+int drawable abc_action_bar_item_background_material 0x0 -+int drawable abc_btn_borderless_material 0x0 -+int drawable abc_btn_check_material 0x0 -+int drawable abc_btn_check_material_anim 0x0 -+int drawable abc_btn_check_to_on_mtrl_000 0x0 -+int drawable abc_btn_check_to_on_mtrl_015 0x0 -+int drawable abc_btn_colored_material 0x0 -+int drawable abc_btn_default_mtrl_shape 0x0 -+int drawable abc_btn_radio_material 0x0 -+int drawable abc_btn_radio_material_anim 0x0 -+int drawable abc_btn_radio_to_on_mtrl_000 0x0 -+int drawable abc_btn_radio_to_on_mtrl_015 0x0 -+int drawable abc_btn_switch_to_on_mtrl_00001 0x0 -+int drawable abc_btn_switch_to_on_mtrl_00012 0x0 -+int drawable abc_cab_background_internal_bg 0x0 -+int drawable abc_cab_background_top_material 0x0 -+int drawable abc_cab_background_top_mtrl_alpha 0x0 -+int drawable abc_control_background_material 0x0 -+int drawable abc_dialog_material_background 0x0 -+int drawable abc_edit_text_material 0x0 -+int drawable abc_ic_ab_back_material 0x0 -+int drawable abc_ic_arrow_drop_right_black_24dp 0x0 -+int drawable abc_ic_clear_material 0x0 -+int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 -+int drawable abc_ic_go_search_api_material 0x0 -+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 -+int drawable abc_ic_menu_cut_mtrl_alpha 0x0 -+int drawable abc_ic_menu_overflow_material 0x0 -+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 -+int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 -+int drawable abc_ic_menu_share_mtrl_alpha 0x0 -+int drawable abc_ic_search_api_material 0x0 -+int drawable abc_ic_voice_search_api_material 0x0 -+int drawable abc_item_background_holo_dark 0x0 -+int drawable abc_item_background_holo_light 0x0 -+int drawable abc_list_divider_material 0x0 -+int drawable abc_list_divider_mtrl_alpha 0x0 -+int drawable abc_list_focused_holo 0x0 -+int drawable abc_list_longpressed_holo 0x0 -+int drawable abc_list_pressed_holo_dark 0x0 -+int drawable abc_list_pressed_holo_light 0x0 -+int drawable abc_list_selector_background_transition_holo_dark 0x0 -+int drawable abc_list_selector_background_transition_holo_light 0x0 -+int drawable abc_list_selector_disabled_holo_dark 0x0 -+int drawable abc_list_selector_disabled_holo_light 0x0 -+int drawable abc_list_selector_holo_dark 0x0 -+int drawable abc_list_selector_holo_light 0x0 -+int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 -+int drawable abc_popup_background_mtrl_mult 0x0 -+int drawable abc_ratingbar_indicator_material 0x0 -+int drawable abc_ratingbar_material 0x0 -+int drawable abc_ratingbar_small_material 0x0 -+int drawable abc_scrubber_control_off_mtrl_alpha 0x0 -+int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 -+int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 -+int drawable abc_scrubber_primary_mtrl_alpha 0x0 -+int drawable abc_scrubber_track_mtrl_alpha 0x0 -+int drawable abc_seekbar_thumb_material 0x0 -+int drawable abc_seekbar_tick_mark_material 0x0 -+int drawable abc_seekbar_track_material 0x0 -+int drawable abc_spinner_mtrl_am_alpha 0x0 -+int drawable abc_spinner_textfield_background_material 0x0 -+int drawable abc_star_black_48dp 0x0 -+int drawable abc_star_half_black_48dp 0x0 -+int drawable abc_switch_thumb_material 0x0 -+int drawable abc_switch_track_mtrl_alpha 0x0 -+int drawable abc_tab_indicator_material 0x0 -+int drawable abc_tab_indicator_mtrl_alpha 0x0 -+int drawable abc_text_cursor_material 0x0 -+int drawable abc_text_select_handle_left_mtrl 0x0 -+int drawable abc_text_select_handle_middle_mtrl 0x0 -+int drawable abc_text_select_handle_right_mtrl 0x0 -+int drawable abc_textfield_activated_mtrl_alpha 0x0 -+int drawable abc_textfield_default_mtrl_alpha 0x0 -+int drawable abc_textfield_search_activated_mtrl_alpha 0x0 -+int drawable abc_textfield_search_default_mtrl_alpha 0x0 -+int drawable abc_textfield_search_material 0x0 -+int drawable abc_vector_test 0x0 -+int drawable autofill_inline_suggestion_chip_background 0x0 -+int drawable btn_checkbox_checked_mtrl 0x0 -+int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 -+int drawable btn_checkbox_unchecked_mtrl 0x0 -+int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 -+int drawable btn_radio_off_mtrl 0x0 -+int drawable btn_radio_off_to_on_mtrl_animation 0x0 -+int drawable btn_radio_on_mtrl 0x0 -+int drawable btn_radio_on_to_off_mtrl_animation 0x0 -+int drawable default_scroll_handle_bottom 0x0 -+int drawable default_scroll_handle_left 0x0 -+int drawable default_scroll_handle_right 0x0 -+int drawable default_scroll_handle_top 0x0 -+int drawable ic_call_answer 0x0 -+int drawable ic_call_answer_low 0x0 -+int drawable ic_call_answer_video 0x0 -+int drawable ic_call_answer_video_low 0x0 -+int drawable ic_call_decline 0x0 -+int drawable ic_call_decline_low 0x0 -+int drawable ic_resume 0x0 -+int drawable notification_action_background 0x0 -+int drawable notification_bg 0x0 -+int drawable notification_bg_low 0x0 -+int drawable notification_bg_low_normal 0x0 -+int drawable notification_bg_low_pressed 0x0 -+int drawable notification_bg_normal 0x0 -+int drawable notification_bg_normal_pressed 0x0 -+int drawable notification_icon_background 0x0 -+int drawable notification_oversize_large_icon_bg 0x0 -+int drawable notification_template_icon_bg 0x0 -+int drawable notification_template_icon_low_bg 0x0 -+int drawable notification_tile_bg 0x0 -+int drawable notify_panel_notification_icon_bg 0x0 -+int drawable paused_in_debugger_background 0x0 -+int drawable paused_in_debugger_dialog_background 0x0 -+int drawable redbox_top_border_background 0x0 -+int drawable ripple_effect 0x0 -+int drawable test_level_drawable 0x0 -+int drawable tooltip_frame_dark 0x0 -+int drawable tooltip_frame_light 0x0 -+int id accessibility_action_clickable_span 0x0 -+int id accessibility_actions 0x0 -+int id accessibility_collection 0x0 -+int id accessibility_collection_item 0x0 -+int id accessibility_custom_action_0 0x0 -+int id accessibility_custom_action_1 0x0 -+int id accessibility_custom_action_10 0x0 -+int id accessibility_custom_action_11 0x0 -+int id accessibility_custom_action_12 0x0 -+int id accessibility_custom_action_13 0x0 -+int id accessibility_custom_action_14 0x0 -+int id accessibility_custom_action_15 0x0 -+int id accessibility_custom_action_16 0x0 -+int id accessibility_custom_action_17 0x0 -+int id accessibility_custom_action_18 0x0 -+int id accessibility_custom_action_19 0x0 -+int id accessibility_custom_action_2 0x0 -+int id accessibility_custom_action_20 0x0 -+int id accessibility_custom_action_21 0x0 -+int id accessibility_custom_action_22 0x0 -+int id accessibility_custom_action_23 0x0 -+int id accessibility_custom_action_24 0x0 -+int id accessibility_custom_action_25 0x0 -+int id accessibility_custom_action_26 0x0 -+int id accessibility_custom_action_27 0x0 -+int id accessibility_custom_action_28 0x0 -+int id accessibility_custom_action_29 0x0 -+int id accessibility_custom_action_3 0x0 -+int id accessibility_custom_action_30 0x0 -+int id accessibility_custom_action_31 0x0 -+int id accessibility_custom_action_4 0x0 -+int id accessibility_custom_action_5 0x0 -+int id accessibility_custom_action_6 0x0 -+int id accessibility_custom_action_7 0x0 -+int id accessibility_custom_action_8 0x0 -+int id accessibility_custom_action_9 0x0 -+int id accessibility_hint 0x0 -+int id accessibility_label 0x0 -+int id accessibility_links 0x0 -+int id accessibility_role 0x0 -+int id accessibility_state 0x0 -+int id accessibility_state_expanded 0x0 -+int id accessibility_value 0x0 -+int id action_bar 0x0 -+int id action_bar_activity_content 0x0 -+int id action_bar_container 0x0 -+int id action_bar_root 0x0 -+int id action_bar_spinner 0x0 -+int id action_bar_subtitle 0x0 -+int id action_bar_title 0x0 -+int id action_container 0x0 -+int id action_context_bar 0x0 -+int id action_divider 0x0 -+int id action_image 0x0 -+int id action_menu_divider 0x0 -+int id action_menu_presenter 0x0 -+int id action_mode_bar 0x0 -+int id action_mode_bar_stub 0x0 -+int id action_mode_close_button 0x0 -+int id action_text 0x0 -+int id actions 0x0 -+int id activity_chooser_view_content 0x0 -+int id add 0x0 -+int id alertTitle 0x0 -+int id alert_title 0x0 -+int id async 0x0 -+int id autofill_inline_suggestion_end_icon 0x0 -+int id autofill_inline_suggestion_start_icon 0x0 -+int id autofill_inline_suggestion_subtitle 0x0 -+int id autofill_inline_suggestion_title 0x0 -+int id blocking 0x0 -+int id button 0x0 -+int id buttonPanel 0x0 -+int id button_text 0x0 -+int id catalyst_redbox_title 0x0 -+int id center 0x0 -+int id centerCrop 0x0 -+int id centerInside 0x0 -+int id checkbox 0x0 -+int id checked 0x0 -+int id chronometer 0x0 -+int id content 0x0 -+int id contentPanel 0x0 -+int id custom 0x0 -+int id customPanel 0x0 -+int id decor_content_parent 0x0 -+int id default_activity_button 0x0 -+int id dialog_button 0x0 -+int id edit_query 0x0 -+int id edit_text_id 0x0 -+int id expand_activities_button 0x0 -+int id expanded_menu 0x0 -+int id filter 0x0 -+int id fitBottomStart 0x0 -+int id fitCenter 0x0 -+int id fitEnd 0x0 -+int id fitStart 0x0 -+int id fitXY 0x0 -+int id focusCrop 0x0 -+int id forever 0x0 -+int id fps_text 0x0 -+int id fragment_container_view_tag 0x0 -+int id group_divider 0x0 -+int id hide_ime_id 0x0 -+int id home 0x0 -+int id icon 0x0 -+int id icon_group 0x0 -+int id image 0x0 -+int id info 0x0 -+int id invalidate_transform 0x0 -+int id italic 0x0 -+int id labelled_by 0x0 -+int id line1 0x0 -+int id line3 0x0 -+int id listMode 0x0 -+int id list_item 0x0 -+int id message 0x0 -+int id mix_blend_mode 0x0 -+int id multiply 0x0 -+int id none 0x0 -+int id normal 0x0 -+int id notification_background 0x0 -+int id notification_main_column 0x0 -+int id notification_main_column_container 0x0 -+int id off 0x0 -+int id on 0x0 -+int id parentPanel 0x0 -+int id pointer_events 0x0 -+int id progress_circular 0x0 -+int id progress_horizontal 0x0 -+int id radio 0x0 -+int id react_test_id 0x0 -+int id report_drawn 0x0 -+int id right_icon 0x0 -+int id right_side 0x0 -+int id rn_frame_file 0x0 -+int id rn_frame_method 0x0 -+int id rn_redbox_dismiss_button 0x0 -+int id rn_redbox_line_separator 0x0 -+int id rn_redbox_loading_indicator 0x0 -+int id rn_redbox_reload_button 0x0 -+int id rn_redbox_report_button 0x0 -+int id rn_redbox_report_label 0x0 -+int id rn_redbox_stack 0x0 -+int id role 0x0 -+int id screen 0x0 -+int id scrollIndicatorDown 0x0 -+int id scrollIndicatorUp 0x0 -+int id scrollView 0x0 -+int id search_badge 0x0 -+int id search_bar 0x0 -+int id search_button 0x0 -+int id search_close_btn 0x0 -+int id search_edit_frame 0x0 -+int id search_go_btn 0x0 -+int id search_mag_icon 0x0 -+int id search_plate 0x0 -+int id search_src_text 0x0 -+int id search_voice_btn 0x0 -+int id select_dialog_listview 0x0 -+int id shortcut 0x0 -+int id spacer 0x0 -+int id special_effects_controller_view_tag 0x0 -+int id split_action_bar 0x0 -+int id src_atop 0x0 -+int id src_in 0x0 -+int id src_over 0x0 -+int id submenuarrow 0x0 -+int id submit_area 0x0 -+int id tabMode 0x0 -+int id tag_accessibility_actions 0x0 -+int id tag_accessibility_clickable_spans 0x0 -+int id tag_accessibility_heading 0x0 -+int id tag_accessibility_pane_title 0x0 -+int id tag_on_apply_window_listener 0x0 -+int id tag_on_receive_content_listener 0x0 -+int id tag_on_receive_content_mime_types 0x0 -+int id tag_screen_reader_focusable 0x0 -+int id tag_state_description 0x0 -+int id tag_transition_group 0x0 -+int id tag_unhandled_key_event_manager 0x0 -+int id tag_unhandled_key_listeners 0x0 -+int id tag_window_insets_animation_callback 0x0 -+int id text 0x0 -+int id text2 0x0 -+int id textSpacerNoButtons 0x0 -+int id textSpacerNoTitle 0x0 -+int id time 0x0 -+int id title 0x0 -+int id titleDividerNoCustom 0x0 -+int id title_template 0x0 -+int id topPanel 0x0 -+int id transform 0x0 -+int id transform_origin 0x0 -+int id unchecked 0x0 -+int id uniform 0x0 -+int id up 0x0 -+int id use_hardware_layer 0x0 -+int id view_clipped 0x0 -+int id view_tag_instance_handle 0x0 -+int id view_tag_native_id 0x0 -+int id view_tree_lifecycle_owner 0x0 -+int id view_tree_on_back_pressed_dispatcher_owner 0x0 -+int id view_tree_saved_state_registry_owner 0x0 -+int id view_tree_view_model_store_owner 0x0 -+int id visible_removing_fragment_view_tag 0x0 -+int id wrap_content 0x0 -+int integer abc_config_activityDefaultDur 0x0 -+int integer abc_config_activityShortDur 0x0 -+int integer cancel_button_image_alpha 0x0 -+int integer config_tooltipAnimTime 0x0 -+int integer react_native_dev_server_port 0x0 -+int integer status_bar_notification_info_maxnum 0x0 -+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 -+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 -+int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 -+int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 -+int interpolator fast_out_slow_in 0x0 -+int layout abc_action_bar_title_item 0x0 -+int layout abc_action_bar_up_container 0x0 -+int layout abc_action_menu_item_layout 0x0 -+int layout abc_action_menu_layout 0x0 -+int layout abc_action_mode_bar 0x0 -+int layout abc_action_mode_close_item_material 0x0 -+int layout abc_activity_chooser_view 0x0 -+int layout abc_activity_chooser_view_list_item 0x0 -+int layout abc_alert_dialog_button_bar_material 0x0 -+int layout abc_alert_dialog_material 0x0 -+int layout abc_alert_dialog_title_material 0x0 -+int layout abc_cascading_menu_item_layout 0x0 -+int layout abc_dialog_title_material 0x0 -+int layout abc_expanded_menu_layout 0x0 -+int layout abc_list_menu_item_checkbox 0x0 -+int layout abc_list_menu_item_icon 0x0 -+int layout abc_list_menu_item_layout 0x0 -+int layout abc_list_menu_item_radio 0x0 -+int layout abc_popup_menu_header_item_layout 0x0 -+int layout abc_popup_menu_item_layout 0x0 -+int layout abc_screen_content_include 0x0 -+int layout abc_screen_simple 0x0 -+int layout abc_screen_simple_overlay_action_mode 0x0 -+int layout abc_screen_toolbar 0x0 -+int layout abc_search_dropdown_item_icons_2line 0x0 -+int layout abc_search_view 0x0 -+int layout abc_select_dialog_material 0x0 -+int layout abc_tooltip 0x0 -+int layout alert_title_layout 0x0 -+int layout autofill_inline_suggestion 0x0 -+int layout custom_dialog 0x0 -+int layout dev_loading_view 0x0 -+int layout fps_view 0x0 -+int layout ime_base_split_test_activity 0x0 -+int layout ime_secondary_split_test_activity 0x0 -+int layout notification_action 0x0 -+int layout notification_action_tombstone 0x0 -+int layout notification_template_custom_big 0x0 -+int layout notification_template_icon_group 0x0 -+int layout notification_template_part_chronometer 0x0 -+int layout notification_template_part_time 0x0 -+int layout paused_in_debugger_view 0x0 -+int layout redbox_item_frame 0x0 -+int layout redbox_item_title 0x0 -+int layout redbox_view 0x0 -+int layout select_dialog_item_material 0x0 -+int layout select_dialog_multichoice_material 0x0 -+int layout select_dialog_singlechoice_material 0x0 -+int layout support_simple_spinner_dropdown_item 0x0 -+int string abc_action_bar_home_description 0x0 -+int string abc_action_bar_up_description 0x0 -+int string abc_action_menu_overflow_description 0x0 -+int string abc_action_mode_done 0x0 -+int string abc_activity_chooser_view_see_all 0x0 -+int string abc_activitychooserview_choose_application 0x0 -+int string abc_capital_off 0x0 -+int string abc_capital_on 0x0 -+int string abc_menu_alt_shortcut_label 0x0 -+int string abc_menu_ctrl_shortcut_label 0x0 -+int string abc_menu_delete_shortcut_label 0x0 -+int string abc_menu_enter_shortcut_label 0x0 -+int string abc_menu_function_shortcut_label 0x0 -+int string abc_menu_meta_shortcut_label 0x0 -+int string abc_menu_shift_shortcut_label 0x0 -+int string abc_menu_space_shortcut_label 0x0 -+int string abc_menu_sym_shortcut_label 0x0 -+int string abc_prepend_shortcut_label 0x0 -+int string abc_search_hint 0x0 -+int string abc_searchview_description_clear 0x0 -+int string abc_searchview_description_query 0x0 -+int string abc_searchview_description_search 0x0 -+int string abc_searchview_description_submit 0x0 -+int string abc_searchview_description_voice 0x0 -+int string abc_shareactionprovider_share_with 0x0 -+int string abc_shareactionprovider_share_with_application 0x0 -+int string abc_toolbar_collapse_description 0x0 -+int string alert_description 0x0 -+int string call_notification_answer_action 0x0 -+int string call_notification_answer_video_action 0x0 -+int string call_notification_decline_action 0x0 -+int string call_notification_hang_up_action 0x0 -+int string call_notification_incoming_text 0x0 -+int string call_notification_ongoing_text 0x0 -+int string call_notification_screening_text 0x0 -+int string catalyst_change_bundle_location 0x0 -+int string catalyst_copy_button 0x0 -+int string catalyst_debug_connecting 0x0 -+int string catalyst_debug_error 0x0 -+int string catalyst_debug_open 0x0 -+int string catalyst_debug_open_disabled 0x0 -+int string catalyst_dev_menu_header 0x0 -+int string catalyst_dev_menu_sub_header 0x0 -+int string catalyst_dismiss_button 0x0 -+int string catalyst_heap_capture 0x0 -+int string catalyst_hot_reloading 0x0 -+int string catalyst_hot_reloading_auto_disable 0x0 -+int string catalyst_hot_reloading_auto_enable 0x0 -+int string catalyst_hot_reloading_stop 0x0 -+int string catalyst_inspector_toggle 0x0 -+int string catalyst_loading_from_url 0x0 -+int string catalyst_open_debugger_error 0x0 -+int string catalyst_perf_monitor 0x0 -+int string catalyst_perf_monitor_stop 0x0 -+int string catalyst_reload 0x0 -+int string catalyst_reload_button 0x0 -+int string catalyst_reload_error 0x0 -+int string catalyst_report_button 0x0 -+int string catalyst_sample_profiler_toggle 0x0 -+int string catalyst_settings 0x0 -+int string catalyst_settings_title 0x0 -+int string combobox_description 0x0 -+int string header_description 0x0 -+int string image_description 0x0 -+int string imagebutton_description 0x0 -+int string link_description 0x0 -+int string menu_description 0x0 -+int string menubar_description 0x0 -+int string menuitem_description 0x0 -+int string progressbar_description 0x0 -+int string radiogroup_description 0x0 -+int string rn_tab_description 0x0 -+int string scrollbar_description 0x0 -+int string search_menu_title 0x0 -+int string spinbutton_description 0x0 -+int string state_busy_description 0x0 -+int string state_collapsed_description 0x0 -+int string state_expanded_description 0x0 -+int string state_mixed_description 0x0 -+int string state_off_description 0x0 -+int string state_on_description 0x0 -+int string state_unselected_description 0x0 -+int string status_bar_notification_info_overflow 0x0 -+int string summary_description 0x0 -+int string tablist_description 0x0 -+int string timer_description 0x0 -+int string toolbar_description 0x0 -+int style AlertDialog_AppCompat 0x0 -+int style AlertDialog_AppCompat_Light 0x0 -+int style Animation_AppCompat_Dialog 0x0 -+int style Animation_AppCompat_DropDownUp 0x0 -+int style Animation_AppCompat_Tooltip 0x0 -+int style Animation_Catalyst_LogBox 0x0 -+int style Animation_Catalyst_RedBox 0x0 -+int style Base_AlertDialog_AppCompat 0x0 -+int style Base_AlertDialog_AppCompat_Light 0x0 -+int style Base_Animation_AppCompat_Dialog 0x0 -+int style Base_Animation_AppCompat_DropDownUp 0x0 -+int style Base_Animation_AppCompat_Tooltip 0x0 -+int style Base_DialogWindowTitleBackground_AppCompat 0x0 -+int style Base_DialogWindowTitle_AppCompat 0x0 -+int style Base_TextAppearance_AppCompat 0x0 -+int style Base_TextAppearance_AppCompat_Body1 0x0 -+int style Base_TextAppearance_AppCompat_Body2 0x0 -+int style Base_TextAppearance_AppCompat_Button 0x0 -+int style Base_TextAppearance_AppCompat_Caption 0x0 -+int style Base_TextAppearance_AppCompat_Display1 0x0 -+int style Base_TextAppearance_AppCompat_Display2 0x0 -+int style Base_TextAppearance_AppCompat_Display3 0x0 -+int style Base_TextAppearance_AppCompat_Display4 0x0 -+int style Base_TextAppearance_AppCompat_Headline 0x0 -+int style Base_TextAppearance_AppCompat_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Large 0x0 -+int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -+int style Base_TextAppearance_AppCompat_Medium 0x0 -+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Menu 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 -+int style Base_TextAppearance_AppCompat_Small 0x0 -+int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Subhead 0x0 -+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Title 0x0 -+int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Tooltip 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -+int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 -+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -+int style Base_ThemeOverlay_AppCompat 0x0 -+int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 -+int style Base_ThemeOverlay_AppCompat_Dark 0x0 -+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -+int style Base_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 -+int style Base_ThemeOverlay_AppCompat_Light 0x0 -+int style Base_Theme_AppCompat 0x0 -+int style Base_Theme_AppCompat_CompactMenu 0x0 -+int style Base_Theme_AppCompat_Dialog 0x0 -+int style Base_Theme_AppCompat_DialogWhenLarge 0x0 -+int style Base_Theme_AppCompat_Dialog_Alert 0x0 -+int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 -+int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 -+int style Base_Theme_AppCompat_Light 0x0 -+int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 -+int style Base_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 -+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 -+int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_V21_Theme_AppCompat 0x0 -+int style Base_V21_Theme_AppCompat_Dialog 0x0 -+int style Base_V21_Theme_AppCompat_Light 0x0 -+int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_V22_Theme_AppCompat 0x0 -+int style Base_V22_Theme_AppCompat_Light 0x0 -+int style Base_V23_Theme_AppCompat 0x0 -+int style Base_V23_Theme_AppCompat_Light 0x0 -+int style Base_V26_Theme_AppCompat 0x0 -+int style Base_V26_Theme_AppCompat_Light 0x0 -+int style Base_V26_Widget_AppCompat_Toolbar 0x0 -+int style Base_V28_Theme_AppCompat 0x0 -+int style Base_V28_Theme_AppCompat_Light 0x0 -+int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 -+int style Base_V7_Theme_AppCompat 0x0 -+int style Base_V7_Theme_AppCompat_Dialog 0x0 -+int style Base_V7_Theme_AppCompat_Light 0x0 -+int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 -+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Base_V7_Widget_AppCompat_EditText 0x0 -+int style Base_V7_Widget_AppCompat_Toolbar 0x0 -+int style Base_Widget_AppCompat_ActionBar 0x0 -+int style Base_Widget_AppCompat_ActionBar_Solid 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabText 0x0 -+int style Base_Widget_AppCompat_ActionBar_TabView 0x0 -+int style Base_Widget_AppCompat_ActionButton 0x0 -+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 -+int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 -+int style Base_Widget_AppCompat_ActionMode 0x0 -+int style Base_Widget_AppCompat_ActivityChooserView 0x0 -+int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Base_Widget_AppCompat_Button 0x0 -+int style Base_Widget_AppCompat_ButtonBar 0x0 -+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 -+int style Base_Widget_AppCompat_Button_Borderless 0x0 -+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 -+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -+int style Base_Widget_AppCompat_Button_Colored 0x0 -+int style Base_Widget_AppCompat_Button_Small 0x0 -+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 -+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 -+int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 -+int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 -+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 -+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 -+int style Base_Widget_AppCompat_EditText 0x0 -+int style Base_Widget_AppCompat_ImageButton 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 -+int style Base_Widget_AppCompat_Light_PopupMenu 0x0 -+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -+int style Base_Widget_AppCompat_ListMenuView 0x0 -+int style Base_Widget_AppCompat_ListPopupWindow 0x0 -+int style Base_Widget_AppCompat_ListView 0x0 -+int style Base_Widget_AppCompat_ListView_DropDown 0x0 -+int style Base_Widget_AppCompat_ListView_Menu 0x0 -+int style Base_Widget_AppCompat_PopupMenu 0x0 -+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 -+int style Base_Widget_AppCompat_PopupWindow 0x0 -+int style Base_Widget_AppCompat_ProgressBar 0x0 -+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 -+int style Base_Widget_AppCompat_RatingBar 0x0 -+int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 -+int style Base_Widget_AppCompat_RatingBar_Small 0x0 -+int style Base_Widget_AppCompat_SearchView 0x0 -+int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 -+int style Base_Widget_AppCompat_SeekBar 0x0 -+int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 -+int style Base_Widget_AppCompat_Spinner 0x0 -+int style Base_Widget_AppCompat_Spinner_Underlined 0x0 -+int style Base_Widget_AppCompat_TextView 0x0 -+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 -+int style Base_Widget_AppCompat_Toolbar 0x0 -+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style CalendarDatePickerDialog 0x0 -+int style CalendarDatePickerStyle 0x0 -+int style DialogAnimationFade 0x0 -+int style DialogAnimationSlide 0x0 -+int style NoAnimationDialog 0x0 -+int style Platform_AppCompat 0x0 -+int style Platform_AppCompat_Light 0x0 -+int style Platform_ThemeOverlay_AppCompat 0x0 -+int style Platform_ThemeOverlay_AppCompat_Dark 0x0 -+int style Platform_ThemeOverlay_AppCompat_Light 0x0 -+int style Platform_V21_AppCompat 0x0 -+int style Platform_V21_AppCompat_Light 0x0 -+int style Platform_V25_AppCompat 0x0 -+int style Platform_V25_AppCompat_Light 0x0 -+int style Platform_Widget_AppCompat_Spinner 0x0 -+int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 -+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 -+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 -+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 -+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 -+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 -+int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 -+int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 -+int style SpinnerDatePickerDialog 0x0 -+int style SpinnerDatePickerStyle 0x0 -+int style TextAppearance_AppCompat 0x0 -+int style TextAppearance_AppCompat_Body1 0x0 -+int style TextAppearance_AppCompat_Body2 0x0 -+int style TextAppearance_AppCompat_Button 0x0 -+int style TextAppearance_AppCompat_Caption 0x0 -+int style TextAppearance_AppCompat_Display1 0x0 -+int style TextAppearance_AppCompat_Display2 0x0 -+int style TextAppearance_AppCompat_Display3 0x0 -+int style TextAppearance_AppCompat_Display4 0x0 -+int style TextAppearance_AppCompat_Headline 0x0 -+int style TextAppearance_AppCompat_Inverse 0x0 -+int style TextAppearance_AppCompat_Large 0x0 -+int style TextAppearance_AppCompat_Large_Inverse 0x0 -+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 -+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 -+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -+int style TextAppearance_AppCompat_Medium 0x0 -+int style TextAppearance_AppCompat_Medium_Inverse 0x0 -+int style TextAppearance_AppCompat_Menu 0x0 -+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -+int style TextAppearance_AppCompat_SearchResult_Title 0x0 -+int style TextAppearance_AppCompat_Small 0x0 -+int style TextAppearance_AppCompat_Small_Inverse 0x0 -+int style TextAppearance_AppCompat_Subhead 0x0 -+int style TextAppearance_AppCompat_Subhead_Inverse 0x0 -+int style TextAppearance_AppCompat_Title 0x0 -+int style TextAppearance_AppCompat_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Tooltip 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_Button 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 -+int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -+int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -+int style TextAppearance_AppCompat_Widget_Switch 0x0 -+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -+int style TextAppearance_Compat_Notification 0x0 -+int style TextAppearance_Compat_Notification_Info 0x0 -+int style TextAppearance_Compat_Notification_Line2 0x0 -+int style TextAppearance_Compat_Notification_Time 0x0 -+int style TextAppearance_Compat_Notification_Title 0x0 -+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -+int style Theme 0x0 -+int style ThemeOverlay_AppCompat 0x0 -+int style ThemeOverlay_AppCompat_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_Dark 0x0 -+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_DayNight 0x0 -+int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 -+int style ThemeOverlay_AppCompat_Dialog 0x0 -+int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 -+int style ThemeOverlay_AppCompat_Light 0x0 -+int style Theme_AppCompat 0x0 -+int style Theme_AppCompat_CompactMenu 0x0 -+int style Theme_AppCompat_DayNight 0x0 -+int style Theme_AppCompat_DayNight_DarkActionBar 0x0 -+int style Theme_AppCompat_DayNight_Dialog 0x0 -+int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 -+int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 -+int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_DayNight_NoActionBar 0x0 -+int style Theme_AppCompat_Dialog 0x0 -+int style Theme_AppCompat_DialogWhenLarge 0x0 -+int style Theme_AppCompat_Dialog_Alert 0x0 -+int style Theme_AppCompat_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_Empty 0x0 -+int style Theme_AppCompat_Light 0x0 -+int style Theme_AppCompat_Light_DarkActionBar 0x0 -+int style Theme_AppCompat_Light_Dialog 0x0 -+int style Theme_AppCompat_Light_DialogWhenLarge 0x0 -+int style Theme_AppCompat_Light_Dialog_Alert 0x0 -+int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 -+int style Theme_AppCompat_Light_NoActionBar 0x0 -+int style Theme_AppCompat_NoActionBar 0x0 -+int style Theme_AutofillInlineSuggestion 0x0 -+int style Theme_Catalyst 0x0 -+int style Theme_Catalyst_LogBox 0x0 -+int style Theme_Catalyst_RedBox 0x0 -+int style Theme_FullScreenDialog 0x0 -+int style Theme_FullScreenDialogAnimatedFade 0x0 -+int style Theme_FullScreenDialogAnimatedSlide 0x0 -+int style Theme_ReactNative_AppCompat_Light 0x0 -+int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x0 -+int style Theme_ReactNative_TextInput_DefaultBackground 0x0 -+int style Widget_AppCompat_ActionBar 0x0 -+int style Widget_AppCompat_ActionBar_Solid 0x0 -+int style Widget_AppCompat_ActionBar_TabBar 0x0 -+int style Widget_AppCompat_ActionBar_TabText 0x0 -+int style Widget_AppCompat_ActionBar_TabView 0x0 -+int style Widget_AppCompat_ActionButton 0x0 -+int style Widget_AppCompat_ActionButton_CloseMode 0x0 -+int style Widget_AppCompat_ActionButton_Overflow 0x0 -+int style Widget_AppCompat_ActionMode 0x0 -+int style Widget_AppCompat_ActivityChooserView 0x0 -+int style Widget_AppCompat_AutoCompleteTextView 0x0 -+int style Widget_AppCompat_Button 0x0 -+int style Widget_AppCompat_ButtonBar 0x0 -+int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 -+int style Widget_AppCompat_Button_Borderless 0x0 -+int style Widget_AppCompat_Button_Borderless_Colored 0x0 -+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -+int style Widget_AppCompat_Button_Colored 0x0 -+int style Widget_AppCompat_Button_Small 0x0 -+int style Widget_AppCompat_CompoundButton_CheckBox 0x0 -+int style Widget_AppCompat_CompoundButton_RadioButton 0x0 -+int style Widget_AppCompat_CompoundButton_Switch 0x0 -+int style Widget_AppCompat_DrawerArrowToggle 0x0 -+int style Widget_AppCompat_DropDownItem_Spinner 0x0 -+int style Widget_AppCompat_EditText 0x0 -+int style Widget_AppCompat_ImageButton 0x0 -+int style Widget_AppCompat_Light_ActionBar 0x0 -+int style Widget_AppCompat_Light_ActionBar_Solid 0x0 -+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabText 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabView 0x0 -+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 -+int style Widget_AppCompat_Light_ActionButton 0x0 -+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 -+int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 -+int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 -+int style Widget_AppCompat_Light_ActivityChooserView 0x0 -+int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 -+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 -+int style Widget_AppCompat_Light_ListPopupWindow 0x0 -+int style Widget_AppCompat_Light_ListView_DropDown 0x0 -+int style Widget_AppCompat_Light_PopupMenu 0x0 -+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -+int style Widget_AppCompat_Light_SearchView 0x0 -+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 -+int style Widget_AppCompat_ListMenuView 0x0 -+int style Widget_AppCompat_ListPopupWindow 0x0 -+int style Widget_AppCompat_ListView 0x0 -+int style Widget_AppCompat_ListView_DropDown 0x0 -+int style Widget_AppCompat_ListView_Menu 0x0 -+int style Widget_AppCompat_PopupMenu 0x0 -+int style Widget_AppCompat_PopupMenu_Overflow 0x0 -+int style Widget_AppCompat_PopupWindow 0x0 -+int style Widget_AppCompat_ProgressBar 0x0 -+int style Widget_AppCompat_ProgressBar_Horizontal 0x0 -+int style Widget_AppCompat_RatingBar 0x0 -+int style Widget_AppCompat_RatingBar_Indicator 0x0 -+int style Widget_AppCompat_RatingBar_Small 0x0 -+int style Widget_AppCompat_SearchView 0x0 -+int style Widget_AppCompat_SearchView_ActionBar 0x0 -+int style Widget_AppCompat_SeekBar 0x0 -+int style Widget_AppCompat_SeekBar_Discrete 0x0 -+int style Widget_AppCompat_Spinner 0x0 -+int style Widget_AppCompat_Spinner_DropDown 0x0 -+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 -+int style Widget_AppCompat_Spinner_Underlined 0x0 -+int style Widget_AppCompat_TextView 0x0 -+int style Widget_AppCompat_TextView_SpinnerItem 0x0 -+int style Widget_AppCompat_Toolbar 0x0 -+int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style Widget_Autofill 0x0 -+int style Widget_Autofill_InlineSuggestionChip 0x0 -+int style Widget_Autofill_InlineSuggestionEndIconStyle 0x0 -+int style Widget_Autofill_InlineSuggestionStartIconStyle 0x0 -+int style Widget_Autofill_InlineSuggestionSubtitle 0x0 -+int style Widget_Autofill_InlineSuggestionTitle 0x0 -+int style Widget_Compat_NotificationActionContainer 0x0 -+int style Widget_Compat_NotificationActionText 0x0 -+int style redboxButton 0x0 -+int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionBar_background 0 -+int styleable ActionBar_backgroundSplit 1 -+int styleable ActionBar_backgroundStacked 2 -+int styleable ActionBar_contentInsetEnd 3 -+int styleable ActionBar_contentInsetEndWithActions 4 -+int styleable ActionBar_contentInsetLeft 5 -+int styleable ActionBar_contentInsetRight 6 -+int styleable ActionBar_contentInsetStart 7 -+int styleable ActionBar_contentInsetStartWithNavigation 8 -+int styleable ActionBar_customNavigationLayout 9 -+int styleable ActionBar_displayOptions 10 -+int styleable ActionBar_divider 11 -+int styleable ActionBar_elevation 12 -+int styleable ActionBar_height 13 -+int styleable ActionBar_hideOnContentScroll 14 -+int styleable ActionBar_homeAsUpIndicator 15 -+int styleable ActionBar_homeLayout 16 -+int styleable ActionBar_icon 17 -+int styleable ActionBar_indeterminateProgressStyle 18 -+int styleable ActionBar_itemPadding 19 -+int styleable ActionBar_logo 20 -+int styleable ActionBar_navigationMode 21 -+int styleable ActionBar_popupTheme 22 -+int styleable ActionBar_progressBarPadding 23 -+int styleable ActionBar_progressBarStyle 24 -+int styleable ActionBar_subtitle 25 -+int styleable ActionBar_subtitleTextStyle 26 -+int styleable ActionBar_title 27 -+int styleable ActionBar_titleTextStyle 28 -+int[] styleable ActionBarLayout { 0x10100b3 } -+int styleable ActionBarLayout_android_layout_gravity 0 -+int[] styleable ActionMenuItemView { 0x101013f } -+int styleable ActionMenuItemView_android_minWidth 0 -+int[] styleable ActionMenuView { } -+int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionMode_background 0 -+int styleable ActionMode_backgroundSplit 1 -+int styleable ActionMode_closeItemLayout 2 -+int styleable ActionMode_height 3 -+int styleable ActionMode_subtitleTextStyle 4 -+int styleable ActionMode_titleTextStyle 5 -+int[] styleable ActivityChooserView { 0x0, 0x0 } -+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -+int styleable ActivityChooserView_initialActivityCount 1 -+int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AlertDialog_android_layout 0 -+int styleable AlertDialog_buttonIconDimen 1 -+int styleable AlertDialog_buttonPanelSideLayout 2 -+int styleable AlertDialog_listItemLayout 3 -+int styleable AlertDialog_listLayout 4 -+int styleable AlertDialog_multiChoiceItemLayout 5 -+int styleable AlertDialog_showTitle 6 -+int styleable AlertDialog_singleChoiceItemLayout 7 -+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable AnimatedStateListDrawableCompat_android_constantSize 0 -+int styleable AnimatedStateListDrawableCompat_android_dither 1 -+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 -+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 -+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 -+int styleable AnimatedStateListDrawableCompat_android_visible 5 -+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } -+int styleable AnimatedStateListDrawableItem_android_drawable 0 -+int styleable AnimatedStateListDrawableItem_android_id 1 -+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } -+int styleable AnimatedStateListDrawableTransition_android_drawable 0 -+int styleable AnimatedStateListDrawableTransition_android_fromId 1 -+int styleable AnimatedStateListDrawableTransition_android_reversible 2 -+int styleable AnimatedStateListDrawableTransition_android_toId 3 -+int[] styleable AppCompatEmojiHelper { } -+int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } -+int styleable AppCompatImageView_android_src 0 -+int styleable AppCompatImageView_srcCompat 1 -+int styleable AppCompatImageView_tint 2 -+int styleable AppCompatImageView_tintMode 3 -+int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } -+int styleable AppCompatSeekBar_android_thumb 0 -+int styleable AppCompatSeekBar_tickMark 1 -+int styleable AppCompatSeekBar_tickMarkTint 2 -+int styleable AppCompatSeekBar_tickMarkTintMode 3 -+int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } -+int styleable AppCompatTextHelper_android_drawableBottom 0 -+int styleable AppCompatTextHelper_android_drawableEnd 1 -+int styleable AppCompatTextHelper_android_drawableLeft 2 -+int styleable AppCompatTextHelper_android_drawableRight 3 -+int styleable AppCompatTextHelper_android_drawableStart 4 -+int styleable AppCompatTextHelper_android_drawableTop 5 -+int styleable AppCompatTextHelper_android_textAppearance 6 -+int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AppCompatTextView_android_textAppearance 0 -+int styleable AppCompatTextView_autoSizeMaxTextSize 1 -+int styleable AppCompatTextView_autoSizeMinTextSize 2 -+int styleable AppCompatTextView_autoSizePresetSizes 3 -+int styleable AppCompatTextView_autoSizeStepGranularity 4 -+int styleable AppCompatTextView_autoSizeTextType 5 -+int styleable AppCompatTextView_drawableBottomCompat 6 -+int styleable AppCompatTextView_drawableEndCompat 7 -+int styleable AppCompatTextView_drawableLeftCompat 8 -+int styleable AppCompatTextView_drawableRightCompat 9 -+int styleable AppCompatTextView_drawableStartCompat 10 -+int styleable AppCompatTextView_drawableTint 11 -+int styleable AppCompatTextView_drawableTintMode 12 -+int styleable AppCompatTextView_drawableTopCompat 13 -+int styleable AppCompatTextView_emojiCompatEnabled 14 -+int styleable AppCompatTextView_firstBaselineToTopHeight 15 -+int styleable AppCompatTextView_fontFamily 16 -+int styleable AppCompatTextView_fontVariationSettings 17 -+int styleable AppCompatTextView_lastBaselineToBottomHeight 18 -+int styleable AppCompatTextView_lineHeight 19 -+int styleable AppCompatTextView_textAllCaps 20 -+int styleable AppCompatTextView_textLocale 21 -+int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AppCompatTheme_actionBarDivider 0 -+int styleable AppCompatTheme_actionBarItemBackground 1 -+int styleable AppCompatTheme_actionBarPopupTheme 2 -+int styleable AppCompatTheme_actionBarSize 3 -+int styleable AppCompatTheme_actionBarSplitStyle 4 -+int styleable AppCompatTheme_actionBarStyle 5 -+int styleable AppCompatTheme_actionBarTabBarStyle 6 -+int styleable AppCompatTheme_actionBarTabStyle 7 -+int styleable AppCompatTheme_actionBarTabTextStyle 8 -+int styleable AppCompatTheme_actionBarTheme 9 -+int styleable AppCompatTheme_actionBarWidgetTheme 10 -+int styleable AppCompatTheme_actionButtonStyle 11 -+int styleable AppCompatTheme_actionDropDownStyle 12 -+int styleable AppCompatTheme_actionMenuTextAppearance 13 -+int styleable AppCompatTheme_actionMenuTextColor 14 -+int styleable AppCompatTheme_actionModeBackground 15 -+int styleable AppCompatTheme_actionModeCloseButtonStyle 16 -+int styleable AppCompatTheme_actionModeCloseContentDescription 17 -+int styleable AppCompatTheme_actionModeCloseDrawable 18 -+int styleable AppCompatTheme_actionModeCopyDrawable 19 -+int styleable AppCompatTheme_actionModeCutDrawable 20 -+int styleable AppCompatTheme_actionModeFindDrawable 21 -+int styleable AppCompatTheme_actionModePasteDrawable 22 -+int styleable AppCompatTheme_actionModePopupWindowStyle 23 -+int styleable AppCompatTheme_actionModeSelectAllDrawable 24 -+int styleable AppCompatTheme_actionModeShareDrawable 25 -+int styleable AppCompatTheme_actionModeSplitBackground 26 -+int styleable AppCompatTheme_actionModeStyle 27 -+int styleable AppCompatTheme_actionModeTheme 28 -+int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -+int styleable AppCompatTheme_actionOverflowButtonStyle 30 -+int styleable AppCompatTheme_actionOverflowMenuStyle 31 -+int styleable AppCompatTheme_activityChooserViewStyle 32 -+int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -+int styleable AppCompatTheme_alertDialogCenterButtons 34 -+int styleable AppCompatTheme_alertDialogStyle 35 -+int styleable AppCompatTheme_alertDialogTheme 36 -+int styleable AppCompatTheme_android_windowAnimationStyle 37 -+int styleable AppCompatTheme_android_windowIsFloating 38 -+int styleable AppCompatTheme_autoCompleteTextViewStyle 39 -+int styleable AppCompatTheme_borderlessButtonStyle 40 -+int styleable AppCompatTheme_buttonBarButtonStyle 41 -+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 -+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 -+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 -+int styleable AppCompatTheme_buttonBarStyle 45 -+int styleable AppCompatTheme_buttonStyle 46 -+int styleable AppCompatTheme_buttonStyleSmall 47 -+int styleable AppCompatTheme_checkboxStyle 48 -+int styleable AppCompatTheme_checkedTextViewStyle 49 -+int styleable AppCompatTheme_colorAccent 50 -+int styleable AppCompatTheme_colorBackgroundFloating 51 -+int styleable AppCompatTheme_colorButtonNormal 52 -+int styleable AppCompatTheme_colorControlActivated 53 -+int styleable AppCompatTheme_colorControlHighlight 54 -+int styleable AppCompatTheme_colorControlNormal 55 -+int styleable AppCompatTheme_colorError 56 -+int styleable AppCompatTheme_colorPrimary 57 -+int styleable AppCompatTheme_colorPrimaryDark 58 -+int styleable AppCompatTheme_colorSwitchThumbNormal 59 -+int styleable AppCompatTheme_controlBackground 60 -+int styleable AppCompatTheme_dialogCornerRadius 61 -+int styleable AppCompatTheme_dialogPreferredPadding 62 -+int styleable AppCompatTheme_dialogTheme 63 -+int styleable AppCompatTheme_dividerHorizontal 64 -+int styleable AppCompatTheme_dividerVertical 65 -+int styleable AppCompatTheme_dropDownListViewStyle 66 -+int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 -+int styleable AppCompatTheme_editTextBackground 68 -+int styleable AppCompatTheme_editTextColor 69 -+int styleable AppCompatTheme_editTextStyle 70 -+int styleable AppCompatTheme_homeAsUpIndicator 71 -+int styleable AppCompatTheme_imageButtonStyle 72 -+int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 -+int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 -+int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 -+int styleable AppCompatTheme_listDividerAlertDialog 76 -+int styleable AppCompatTheme_listMenuViewStyle 77 -+int styleable AppCompatTheme_listPopupWindowStyle 78 -+int styleable AppCompatTheme_listPreferredItemHeight 79 -+int styleable AppCompatTheme_listPreferredItemHeightLarge 80 -+int styleable AppCompatTheme_listPreferredItemHeightSmall 81 -+int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 -+int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 -+int styleable AppCompatTheme_listPreferredItemPaddingRight 84 -+int styleable AppCompatTheme_listPreferredItemPaddingStart 85 -+int styleable AppCompatTheme_panelBackground 86 -+int styleable AppCompatTheme_panelMenuListTheme 87 -+int styleable AppCompatTheme_panelMenuListWidth 88 -+int styleable AppCompatTheme_popupMenuStyle 89 -+int styleable AppCompatTheme_popupWindowStyle 90 -+int styleable AppCompatTheme_radioButtonStyle 91 -+int styleable AppCompatTheme_ratingBarStyle 92 -+int styleable AppCompatTheme_ratingBarStyleIndicator 93 -+int styleable AppCompatTheme_ratingBarStyleSmall 94 -+int styleable AppCompatTheme_searchViewStyle 95 -+int styleable AppCompatTheme_seekBarStyle 96 -+int styleable AppCompatTheme_selectableItemBackground 97 -+int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 -+int styleable AppCompatTheme_spinnerDropDownItemStyle 99 -+int styleable AppCompatTheme_spinnerStyle 100 -+int styleable AppCompatTheme_switchStyle 101 -+int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 -+int styleable AppCompatTheme_textAppearanceListItem 103 -+int styleable AppCompatTheme_textAppearanceListItemSecondary 104 -+int styleable AppCompatTheme_textAppearanceListItemSmall 105 -+int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 -+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 -+int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 -+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 -+int styleable AppCompatTheme_textColorAlertDialogListItem 110 -+int styleable AppCompatTheme_textColorSearchUrl 111 -+int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 -+int styleable AppCompatTheme_toolbarStyle 113 -+int styleable AppCompatTheme_tooltipForegroundColor 114 -+int styleable AppCompatTheme_tooltipFrameBackground 115 -+int styleable AppCompatTheme_viewInflaterClass 116 -+int styleable AppCompatTheme_windowActionBar 117 -+int styleable AppCompatTheme_windowActionBarOverlay 118 -+int styleable AppCompatTheme_windowActionModeOverlay 119 -+int styleable AppCompatTheme_windowFixedHeightMajor 120 -+int styleable AppCompatTheme_windowFixedHeightMinor 121 -+int styleable AppCompatTheme_windowFixedWidthMajor 122 -+int styleable AppCompatTheme_windowFixedWidthMinor 123 -+int styleable AppCompatTheme_windowMinWidthMajor 124 -+int styleable AppCompatTheme_windowMinWidthMinor 125 -+int styleable AppCompatTheme_windowNoTitle 126 -+int[] styleable Autofill_InlineSuggestion { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionChip 0 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionEndIconStyle 1 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionStartIconStyle 2 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionSubtitle 3 -+int styleable Autofill_InlineSuggestion_autofillInlineSuggestionTitle 4 -+int styleable Autofill_InlineSuggestion_isAutofillInlineSuggestionTheme 5 -+int[] styleable ButtonBarLayout { 0x0 } -+int styleable ButtonBarLayout_allowStacking 0 -+int[] styleable Capability { 0x0, 0x0 } -+int styleable Capability_queryPatterns 0 -+int styleable Capability_shortcutMatchRequired 1 -+int[] styleable CheckedTextView { 0x1010108, 0x0, 0x0, 0x0 } -+int styleable CheckedTextView_android_checkMark 0 -+int styleable CheckedTextView_checkMarkCompat 1 -+int styleable CheckedTextView_checkMarkTint 2 -+int styleable CheckedTextView_checkMarkTintMode 3 -+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } -+int styleable ColorStateListItem_alpha 0 -+int styleable ColorStateListItem_android_alpha 1 -+int styleable ColorStateListItem_android_color 2 -+int styleable ColorStateListItem_android_lStar 3 -+int styleable ColorStateListItem_lStar 4 -+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } -+int styleable CompoundButton_android_button 0 -+int styleable CompoundButton_buttonCompat 1 -+int styleable CompoundButton_buttonTint 2 -+int styleable CompoundButton_buttonTintMode 3 -+int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable DrawerArrowToggle_arrowHeadLength 0 -+int styleable DrawerArrowToggle_arrowShaftLength 1 -+int styleable DrawerArrowToggle_barLength 2 -+int styleable DrawerArrowToggle_color 3 -+int styleable DrawerArrowToggle_drawableSize 4 -+int styleable DrawerArrowToggle_gapBetweenBars 5 -+int styleable DrawerArrowToggle_spinBars 6 -+int styleable DrawerArrowToggle_thickness 7 -+int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable FontFamily_fontProviderAuthority 0 -+int styleable FontFamily_fontProviderCerts 1 -+int styleable FontFamily_fontProviderFetchStrategy 2 -+int styleable FontFamily_fontProviderFetchTimeout 3 -+int styleable FontFamily_fontProviderPackage 4 -+int styleable FontFamily_fontProviderQuery 5 -+int styleable FontFamily_fontProviderSystemFontFamily 6 -+int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable FontFamilyFont_android_font 0 -+int styleable FontFamilyFont_android_fontStyle 1 -+int styleable FontFamilyFont_android_fontVariationSettings 2 -+int styleable FontFamilyFont_android_fontWeight 3 -+int styleable FontFamilyFont_android_ttcIndex 4 -+int styleable FontFamilyFont_font 5 -+int styleable FontFamilyFont_fontStyle 6 -+int styleable FontFamilyFont_fontVariationSettings 7 -+int styleable FontFamilyFont_fontWeight 8 -+int styleable FontFamilyFont_ttcIndex 9 -+int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } -+int styleable Fragment_android_id 0 -+int styleable Fragment_android_name 1 -+int styleable Fragment_android_tag 2 -+int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } -+int styleable FragmentContainerView_android_name 0 -+int styleable FragmentContainerView_android_tag 1 -+int[] styleable GenericDraweeHierarchy { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable GenericDraweeHierarchy_actualImageScaleType 0 -+int styleable GenericDraweeHierarchy_backgroundImage 1 -+int styleable GenericDraweeHierarchy_fadeDuration 2 -+int styleable GenericDraweeHierarchy_failureImage 3 -+int styleable GenericDraweeHierarchy_failureImageScaleType 4 -+int styleable GenericDraweeHierarchy_overlayImage 5 -+int styleable GenericDraweeHierarchy_placeholderImage 6 -+int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 -+int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 -+int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 -+int styleable GenericDraweeHierarchy_progressBarImage 10 -+int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 -+int styleable GenericDraweeHierarchy_retryImage 12 -+int styleable GenericDraweeHierarchy_retryImageScaleType 13 -+int styleable GenericDraweeHierarchy_roundAsCircle 14 -+int styleable GenericDraweeHierarchy_roundBottomEnd 15 -+int styleable GenericDraweeHierarchy_roundBottomLeft 16 -+int styleable GenericDraweeHierarchy_roundBottomRight 17 -+int styleable GenericDraweeHierarchy_roundBottomStart 18 -+int styleable GenericDraweeHierarchy_roundTopEnd 19 -+int styleable GenericDraweeHierarchy_roundTopLeft 20 -+int styleable GenericDraweeHierarchy_roundTopRight 21 -+int styleable GenericDraweeHierarchy_roundTopStart 22 -+int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 -+int styleable GenericDraweeHierarchy_roundedCornerRadius 24 -+int styleable GenericDraweeHierarchy_roundingBorderColor 25 -+int styleable GenericDraweeHierarchy_roundingBorderPadding 26 -+int styleable GenericDraweeHierarchy_roundingBorderWidth 27 -+int styleable GenericDraweeHierarchy_viewAspectRatio 28 -+int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } -+int styleable GradientColor_android_centerColor 0 -+int styleable GradientColor_android_centerX 1 -+int styleable GradientColor_android_centerY 2 -+int styleable GradientColor_android_endColor 3 -+int styleable GradientColor_android_endX 4 -+int styleable GradientColor_android_endY 5 -+int styleable GradientColor_android_gradientRadius 6 -+int styleable GradientColor_android_startColor 7 -+int styleable GradientColor_android_startX 8 -+int styleable GradientColor_android_startY 9 -+int styleable GradientColor_android_tileMode 10 -+int styleable GradientColor_android_type 11 -+int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } -+int styleable GradientColorItem_android_color 0 -+int styleable GradientColorItem_android_offset 1 -+int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } -+int styleable LinearLayoutCompat_android_baselineAligned 0 -+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 -+int styleable LinearLayoutCompat_android_gravity 2 -+int styleable LinearLayoutCompat_android_orientation 3 -+int styleable LinearLayoutCompat_android_weightSum 4 -+int styleable LinearLayoutCompat_divider 5 -+int styleable LinearLayoutCompat_dividerPadding 6 -+int styleable LinearLayoutCompat_measureWithLargestChild 7 -+int styleable LinearLayoutCompat_showDividers 8 -+int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } -+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -+int styleable LinearLayoutCompat_Layout_android_layout_height 1 -+int styleable LinearLayoutCompat_Layout_android_layout_weight 2 -+int styleable LinearLayoutCompat_Layout_android_layout_width 3 -+int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } -+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -+int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -+int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } -+int styleable MenuGroup_android_checkableBehavior 0 -+int styleable MenuGroup_android_enabled 1 -+int styleable MenuGroup_android_id 2 -+int styleable MenuGroup_android_menuCategory 3 -+int styleable MenuGroup_android_orderInCategory 4 -+int styleable MenuGroup_android_visible 5 -+int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable MenuItem_actionLayout 0 -+int styleable MenuItem_actionProviderClass 1 -+int styleable MenuItem_actionViewClass 2 -+int styleable MenuItem_alphabeticModifiers 3 -+int styleable MenuItem_android_alphabeticShortcut 4 -+int styleable MenuItem_android_checkable 5 -+int styleable MenuItem_android_checked 6 -+int styleable MenuItem_android_enabled 7 -+int styleable MenuItem_android_icon 8 -+int styleable MenuItem_android_id 9 -+int styleable MenuItem_android_menuCategory 10 -+int styleable MenuItem_android_numericShortcut 11 -+int styleable MenuItem_android_onClick 12 -+int styleable MenuItem_android_orderInCategory 13 -+int styleable MenuItem_android_title 14 -+int styleable MenuItem_android_titleCondensed 15 -+int styleable MenuItem_android_visible 16 -+int styleable MenuItem_contentDescription 17 -+int styleable MenuItem_iconTint 18 -+int styleable MenuItem_iconTintMode 19 -+int styleable MenuItem_numericModifiers 20 -+int styleable MenuItem_showAsAction 21 -+int styleable MenuItem_tooltipText 22 -+int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } -+int styleable MenuView_android_headerBackground 0 -+int styleable MenuView_android_horizontalDivider 1 -+int styleable MenuView_android_itemBackground 2 -+int styleable MenuView_android_itemIconDisabledAlpha 3 -+int styleable MenuView_android_itemTextAppearance 4 -+int styleable MenuView_android_verticalDivider 5 -+int styleable MenuView_android_windowAnimationStyle 6 -+int styleable MenuView_preserveIconSpacing 7 -+int styleable MenuView_subMenuArrow 8 -+int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } -+int styleable PopupWindow_android_popupAnimationStyle 0 -+int styleable PopupWindow_android_popupBackground 1 -+int styleable PopupWindow_overlapAnchor 2 -+int[] styleable PopupWindowBackgroundState { 0x0 } -+int styleable PopupWindowBackgroundState_state_above_anchor 0 -+int[] styleable RecycleListView { 0x0, 0x0 } -+int styleable RecycleListView_paddingBottomNoButtons 0 -+int styleable RecycleListView_paddingTopNoTitle 1 -+int[] styleable ScrollBar { 0x0, 0x0, 0x0, 0x0 } -+int styleable ScrollBar_sb_handlerColor 0 -+int styleable ScrollBar_sb_horizontal 1 -+int styleable ScrollBar_sb_indicatorColor 2 -+int styleable ScrollBar_sb_indicatorTextColor 3 -+int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SearchView_android_focusable 0 -+int styleable SearchView_android_imeOptions 1 -+int styleable SearchView_android_inputType 2 -+int styleable SearchView_android_maxWidth 3 -+int styleable SearchView_closeIcon 4 -+int styleable SearchView_commitIcon 5 -+int styleable SearchView_defaultQueryHint 6 -+int styleable SearchView_goIcon 7 -+int styleable SearchView_iconifiedByDefault 8 -+int styleable SearchView_layout 9 -+int styleable SearchView_queryBackground 10 -+int styleable SearchView_queryHint 11 -+int styleable SearchView_searchHintIcon 12 -+int styleable SearchView_searchIcon 13 -+int styleable SearchView_submitBackground 14 -+int styleable SearchView_suggestionRowLayout 15 -+int styleable SearchView_voiceIcon 16 -+int[] styleable SimpleDraweeView { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SimpleDraweeView_actualImageResource 0 -+int styleable SimpleDraweeView_actualImageUri 1 -+int styleable SimpleDraweeView_backgroundImage 2 -+int styleable SimpleDraweeView_fadeDuration 3 -+int styleable SimpleDraweeView_failureImage 4 -+int styleable SimpleDraweeView_failureImageScaleType 5 -+int styleable SimpleDraweeView_overlayImage 6 -+int styleable SimpleDraweeView_placeholderImage 7 -+int styleable SimpleDraweeView_placeholderImageScaleType 8 -+int styleable SimpleDraweeView_pressedStateOverlayImage 9 -+int styleable SimpleDraweeView_progressBarAutoRotateInterval 10 -+int styleable SimpleDraweeView_progressBarImage 11 -+int styleable SimpleDraweeView_progressBarImageScaleType 12 -+int styleable SimpleDraweeView_retryImage 13 -+int styleable SimpleDraweeView_retryImageScaleType 14 -+int styleable SimpleDraweeView_roundAsCircle 15 -+int styleable SimpleDraweeView_roundBottomEnd 16 -+int styleable SimpleDraweeView_roundBottomLeft 17 -+int styleable SimpleDraweeView_roundBottomRight 18 -+int styleable SimpleDraweeView_roundBottomStart 19 -+int styleable SimpleDraweeView_roundTopEnd 20 -+int styleable SimpleDraweeView_roundTopLeft 21 -+int styleable SimpleDraweeView_roundTopRight 22 -+int styleable SimpleDraweeView_roundTopStart 23 -+int styleable SimpleDraweeView_roundWithOverlayColor 24 -+int styleable SimpleDraweeView_roundedCornerRadius 25 -+int styleable SimpleDraweeView_roundingBorderColor 26 -+int styleable SimpleDraweeView_roundingBorderPadding 27 -+int styleable SimpleDraweeView_roundingBorderWidth 28 -+int styleable SimpleDraweeView_viewAspectRatio 29 -+int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } -+int styleable Spinner_android_dropDownWidth 0 -+int styleable Spinner_android_entries 1 -+int styleable Spinner_android_popupBackground 2 -+int styleable Spinner_android_prompt 3 -+int styleable Spinner_popupTheme 4 -+int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable StateListDrawable_android_constantSize 0 -+int styleable StateListDrawable_android_dither 1 -+int styleable StateListDrawable_android_enterFadeDuration 2 -+int styleable StateListDrawable_android_exitFadeDuration 3 -+int styleable StateListDrawable_android_variablePadding 4 -+int styleable StateListDrawable_android_visible 5 -+int[] styleable StateListDrawableItem { 0x1010199 } -+int styleable StateListDrawableItem_android_drawable 0 -+int[] styleable SwipeRefreshLayout { 0x0 } -+int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 -+int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable SwitchCompat_android_textOff 0 -+int styleable SwitchCompat_android_textOn 1 -+int styleable SwitchCompat_android_thumb 2 -+int styleable SwitchCompat_showText 3 -+int styleable SwitchCompat_splitTrack 4 -+int styleable SwitchCompat_switchMinWidth 5 -+int styleable SwitchCompat_switchPadding 6 -+int styleable SwitchCompat_switchTextAppearance 7 -+int styleable SwitchCompat_thumbTextPadding 8 -+int styleable SwitchCompat_thumbTint 9 -+int styleable SwitchCompat_thumbTintMode 10 -+int styleable SwitchCompat_track 11 -+int styleable SwitchCompat_trackTint 12 -+int styleable SwitchCompat_trackTintMode 13 -+int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } -+int styleable TextAppearance_android_fontFamily 0 -+int styleable TextAppearance_android_shadowColor 1 -+int styleable TextAppearance_android_shadowDx 2 -+int styleable TextAppearance_android_shadowDy 3 -+int styleable TextAppearance_android_shadowRadius 4 -+int styleable TextAppearance_android_textColor 5 -+int styleable TextAppearance_android_textColorHint 6 -+int styleable TextAppearance_android_textColorLink 7 -+int styleable TextAppearance_android_textFontWeight 8 -+int styleable TextAppearance_android_textSize 9 -+int styleable TextAppearance_android_textStyle 10 -+int styleable TextAppearance_android_typeface 11 -+int styleable TextAppearance_fontFamily 12 -+int styleable TextAppearance_fontVariationSettings 13 -+int styleable TextAppearance_textAllCaps 14 -+int styleable TextAppearance_textLocale 15 -+int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable Toolbar_android_gravity 0 -+int styleable Toolbar_android_minHeight 1 -+int styleable Toolbar_buttonGravity 2 -+int styleable Toolbar_collapseContentDescription 3 -+int styleable Toolbar_collapseIcon 4 -+int styleable Toolbar_contentInsetEnd 5 -+int styleable Toolbar_contentInsetEndWithActions 6 -+int styleable Toolbar_contentInsetLeft 7 -+int styleable Toolbar_contentInsetRight 8 -+int styleable Toolbar_contentInsetStart 9 -+int styleable Toolbar_contentInsetStartWithNavigation 10 -+int styleable Toolbar_logo 11 -+int styleable Toolbar_logoDescription 12 -+int styleable Toolbar_maxButtonHeight 13 -+int styleable Toolbar_menu 14 -+int styleable Toolbar_navigationContentDescription 15 -+int styleable Toolbar_navigationIcon 16 -+int styleable Toolbar_popupTheme 17 -+int styleable Toolbar_subtitle 18 -+int styleable Toolbar_subtitleTextAppearance 19 -+int styleable Toolbar_subtitleTextColor 20 -+int styleable Toolbar_title 21 -+int styleable Toolbar_titleMargin 22 -+int styleable Toolbar_titleMarginBottom 23 -+int styleable Toolbar_titleMarginEnd 24 -+int styleable Toolbar_titleMarginStart 25 -+int styleable Toolbar_titleMarginTop 26 -+int styleable Toolbar_titleMargins 27 -+int styleable Toolbar_titleTextAppearance 28 -+int styleable Toolbar_titleTextColor 29 -+int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } -+int styleable View_android_focusable 0 -+int styleable View_android_theme 1 -+int styleable View_paddingEnd 2 -+int styleable View_paddingStart 3 -+int styleable View_theme 4 -+int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } -+int styleable ViewBackgroundHelper_android_background 0 -+int styleable ViewBackgroundHelper_backgroundTint 1 -+int styleable ViewBackgroundHelper_backgroundTintMode 2 -+int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } -+int styleable ViewStubCompat_android_id 0 -+int styleable ViewStubCompat_android_inflatedId 1 -+int styleable ViewStubCompat_android_layout 2 -+int xml rn_dev_preferences 0x0 -diff --git a/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -new file mode 100644 -index 0000000..579c2b3 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties -@@ -0,0 +1 @@ -+#Tue Jun 24 13:45:25 CEST 2025 -diff --git a/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-pdf/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml -new file mode 100644 -index 0000000..3a46cbd ---- /dev/null -+++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -new file mode 100644 -index 0000000..a6130ec ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -new file mode 100644 -index 0000000..2a13610 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-pdf/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-pdf/android/build/intermediates/incremental/packageDebugAssets/merger.xml -new file mode 100644 -index 0000000..7a5c896 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/intermediates/incremental/packageDebugAssets/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.class -new file mode 100644 -index 0000000..830e7bd -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerDelegate.class differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.class -new file mode 100644 -index 0000000..3164688 -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNPDFPdfViewManagerInterface.class differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/BuildConfig.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/BuildConfig.class -new file mode 100644 -index 0000000..0f553e5 -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/BuildConfig.class differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfManager.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfManager.class -new file mode 100644 -index 0000000..8405645 -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfManager.class differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView$1.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView$1.class -new file mode 100644 -index 0000000..a262bf4 -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView$1.class differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView.class -new file mode 100644 -index 0000000..f98f5f8 -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/PdfView.class differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/RNPDFPackage.class b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/RNPDFPackage.class -new file mode 100644 -index 0000000..b9f32ad -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/wonday/pdf/RNPDFPackage.class differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-pdf/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-pdf/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-pdf/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-pdf/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt -new file mode 100644 -index 0000000..d3b4f64 ---- /dev/null -+++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-pdf/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml -new file mode 100644 -index 0000000..f25cf52 ---- /dev/null -+++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-pdf/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json -new file mode 100644 -index 0000000..0637a08 ---- /dev/null -+++ b/node_modules/react-native-pdf/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-pdf/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-pdf/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-pdf/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-pdf/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-pdf/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar -new file mode 100644 -index 0000000..af8fb17 -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ -diff --git a/node_modules/react-native-pdf/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-pdf/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -new file mode 100644 -index 0000000..305af70 ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt -@@ -0,0 +1,1488 @@ -+org.wonday.pdf -+anim abc_fade_in -+anim abc_fade_out -+anim abc_grow_fade_in_from_bottom -+anim abc_popup_enter -+anim abc_popup_exit -+anim abc_shrink_fade_out_from_bottom -+anim abc_slide_in_bottom -+anim abc_slide_in_top -+anim abc_slide_out_bottom -+anim abc_slide_out_top -+anim abc_tooltip_enter -+anim abc_tooltip_exit -+anim btn_checkbox_to_checked_box_inner_merged_animation -+anim btn_checkbox_to_checked_box_outer_merged_animation -+anim btn_checkbox_to_checked_icon_null_animation -+anim btn_checkbox_to_unchecked_box_inner_merged_animation -+anim btn_checkbox_to_unchecked_check_path_merged_animation -+anim btn_checkbox_to_unchecked_icon_null_animation -+anim btn_radio_to_off_mtrl_dot_group_animation -+anim btn_radio_to_off_mtrl_ring_outer_animation -+anim btn_radio_to_off_mtrl_ring_outer_path_animation -+anim btn_radio_to_on_mtrl_dot_group_animation -+anim btn_radio_to_on_mtrl_ring_outer_animation -+anim btn_radio_to_on_mtrl_ring_outer_path_animation -+anim catalyst_fade_in -+anim catalyst_fade_out -+anim catalyst_push_up_in -+anim catalyst_push_up_out -+anim catalyst_slide_down -+anim catalyst_slide_up -+anim fragment_fast_out_extra_slow_in -+animator fragment_close_enter -+animator fragment_close_exit -+animator fragment_fade_enter -+animator fragment_fade_exit -+animator fragment_open_enter -+animator fragment_open_exit -+attr actionBarDivider -+attr actionBarItemBackground -+attr actionBarPopupTheme -+attr actionBarSize -+attr actionBarSplitStyle -+attr actionBarStyle -+attr actionBarTabBarStyle -+attr actionBarTabStyle -+attr actionBarTabTextStyle -+attr actionBarTheme -+attr actionBarWidgetTheme -+attr actionButtonStyle -+attr actionDropDownStyle -+attr actionLayout -+attr actionMenuTextAppearance -+attr actionMenuTextColor -+attr actionModeBackground -+attr actionModeCloseButtonStyle -+attr actionModeCloseContentDescription -+attr actionModeCloseDrawable -+attr actionModeCopyDrawable -+attr actionModeCutDrawable -+attr actionModeFindDrawable -+attr actionModePasteDrawable -+attr actionModePopupWindowStyle -+attr actionModeSelectAllDrawable -+attr actionModeShareDrawable -+attr actionModeSplitBackground -+attr actionModeStyle -+attr actionModeTheme -+attr actionModeWebSearchDrawable -+attr actionOverflowButtonStyle -+attr actionOverflowMenuStyle -+attr actionProviderClass -+attr actionViewClass -+attr activityChooserViewStyle -+attr actualImageResource -+attr actualImageScaleType -+attr actualImageUri -+attr alertDialogButtonGroupStyle -+attr alertDialogCenterButtons -+attr alertDialogStyle -+attr alertDialogTheme -+attr allowStacking -+attr alpha -+attr alphabeticModifiers -+attr arrowHeadLength -+attr arrowShaftLength -+attr autoCompleteTextViewStyle -+attr autoSizeMaxTextSize -+attr autoSizeMinTextSize -+attr autoSizePresetSizes -+attr autoSizeStepGranularity -+attr autoSizeTextType -+attr autofillInlineSuggestionChip -+attr autofillInlineSuggestionEndIconStyle -+attr autofillInlineSuggestionStartIconStyle -+attr autofillInlineSuggestionSubtitle -+attr autofillInlineSuggestionTitle -+attr background -+attr backgroundImage -+attr backgroundSplit -+attr backgroundStacked -+attr backgroundTint -+attr backgroundTintMode -+attr barLength -+attr borderlessButtonStyle -+attr buttonBarButtonStyle -+attr buttonBarNegativeButtonStyle -+attr buttonBarNeutralButtonStyle -+attr buttonBarPositiveButtonStyle -+attr buttonBarStyle -+attr buttonCompat -+attr buttonGravity -+attr buttonIconDimen -+attr buttonPanelSideLayout -+attr buttonStyle -+attr buttonStyleSmall -+attr buttonTint -+attr buttonTintMode -+attr checkMarkCompat -+attr checkMarkTint -+attr checkMarkTintMode -+attr checkboxStyle -+attr checkedTextViewStyle -+attr closeIcon -+attr closeItemLayout -+attr collapseContentDescription -+attr collapseIcon -+attr color -+attr colorAccent -+attr colorBackgroundFloating -+attr colorButtonNormal -+attr colorControlActivated -+attr colorControlHighlight -+attr colorControlNormal -+attr colorError -+attr colorPrimary -+attr colorPrimaryDark -+attr colorSwitchThumbNormal -+attr commitIcon -+attr contentDescription -+attr contentInsetEnd -+attr contentInsetEndWithActions -+attr contentInsetLeft -+attr contentInsetRight -+attr contentInsetStart -+attr contentInsetStartWithNavigation -+attr controlBackground -+attr customNavigationLayout -+attr defaultQueryHint -+attr dialogCornerRadius -+attr dialogPreferredPadding -+attr dialogTheme -+attr displayOptions -+attr divider -+attr dividerHorizontal -+attr dividerPadding -+attr dividerVertical -+attr drawableBottomCompat -+attr drawableEndCompat -+attr drawableLeftCompat -+attr drawableRightCompat -+attr drawableSize -+attr drawableStartCompat -+attr drawableTint -+attr drawableTintMode -+attr drawableTopCompat -+attr drawerArrowStyle -+attr dropDownListViewStyle -+attr dropdownListPreferredItemHeight -+attr editTextBackground -+attr editTextColor -+attr editTextStyle -+attr elevation -+attr emojiCompatEnabled -+attr expandActivityOverflowButtonDrawable -+attr fadeDuration -+attr failureImage -+attr failureImageScaleType -+attr firstBaselineToTopHeight -+attr font -+attr fontFamily -+attr fontProviderAuthority -+attr fontProviderCerts -+attr fontProviderFetchStrategy -+attr fontProviderFetchTimeout -+attr fontProviderPackage -+attr fontProviderQuery -+attr fontProviderSystemFontFamily -+attr fontStyle -+attr fontVariationSettings -+attr fontWeight -+attr gapBetweenBars -+attr goIcon -+attr height -+attr hideOnContentScroll -+attr homeAsUpIndicator -+attr homeLayout -+attr icon -+attr iconTint -+attr iconTintMode -+attr iconifiedByDefault -+attr imageButtonStyle -+attr indeterminateProgressStyle -+attr initialActivityCount -+attr isAutofillInlineSuggestionTheme -+attr isLightTheme -+attr itemPadding -+attr lStar -+attr lastBaselineToBottomHeight -+attr layout -+attr lineHeight -+attr listChoiceBackgroundIndicator -+attr listChoiceIndicatorMultipleAnimated -+attr listChoiceIndicatorSingleAnimated -+attr listDividerAlertDialog -+attr listItemLayout -+attr listLayout -+attr listMenuViewStyle -+attr listPopupWindowStyle -+attr listPreferredItemHeight -+attr listPreferredItemHeightLarge -+attr listPreferredItemHeightSmall -+attr listPreferredItemPaddingEnd -+attr listPreferredItemPaddingLeft -+attr listPreferredItemPaddingRight -+attr listPreferredItemPaddingStart -+attr logo -+attr logoDescription -+attr maxButtonHeight -+attr measureWithLargestChild -+attr menu -+attr multiChoiceItemLayout -+attr navigationContentDescription -+attr navigationIcon -+attr navigationMode -+attr nestedScrollViewStyle -+attr numericModifiers -+attr overlapAnchor -+attr overlayImage -+attr paddingBottomNoButtons -+attr paddingEnd -+attr paddingStart -+attr paddingTopNoTitle -+attr panelBackground -+attr panelMenuListTheme -+attr panelMenuListWidth -+attr placeholderImage -+attr placeholderImageScaleType -+attr popupMenuStyle -+attr popupTheme -+attr popupWindowStyle -+attr preserveIconSpacing -+attr pressedStateOverlayImage -+attr progressBarAutoRotateInterval -+attr progressBarImage -+attr progressBarImageScaleType -+attr progressBarPadding -+attr progressBarStyle -+attr queryBackground -+attr queryHint -+attr queryPatterns -+attr radioButtonStyle -+attr ratingBarStyle -+attr ratingBarStyleIndicator -+attr ratingBarStyleSmall -+attr retryImage -+attr retryImageScaleType -+attr roundAsCircle -+attr roundBottomEnd -+attr roundBottomLeft -+attr roundBottomRight -+attr roundBottomStart -+attr roundTopEnd -+attr roundTopLeft -+attr roundTopRight -+attr roundTopStart -+attr roundWithOverlayColor -+attr roundedCornerRadius -+attr roundingBorderColor -+attr roundingBorderPadding -+attr roundingBorderWidth -+attr sb_handlerColor -+attr sb_horizontal -+attr sb_indicatorColor -+attr sb_indicatorTextColor -+attr searchHintIcon -+attr searchIcon -+attr searchViewStyle -+attr seekBarStyle -+attr selectableItemBackground -+attr selectableItemBackgroundBorderless -+attr shortcutMatchRequired -+attr showAsAction -+attr showDividers -+attr showText -+attr showTitle -+attr singleChoiceItemLayout -+attr spinBars -+attr spinnerDropDownItemStyle -+attr spinnerStyle -+attr splitTrack -+attr srcCompat -+attr state_above_anchor -+attr subMenuArrow -+attr submitBackground -+attr subtitle -+attr subtitleTextAppearance -+attr subtitleTextColor -+attr subtitleTextStyle -+attr suggestionRowLayout -+attr swipeRefreshLayoutProgressSpinnerBackgroundColor -+attr switchMinWidth -+attr switchPadding -+attr switchStyle -+attr switchTextAppearance -+attr textAllCaps -+attr textAppearanceLargePopupMenu -+attr textAppearanceListItem -+attr textAppearanceListItemSecondary -+attr textAppearanceListItemSmall -+attr textAppearancePopupMenuHeader -+attr textAppearanceSearchResultSubtitle -+attr textAppearanceSearchResultTitle -+attr textAppearanceSmallPopupMenu -+attr textColorAlertDialogListItem -+attr textColorSearchUrl -+attr textLocale -+attr theme -+attr thickness -+attr thumbTextPadding -+attr thumbTint -+attr thumbTintMode -+attr tickMark -+attr tickMarkTint -+attr tickMarkTintMode -+attr tint -+attr tintMode -+attr title -+attr titleMargin -+attr titleMarginBottom -+attr titleMarginEnd -+attr titleMarginStart -+attr titleMarginTop -+attr titleMargins -+attr titleTextAppearance -+attr titleTextColor -+attr titleTextStyle -+attr toolbarNavigationButtonStyle -+attr toolbarStyle -+attr tooltipForegroundColor -+attr tooltipFrameBackground -+attr tooltipText -+attr track -+attr trackTint -+attr trackTintMode -+attr ttcIndex -+attr viewAspectRatio -+attr viewInflaterClass -+attr voiceIcon -+attr windowActionBar -+attr windowActionBarOverlay -+attr windowActionModeOverlay -+attr windowFixedHeightMajor -+attr windowFixedHeightMinor -+attr windowFixedWidthMajor -+attr windowFixedWidthMinor -+attr windowMinWidthMajor -+attr windowMinWidthMinor -+attr windowNoTitle -+bool abc_action_bar_embed_tabs -+bool abc_config_actionMenuItemAllCaps -+color abc_background_cache_hint_selector_material_dark -+color abc_background_cache_hint_selector_material_light -+color abc_btn_colored_borderless_text_material -+color abc_btn_colored_text_material -+color abc_color_highlight_material -+color abc_decor_view_status_guard -+color abc_decor_view_status_guard_light -+color abc_hint_foreground_material_dark -+color abc_hint_foreground_material_light -+color abc_primary_text_disable_only_material_dark -+color abc_primary_text_disable_only_material_light -+color abc_primary_text_material_dark -+color abc_primary_text_material_light -+color abc_search_url_text -+color abc_search_url_text_normal -+color abc_search_url_text_pressed -+color abc_search_url_text_selected -+color abc_secondary_text_material_dark -+color abc_secondary_text_material_light -+color abc_tint_btn_checkable -+color abc_tint_default -+color abc_tint_edittext -+color abc_tint_seek_thumb -+color abc_tint_spinner -+color abc_tint_switch_track -+color accent_material_dark -+color accent_material_light -+color androidx_core_ripple_material_light -+color androidx_core_secondary_text_default_material_light -+color background_floating_material_dark -+color background_floating_material_light -+color background_material_dark -+color background_material_light -+color bright_foreground_disabled_material_dark -+color bright_foreground_disabled_material_light -+color bright_foreground_inverse_material_dark -+color bright_foreground_inverse_material_light -+color bright_foreground_material_dark -+color bright_foreground_material_light -+color button_material_dark -+color button_material_light -+color call_notification_answer_color -+color call_notification_decline_color -+color catalyst_logbox_background -+color catalyst_redbox_background -+color dim_foreground_disabled_material_dark -+color dim_foreground_disabled_material_light -+color dim_foreground_material_dark -+color dim_foreground_material_light -+color error_color_material_dark -+color error_color_material_light -+color foreground_material_dark -+color foreground_material_light -+color highlighted_text_material_dark -+color highlighted_text_material_light -+color material_blue_grey_800 -+color material_blue_grey_900 -+color material_blue_grey_950 -+color material_deep_teal_200 -+color material_deep_teal_500 -+color material_grey_100 -+color material_grey_300 -+color material_grey_50 -+color material_grey_600 -+color material_grey_800 -+color material_grey_850 -+color material_grey_900 -+color notification_action_color_filter -+color notification_icon_bg_color -+color primary_dark_material_dark -+color primary_dark_material_light -+color primary_material_dark -+color primary_material_light -+color primary_text_default_material_dark -+color primary_text_default_material_light -+color primary_text_disabled_material_dark -+color primary_text_disabled_material_light -+color ripple_material_dark -+color ripple_material_light -+color secondary_text_default_material_dark -+color secondary_text_default_material_light -+color secondary_text_disabled_material_dark -+color secondary_text_disabled_material_light -+color switch_thumb_disabled_material_dark -+color switch_thumb_disabled_material_light -+color switch_thumb_material_dark -+color switch_thumb_material_light -+color switch_thumb_normal_material_dark -+color switch_thumb_normal_material_light -+color tooltip_background_dark -+color tooltip_background_light -+dimen abc_action_bar_content_inset_material -+dimen abc_action_bar_content_inset_with_nav -+dimen abc_action_bar_default_height_material -+dimen abc_action_bar_default_padding_end_material -+dimen abc_action_bar_default_padding_start_material -+dimen abc_action_bar_elevation_material -+dimen abc_action_bar_icon_vertical_padding_material -+dimen abc_action_bar_overflow_padding_end_material -+dimen abc_action_bar_overflow_padding_start_material -+dimen abc_action_bar_stacked_max_height -+dimen abc_action_bar_stacked_tab_max_width -+dimen abc_action_bar_subtitle_bottom_margin_material -+dimen abc_action_bar_subtitle_top_margin_material -+dimen abc_action_button_min_height_material -+dimen abc_action_button_min_width_material -+dimen abc_action_button_min_width_overflow_material -+dimen abc_alert_dialog_button_bar_height -+dimen abc_alert_dialog_button_dimen -+dimen abc_button_inset_horizontal_material -+dimen abc_button_inset_vertical_material -+dimen abc_button_padding_horizontal_material -+dimen abc_button_padding_vertical_material -+dimen abc_cascading_menus_min_smallest_width -+dimen abc_config_prefDialogWidth -+dimen abc_control_corner_material -+dimen abc_control_inset_material -+dimen abc_control_padding_material -+dimen abc_dialog_corner_radius_material -+dimen abc_dialog_fixed_height_major -+dimen abc_dialog_fixed_height_minor -+dimen abc_dialog_fixed_width_major -+dimen abc_dialog_fixed_width_minor -+dimen abc_dialog_list_padding_bottom_no_buttons -+dimen abc_dialog_list_padding_top_no_title -+dimen abc_dialog_min_width_major -+dimen abc_dialog_min_width_minor -+dimen abc_dialog_padding_material -+dimen abc_dialog_padding_top_material -+dimen abc_dialog_title_divider_material -+dimen abc_disabled_alpha_material_dark -+dimen abc_disabled_alpha_material_light -+dimen abc_dropdownitem_icon_width -+dimen abc_dropdownitem_text_padding_left -+dimen abc_dropdownitem_text_padding_right -+dimen abc_edit_text_inset_bottom_material -+dimen abc_edit_text_inset_horizontal_material -+dimen abc_edit_text_inset_top_material -+dimen abc_floating_window_z -+dimen abc_list_item_height_large_material -+dimen abc_list_item_height_material -+dimen abc_list_item_height_small_material -+dimen abc_list_item_padding_horizontal_material -+dimen abc_panel_menu_list_width -+dimen abc_progress_bar_height_material -+dimen abc_search_view_preferred_height -+dimen abc_search_view_preferred_width -+dimen abc_seekbar_track_background_height_material -+dimen abc_seekbar_track_progress_height_material -+dimen abc_select_dialog_padding_start_material -+dimen abc_star_big -+dimen abc_star_medium -+dimen abc_star_small -+dimen abc_switch_padding -+dimen abc_text_size_body_1_material -+dimen abc_text_size_body_2_material -+dimen abc_text_size_button_material -+dimen abc_text_size_caption_material -+dimen abc_text_size_display_1_material -+dimen abc_text_size_display_2_material -+dimen abc_text_size_display_3_material -+dimen abc_text_size_display_4_material -+dimen abc_text_size_headline_material -+dimen abc_text_size_large_material -+dimen abc_text_size_medium_material -+dimen abc_text_size_menu_header_material -+dimen abc_text_size_menu_material -+dimen abc_text_size_small_material -+dimen abc_text_size_subhead_material -+dimen abc_text_size_subtitle_material_toolbar -+dimen abc_text_size_title_material -+dimen abc_text_size_title_material_toolbar -+dimen autofill_inline_suggestion_icon_size -+dimen compat_button_inset_horizontal_material -+dimen compat_button_inset_vertical_material -+dimen compat_button_padding_horizontal_material -+dimen compat_button_padding_vertical_material -+dimen compat_control_corner_material -+dimen compat_notification_large_icon_max_height -+dimen compat_notification_large_icon_max_width -+dimen disabled_alpha_material_dark -+dimen disabled_alpha_material_light -+dimen highlight_alpha_material_colored -+dimen highlight_alpha_material_dark -+dimen highlight_alpha_material_light -+dimen hint_alpha_material_dark -+dimen hint_alpha_material_light -+dimen hint_pressed_alpha_material_dark -+dimen hint_pressed_alpha_material_light -+dimen notification_action_icon_size -+dimen notification_action_text_size -+dimen notification_big_circle_margin -+dimen notification_content_margin_start -+dimen notification_large_icon_height -+dimen notification_large_icon_width -+dimen notification_main_column_padding_top -+dimen notification_media_narrow_margin -+dimen notification_right_icon_size -+dimen notification_right_side_padding_top -+dimen notification_small_icon_background_padding -+dimen notification_small_icon_size_as_large -+dimen notification_subtext_size -+dimen notification_top_pad -+dimen notification_top_pad_large_text -+dimen tooltip_corner_radius -+dimen tooltip_horizontal_padding -+dimen tooltip_margin -+dimen tooltip_precise_anchor_extra_offset -+dimen tooltip_precise_anchor_threshold -+dimen tooltip_vertical_padding -+dimen tooltip_y_offset_non_touch -+dimen tooltip_y_offset_touch -+drawable abc_ab_share_pack_mtrl_alpha -+drawable abc_action_bar_item_background_material -+drawable abc_btn_borderless_material -+drawable abc_btn_check_material -+drawable abc_btn_check_material_anim -+drawable abc_btn_check_to_on_mtrl_000 -+drawable abc_btn_check_to_on_mtrl_015 -+drawable abc_btn_colored_material -+drawable abc_btn_default_mtrl_shape -+drawable abc_btn_radio_material -+drawable abc_btn_radio_material_anim -+drawable abc_btn_radio_to_on_mtrl_000 -+drawable abc_btn_radio_to_on_mtrl_015 -+drawable abc_btn_switch_to_on_mtrl_00001 -+drawable abc_btn_switch_to_on_mtrl_00012 -+drawable abc_cab_background_internal_bg -+drawable abc_cab_background_top_material -+drawable abc_cab_background_top_mtrl_alpha -+drawable abc_control_background_material -+drawable abc_dialog_material_background -+drawable abc_edit_text_material -+drawable abc_ic_ab_back_material -+drawable abc_ic_arrow_drop_right_black_24dp -+drawable abc_ic_clear_material -+drawable abc_ic_commit_search_api_mtrl_alpha -+drawable abc_ic_go_search_api_material -+drawable abc_ic_menu_copy_mtrl_am_alpha -+drawable abc_ic_menu_cut_mtrl_alpha -+drawable abc_ic_menu_overflow_material -+drawable abc_ic_menu_paste_mtrl_am_alpha -+drawable abc_ic_menu_selectall_mtrl_alpha -+drawable abc_ic_menu_share_mtrl_alpha -+drawable abc_ic_search_api_material -+drawable abc_ic_voice_search_api_material -+drawable abc_item_background_holo_dark -+drawable abc_item_background_holo_light -+drawable abc_list_divider_material -+drawable abc_list_divider_mtrl_alpha -+drawable abc_list_focused_holo -+drawable abc_list_longpressed_holo -+drawable abc_list_pressed_holo_dark -+drawable abc_list_pressed_holo_light -+drawable abc_list_selector_background_transition_holo_dark -+drawable abc_list_selector_background_transition_holo_light -+drawable abc_list_selector_disabled_holo_dark -+drawable abc_list_selector_disabled_holo_light -+drawable abc_list_selector_holo_dark -+drawable abc_list_selector_holo_light -+drawable abc_menu_hardkey_panel_mtrl_mult -+drawable abc_popup_background_mtrl_mult -+drawable abc_ratingbar_indicator_material -+drawable abc_ratingbar_material -+drawable abc_ratingbar_small_material -+drawable abc_scrubber_control_off_mtrl_alpha -+drawable abc_scrubber_control_to_pressed_mtrl_000 -+drawable abc_scrubber_control_to_pressed_mtrl_005 -+drawable abc_scrubber_primary_mtrl_alpha -+drawable abc_scrubber_track_mtrl_alpha -+drawable abc_seekbar_thumb_material -+drawable abc_seekbar_tick_mark_material -+drawable abc_seekbar_track_material -+drawable abc_spinner_mtrl_am_alpha -+drawable abc_spinner_textfield_background_material -+drawable abc_star_black_48dp -+drawable abc_star_half_black_48dp -+drawable abc_switch_thumb_material -+drawable abc_switch_track_mtrl_alpha -+drawable abc_tab_indicator_material -+drawable abc_tab_indicator_mtrl_alpha -+drawable abc_text_cursor_material -+drawable abc_text_select_handle_left_mtrl -+drawable abc_text_select_handle_middle_mtrl -+drawable abc_text_select_handle_right_mtrl -+drawable abc_textfield_activated_mtrl_alpha -+drawable abc_textfield_default_mtrl_alpha -+drawable abc_textfield_search_activated_mtrl_alpha -+drawable abc_textfield_search_default_mtrl_alpha -+drawable abc_textfield_search_material -+drawable abc_vector_test -+drawable autofill_inline_suggestion_chip_background -+drawable btn_checkbox_checked_mtrl -+drawable btn_checkbox_checked_to_unchecked_mtrl_animation -+drawable btn_checkbox_unchecked_mtrl -+drawable btn_checkbox_unchecked_to_checked_mtrl_animation -+drawable btn_radio_off_mtrl -+drawable btn_radio_off_to_on_mtrl_animation -+drawable btn_radio_on_mtrl -+drawable btn_radio_on_to_off_mtrl_animation -+drawable default_scroll_handle_bottom -+drawable default_scroll_handle_left -+drawable default_scroll_handle_right -+drawable default_scroll_handle_top -+drawable ic_call_answer -+drawable ic_call_answer_low -+drawable ic_call_answer_video -+drawable ic_call_answer_video_low -+drawable ic_call_decline -+drawable ic_call_decline_low -+drawable ic_resume -+drawable notification_action_background -+drawable notification_bg -+drawable notification_bg_low -+drawable notification_bg_low_normal -+drawable notification_bg_low_pressed -+drawable notification_bg_normal -+drawable notification_bg_normal_pressed -+drawable notification_icon_background -+drawable notification_oversize_large_icon_bg -+drawable notification_template_icon_bg -+drawable notification_template_icon_low_bg -+drawable notification_tile_bg -+drawable notify_panel_notification_icon_bg -+drawable paused_in_debugger_background -+drawable paused_in_debugger_dialog_background -+drawable redbox_top_border_background -+drawable ripple_effect -+drawable test_level_drawable -+drawable tooltip_frame_dark -+drawable tooltip_frame_light -+id accessibility_action_clickable_span -+id accessibility_actions -+id accessibility_collection -+id accessibility_collection_item -+id accessibility_custom_action_0 -+id accessibility_custom_action_1 -+id accessibility_custom_action_10 -+id accessibility_custom_action_11 -+id accessibility_custom_action_12 -+id accessibility_custom_action_13 -+id accessibility_custom_action_14 -+id accessibility_custom_action_15 -+id accessibility_custom_action_16 -+id accessibility_custom_action_17 -+id accessibility_custom_action_18 -+id accessibility_custom_action_19 -+id accessibility_custom_action_2 -+id accessibility_custom_action_20 -+id accessibility_custom_action_21 -+id accessibility_custom_action_22 -+id accessibility_custom_action_23 -+id accessibility_custom_action_24 -+id accessibility_custom_action_25 -+id accessibility_custom_action_26 -+id accessibility_custom_action_27 -+id accessibility_custom_action_28 -+id accessibility_custom_action_29 -+id accessibility_custom_action_3 -+id accessibility_custom_action_30 -+id accessibility_custom_action_31 -+id accessibility_custom_action_4 -+id accessibility_custom_action_5 -+id accessibility_custom_action_6 -+id accessibility_custom_action_7 -+id accessibility_custom_action_8 -+id accessibility_custom_action_9 -+id accessibility_hint -+id accessibility_label -+id accessibility_links -+id accessibility_role -+id accessibility_state -+id accessibility_state_expanded -+id accessibility_value -+id action_bar -+id action_bar_activity_content -+id action_bar_container -+id action_bar_root -+id action_bar_spinner -+id action_bar_subtitle -+id action_bar_title -+id action_container -+id action_context_bar -+id action_divider -+id action_image -+id action_menu_divider -+id action_menu_presenter -+id action_mode_bar -+id action_mode_bar_stub -+id action_mode_close_button -+id action_text -+id actions -+id activity_chooser_view_content -+id add -+id alertTitle -+id alert_title -+id async -+id autofill_inline_suggestion_end_icon -+id autofill_inline_suggestion_start_icon -+id autofill_inline_suggestion_subtitle -+id autofill_inline_suggestion_title -+id blocking -+id button -+id buttonPanel -+id button_text -+id catalyst_redbox_title -+id center -+id centerCrop -+id centerInside -+id checkbox -+id checked -+id chronometer -+id content -+id contentPanel -+id custom -+id customPanel -+id decor_content_parent -+id default_activity_button -+id dialog_button -+id edit_query -+id edit_text_id -+id expand_activities_button -+id expanded_menu -+id filter -+id fitBottomStart -+id fitCenter -+id fitEnd -+id fitStart -+id fitXY -+id focusCrop -+id forever -+id fps_text -+id fragment_container_view_tag -+id group_divider -+id hide_ime_id -+id home -+id icon -+id icon_group -+id image -+id info -+id invalidate_transform -+id italic -+id labelled_by -+id line1 -+id line3 -+id listMode -+id list_item -+id message -+id mix_blend_mode -+id multiply -+id none -+id normal -+id notification_background -+id notification_main_column -+id notification_main_column_container -+id off -+id on -+id parentPanel -+id pointer_events -+id progress_circular -+id progress_horizontal -+id radio -+id react_test_id -+id report_drawn -+id right_icon -+id right_side -+id rn_frame_file -+id rn_frame_method -+id rn_redbox_dismiss_button -+id rn_redbox_line_separator -+id rn_redbox_loading_indicator -+id rn_redbox_reload_button -+id rn_redbox_report_button -+id rn_redbox_report_label -+id rn_redbox_stack -+id role -+id screen -+id scrollIndicatorDown -+id scrollIndicatorUp -+id scrollView -+id search_badge -+id search_bar -+id search_button -+id search_close_btn -+id search_edit_frame -+id search_go_btn -+id search_mag_icon -+id search_plate -+id search_src_text -+id search_voice_btn -+id select_dialog_listview -+id shortcut -+id spacer -+id special_effects_controller_view_tag -+id split_action_bar -+id src_atop -+id src_in -+id src_over -+id submenuarrow -+id submit_area -+id tabMode -+id tag_accessibility_actions -+id tag_accessibility_clickable_spans -+id tag_accessibility_heading -+id tag_accessibility_pane_title -+id tag_on_apply_window_listener -+id tag_on_receive_content_listener -+id tag_on_receive_content_mime_types -+id tag_screen_reader_focusable -+id tag_state_description -+id tag_transition_group -+id tag_unhandled_key_event_manager -+id tag_unhandled_key_listeners -+id tag_window_insets_animation_callback -+id text -+id text2 -+id textSpacerNoButtons -+id textSpacerNoTitle -+id time -+id title -+id titleDividerNoCustom -+id title_template -+id topPanel -+id transform -+id transform_origin -+id unchecked -+id uniform -+id up -+id use_hardware_layer -+id view_clipped -+id view_tag_instance_handle -+id view_tag_native_id -+id view_tree_lifecycle_owner -+id view_tree_on_back_pressed_dispatcher_owner -+id view_tree_saved_state_registry_owner -+id view_tree_view_model_store_owner -+id visible_removing_fragment_view_tag -+id wrap_content -+integer abc_config_activityDefaultDur -+integer abc_config_activityShortDur -+integer cancel_button_image_alpha -+integer config_tooltipAnimTime -+integer react_native_dev_server_port -+integer status_bar_notification_info_maxnum -+interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 -+interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 -+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 -+interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 -+interpolator btn_radio_to_off_mtrl_animation_interpolator_0 -+interpolator btn_radio_to_on_mtrl_animation_interpolator_0 -+interpolator fast_out_slow_in -+layout abc_action_bar_title_item -+layout abc_action_bar_up_container -+layout abc_action_menu_item_layout -+layout abc_action_menu_layout -+layout abc_action_mode_bar -+layout abc_action_mode_close_item_material -+layout abc_activity_chooser_view -+layout abc_activity_chooser_view_list_item -+layout abc_alert_dialog_button_bar_material -+layout abc_alert_dialog_material -+layout abc_alert_dialog_title_material -+layout abc_cascading_menu_item_layout -+layout abc_dialog_title_material -+layout abc_expanded_menu_layout -+layout abc_list_menu_item_checkbox -+layout abc_list_menu_item_icon -+layout abc_list_menu_item_layout -+layout abc_list_menu_item_radio -+layout abc_popup_menu_header_item_layout -+layout abc_popup_menu_item_layout -+layout abc_screen_content_include -+layout abc_screen_simple -+layout abc_screen_simple_overlay_action_mode -+layout abc_screen_toolbar -+layout abc_search_dropdown_item_icons_2line -+layout abc_search_view -+layout abc_select_dialog_material -+layout abc_tooltip -+layout alert_title_layout -+layout autofill_inline_suggestion -+layout custom_dialog -+layout dev_loading_view -+layout fps_view -+layout ime_base_split_test_activity -+layout ime_secondary_split_test_activity -+layout notification_action -+layout notification_action_tombstone -+layout notification_template_custom_big -+layout notification_template_icon_group -+layout notification_template_part_chronometer -+layout notification_template_part_time -+layout paused_in_debugger_view -+layout redbox_item_frame -+layout redbox_item_title -+layout redbox_view -+layout select_dialog_item_material -+layout select_dialog_multichoice_material -+layout select_dialog_singlechoice_material -+layout support_simple_spinner_dropdown_item -+string abc_action_bar_home_description -+string abc_action_bar_up_description -+string abc_action_menu_overflow_description -+string abc_action_mode_done -+string abc_activity_chooser_view_see_all -+string abc_activitychooserview_choose_application -+string abc_capital_off -+string abc_capital_on -+string abc_menu_alt_shortcut_label -+string abc_menu_ctrl_shortcut_label -+string abc_menu_delete_shortcut_label -+string abc_menu_enter_shortcut_label -+string abc_menu_function_shortcut_label -+string abc_menu_meta_shortcut_label -+string abc_menu_shift_shortcut_label -+string abc_menu_space_shortcut_label -+string abc_menu_sym_shortcut_label -+string abc_prepend_shortcut_label -+string abc_search_hint -+string abc_searchview_description_clear -+string abc_searchview_description_query -+string abc_searchview_description_search -+string abc_searchview_description_submit -+string abc_searchview_description_voice -+string abc_shareactionprovider_share_with -+string abc_shareactionprovider_share_with_application -+string abc_toolbar_collapse_description -+string alert_description -+string call_notification_answer_action -+string call_notification_answer_video_action -+string call_notification_decline_action -+string call_notification_hang_up_action -+string call_notification_incoming_text -+string call_notification_ongoing_text -+string call_notification_screening_text -+string catalyst_change_bundle_location -+string catalyst_copy_button -+string catalyst_debug_connecting -+string catalyst_debug_error -+string catalyst_debug_open -+string catalyst_debug_open_disabled -+string catalyst_dev_menu_header -+string catalyst_dev_menu_sub_header -+string catalyst_dismiss_button -+string catalyst_heap_capture -+string catalyst_hot_reloading -+string catalyst_hot_reloading_auto_disable -+string catalyst_hot_reloading_auto_enable -+string catalyst_hot_reloading_stop -+string catalyst_inspector_toggle -+string catalyst_loading_from_url -+string catalyst_open_debugger_error -+string catalyst_perf_monitor -+string catalyst_perf_monitor_stop -+string catalyst_reload -+string catalyst_reload_button -+string catalyst_reload_error -+string catalyst_report_button -+string catalyst_sample_profiler_toggle -+string catalyst_settings -+string catalyst_settings_title -+string combobox_description -+string header_description -+string image_description -+string imagebutton_description -+string link_description -+string menu_description -+string menubar_description -+string menuitem_description -+string progressbar_description -+string radiogroup_description -+string rn_tab_description -+string scrollbar_description -+string search_menu_title -+string spinbutton_description -+string state_busy_description -+string state_collapsed_description -+string state_expanded_description -+string state_mixed_description -+string state_off_description -+string state_on_description -+string state_unselected_description -+string status_bar_notification_info_overflow -+string summary_description -+string tablist_description -+string timer_description -+string toolbar_description -+style AlertDialog_AppCompat -+style AlertDialog_AppCompat_Light -+style Animation_AppCompat_Dialog -+style Animation_AppCompat_DropDownUp -+style Animation_AppCompat_Tooltip -+style Animation_Catalyst_LogBox -+style Animation_Catalyst_RedBox -+style Base_AlertDialog_AppCompat -+style Base_AlertDialog_AppCompat_Light -+style Base_Animation_AppCompat_Dialog -+style Base_Animation_AppCompat_DropDownUp -+style Base_Animation_AppCompat_Tooltip -+style Base_DialogWindowTitleBackground_AppCompat -+style Base_DialogWindowTitle_AppCompat -+style Base_TextAppearance_AppCompat -+style Base_TextAppearance_AppCompat_Body1 -+style Base_TextAppearance_AppCompat_Body2 -+style Base_TextAppearance_AppCompat_Button -+style Base_TextAppearance_AppCompat_Caption -+style Base_TextAppearance_AppCompat_Display1 -+style Base_TextAppearance_AppCompat_Display2 -+style Base_TextAppearance_AppCompat_Display3 -+style Base_TextAppearance_AppCompat_Display4 -+style Base_TextAppearance_AppCompat_Headline -+style Base_TextAppearance_AppCompat_Inverse -+style Base_TextAppearance_AppCompat_Large -+style Base_TextAppearance_AppCompat_Large_Inverse -+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -+style Base_TextAppearance_AppCompat_Medium -+style Base_TextAppearance_AppCompat_Medium_Inverse -+style Base_TextAppearance_AppCompat_Menu -+style Base_TextAppearance_AppCompat_SearchResult -+style Base_TextAppearance_AppCompat_SearchResult_Subtitle -+style Base_TextAppearance_AppCompat_SearchResult_Title -+style Base_TextAppearance_AppCompat_Small -+style Base_TextAppearance_AppCompat_Small_Inverse -+style Base_TextAppearance_AppCompat_Subhead -+style Base_TextAppearance_AppCompat_Subhead_Inverse -+style Base_TextAppearance_AppCompat_Title -+style Base_TextAppearance_AppCompat_Title_Inverse -+style Base_TextAppearance_AppCompat_Tooltip -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title -+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title -+style Base_TextAppearance_AppCompat_Widget_Button -+style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -+style Base_TextAppearance_AppCompat_Widget_Button_Colored -+style Base_TextAppearance_AppCompat_Widget_Button_Inverse -+style Base_TextAppearance_AppCompat_Widget_DropDownItem -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -+style Base_TextAppearance_AppCompat_Widget_Switch -+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title -+style Base_ThemeOverlay_AppCompat -+style Base_ThemeOverlay_AppCompat_ActionBar -+style Base_ThemeOverlay_AppCompat_Dark -+style Base_ThemeOverlay_AppCompat_Dark_ActionBar -+style Base_ThemeOverlay_AppCompat_Dialog -+style Base_ThemeOverlay_AppCompat_Dialog_Alert -+style Base_ThemeOverlay_AppCompat_Light -+style Base_Theme_AppCompat -+style Base_Theme_AppCompat_CompactMenu -+style Base_Theme_AppCompat_Dialog -+style Base_Theme_AppCompat_DialogWhenLarge -+style Base_Theme_AppCompat_Dialog_Alert -+style Base_Theme_AppCompat_Dialog_FixedSize -+style Base_Theme_AppCompat_Dialog_MinWidth -+style Base_Theme_AppCompat_Light -+style Base_Theme_AppCompat_Light_DarkActionBar -+style Base_Theme_AppCompat_Light_Dialog -+style Base_Theme_AppCompat_Light_DialogWhenLarge -+style Base_Theme_AppCompat_Light_Dialog_Alert -+style Base_Theme_AppCompat_Light_Dialog_FixedSize -+style Base_Theme_AppCompat_Light_Dialog_MinWidth -+style Base_V21_ThemeOverlay_AppCompat_Dialog -+style Base_V21_Theme_AppCompat -+style Base_V21_Theme_AppCompat_Dialog -+style Base_V21_Theme_AppCompat_Light -+style Base_V21_Theme_AppCompat_Light_Dialog -+style Base_V22_Theme_AppCompat -+style Base_V22_Theme_AppCompat_Light -+style Base_V23_Theme_AppCompat -+style Base_V23_Theme_AppCompat_Light -+style Base_V26_Theme_AppCompat -+style Base_V26_Theme_AppCompat_Light -+style Base_V26_Widget_AppCompat_Toolbar -+style Base_V28_Theme_AppCompat -+style Base_V28_Theme_AppCompat_Light -+style Base_V7_ThemeOverlay_AppCompat_Dialog -+style Base_V7_Theme_AppCompat -+style Base_V7_Theme_AppCompat_Dialog -+style Base_V7_Theme_AppCompat_Light -+style Base_V7_Theme_AppCompat_Light_Dialog -+style Base_V7_Widget_AppCompat_AutoCompleteTextView -+style Base_V7_Widget_AppCompat_EditText -+style Base_V7_Widget_AppCompat_Toolbar -+style Base_Widget_AppCompat_ActionBar -+style Base_Widget_AppCompat_ActionBar_Solid -+style Base_Widget_AppCompat_ActionBar_TabBar -+style Base_Widget_AppCompat_ActionBar_TabText -+style Base_Widget_AppCompat_ActionBar_TabView -+style Base_Widget_AppCompat_ActionButton -+style Base_Widget_AppCompat_ActionButton_CloseMode -+style Base_Widget_AppCompat_ActionButton_Overflow -+style Base_Widget_AppCompat_ActionMode -+style Base_Widget_AppCompat_ActivityChooserView -+style Base_Widget_AppCompat_AutoCompleteTextView -+style Base_Widget_AppCompat_Button -+style Base_Widget_AppCompat_ButtonBar -+style Base_Widget_AppCompat_ButtonBar_AlertDialog -+style Base_Widget_AppCompat_Button_Borderless -+style Base_Widget_AppCompat_Button_Borderless_Colored -+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -+style Base_Widget_AppCompat_Button_Colored -+style Base_Widget_AppCompat_Button_Small -+style Base_Widget_AppCompat_CompoundButton_CheckBox -+style Base_Widget_AppCompat_CompoundButton_RadioButton -+style Base_Widget_AppCompat_CompoundButton_Switch -+style Base_Widget_AppCompat_DrawerArrowToggle -+style Base_Widget_AppCompat_DrawerArrowToggle_Common -+style Base_Widget_AppCompat_DropDownItem_Spinner -+style Base_Widget_AppCompat_EditText -+style Base_Widget_AppCompat_ImageButton -+style Base_Widget_AppCompat_Light_ActionBar -+style Base_Widget_AppCompat_Light_ActionBar_Solid -+style Base_Widget_AppCompat_Light_ActionBar_TabBar -+style Base_Widget_AppCompat_Light_ActionBar_TabText -+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -+style Base_Widget_AppCompat_Light_ActionBar_TabView -+style Base_Widget_AppCompat_Light_PopupMenu -+style Base_Widget_AppCompat_Light_PopupMenu_Overflow -+style Base_Widget_AppCompat_ListMenuView -+style Base_Widget_AppCompat_ListPopupWindow -+style Base_Widget_AppCompat_ListView -+style Base_Widget_AppCompat_ListView_DropDown -+style Base_Widget_AppCompat_ListView_Menu -+style Base_Widget_AppCompat_PopupMenu -+style Base_Widget_AppCompat_PopupMenu_Overflow -+style Base_Widget_AppCompat_PopupWindow -+style Base_Widget_AppCompat_ProgressBar -+style Base_Widget_AppCompat_ProgressBar_Horizontal -+style Base_Widget_AppCompat_RatingBar -+style Base_Widget_AppCompat_RatingBar_Indicator -+style Base_Widget_AppCompat_RatingBar_Small -+style Base_Widget_AppCompat_SearchView -+style Base_Widget_AppCompat_SearchView_ActionBar -+style Base_Widget_AppCompat_SeekBar -+style Base_Widget_AppCompat_SeekBar_Discrete -+style Base_Widget_AppCompat_Spinner -+style Base_Widget_AppCompat_Spinner_Underlined -+style Base_Widget_AppCompat_TextView -+style Base_Widget_AppCompat_TextView_SpinnerItem -+style Base_Widget_AppCompat_Toolbar -+style Base_Widget_AppCompat_Toolbar_Button_Navigation -+style CalendarDatePickerDialog -+style CalendarDatePickerStyle -+style DialogAnimationFade -+style DialogAnimationSlide -+style NoAnimationDialog -+style Platform_AppCompat -+style Platform_AppCompat_Light -+style Platform_ThemeOverlay_AppCompat -+style Platform_ThemeOverlay_AppCompat_Dark -+style Platform_ThemeOverlay_AppCompat_Light -+style Platform_V21_AppCompat -+style Platform_V21_AppCompat_Light -+style Platform_V25_AppCompat -+style Platform_V25_AppCompat_Light -+style Platform_Widget_AppCompat_Spinner -+style RtlOverlay_DialogWindowTitle_AppCompat -+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon -+style RtlOverlay_Widget_AppCompat_PopupMenuItem -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon -+style RtlOverlay_Widget_AppCompat_Search_DropDown -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query -+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text -+style RtlUnderlay_Widget_AppCompat_ActionButton -+style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -+style SpinnerDatePickerDialog -+style SpinnerDatePickerStyle -+style TextAppearance_AppCompat -+style TextAppearance_AppCompat_Body1 -+style TextAppearance_AppCompat_Body2 -+style TextAppearance_AppCompat_Button -+style TextAppearance_AppCompat_Caption -+style TextAppearance_AppCompat_Display1 -+style TextAppearance_AppCompat_Display2 -+style TextAppearance_AppCompat_Display3 -+style TextAppearance_AppCompat_Display4 -+style TextAppearance_AppCompat_Headline -+style TextAppearance_AppCompat_Inverse -+style TextAppearance_AppCompat_Large -+style TextAppearance_AppCompat_Large_Inverse -+style TextAppearance_AppCompat_Light_SearchResult_Subtitle -+style TextAppearance_AppCompat_Light_SearchResult_Title -+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -+style TextAppearance_AppCompat_Medium -+style TextAppearance_AppCompat_Medium_Inverse -+style TextAppearance_AppCompat_Menu -+style TextAppearance_AppCompat_SearchResult_Subtitle -+style TextAppearance_AppCompat_SearchResult_Title -+style TextAppearance_AppCompat_Small -+style TextAppearance_AppCompat_Small_Inverse -+style TextAppearance_AppCompat_Subhead -+style TextAppearance_AppCompat_Subhead_Inverse -+style TextAppearance_AppCompat_Title -+style TextAppearance_AppCompat_Title_Inverse -+style TextAppearance_AppCompat_Tooltip -+style TextAppearance_AppCompat_Widget_ActionBar_Menu -+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle -+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -+style TextAppearance_AppCompat_Widget_ActionBar_Title -+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle -+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -+style TextAppearance_AppCompat_Widget_ActionMode_Title -+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -+style TextAppearance_AppCompat_Widget_Button -+style TextAppearance_AppCompat_Widget_Button_Borderless_Colored -+style TextAppearance_AppCompat_Widget_Button_Colored -+style TextAppearance_AppCompat_Widget_Button_Inverse -+style TextAppearance_AppCompat_Widget_DropDownItem -+style TextAppearance_AppCompat_Widget_PopupMenu_Header -+style TextAppearance_AppCompat_Widget_PopupMenu_Large -+style TextAppearance_AppCompat_Widget_PopupMenu_Small -+style TextAppearance_AppCompat_Widget_Switch -+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem -+style TextAppearance_Compat_Notification -+style TextAppearance_Compat_Notification_Info -+style TextAppearance_Compat_Notification_Line2 -+style TextAppearance_Compat_Notification_Time -+style TextAppearance_Compat_Notification_Title -+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item -+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle -+style TextAppearance_Widget_AppCompat_Toolbar_Title -+style Theme -+style ThemeOverlay_AppCompat -+style ThemeOverlay_AppCompat_ActionBar -+style ThemeOverlay_AppCompat_Dark -+style ThemeOverlay_AppCompat_Dark_ActionBar -+style ThemeOverlay_AppCompat_DayNight -+style ThemeOverlay_AppCompat_DayNight_ActionBar -+style ThemeOverlay_AppCompat_Dialog -+style ThemeOverlay_AppCompat_Dialog_Alert -+style ThemeOverlay_AppCompat_Light -+style Theme_AppCompat -+style Theme_AppCompat_CompactMenu -+style Theme_AppCompat_DayNight -+style Theme_AppCompat_DayNight_DarkActionBar -+style Theme_AppCompat_DayNight_Dialog -+style Theme_AppCompat_DayNight_DialogWhenLarge -+style Theme_AppCompat_DayNight_Dialog_Alert -+style Theme_AppCompat_DayNight_Dialog_MinWidth -+style Theme_AppCompat_DayNight_NoActionBar -+style Theme_AppCompat_Dialog -+style Theme_AppCompat_DialogWhenLarge -+style Theme_AppCompat_Dialog_Alert -+style Theme_AppCompat_Dialog_MinWidth -+style Theme_AppCompat_Empty -+style Theme_AppCompat_Light -+style Theme_AppCompat_Light_DarkActionBar -+style Theme_AppCompat_Light_Dialog -+style Theme_AppCompat_Light_DialogWhenLarge -+style Theme_AppCompat_Light_Dialog_Alert -+style Theme_AppCompat_Light_Dialog_MinWidth -+style Theme_AppCompat_Light_NoActionBar -+style Theme_AppCompat_NoActionBar -+style Theme_AutofillInlineSuggestion -+style Theme_Catalyst -+style Theme_Catalyst_LogBox -+style Theme_Catalyst_RedBox -+style Theme_FullScreenDialog -+style Theme_FullScreenDialogAnimatedFade -+style Theme_FullScreenDialogAnimatedSlide -+style Theme_ReactNative_AppCompat_Light -+style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen -+style Theme_ReactNative_TextInput_DefaultBackground -+style Widget_AppCompat_ActionBar -+style Widget_AppCompat_ActionBar_Solid -+style Widget_AppCompat_ActionBar_TabBar -+style Widget_AppCompat_ActionBar_TabText -+style Widget_AppCompat_ActionBar_TabView -+style Widget_AppCompat_ActionButton -+style Widget_AppCompat_ActionButton_CloseMode -+style Widget_AppCompat_ActionButton_Overflow -+style Widget_AppCompat_ActionMode -+style Widget_AppCompat_ActivityChooserView -+style Widget_AppCompat_AutoCompleteTextView -+style Widget_AppCompat_Button -+style Widget_AppCompat_ButtonBar -+style Widget_AppCompat_ButtonBar_AlertDialog -+style Widget_AppCompat_Button_Borderless -+style Widget_AppCompat_Button_Borderless_Colored -+style Widget_AppCompat_Button_ButtonBar_AlertDialog -+style Widget_AppCompat_Button_Colored -+style Widget_AppCompat_Button_Small -+style Widget_AppCompat_CompoundButton_CheckBox -+style Widget_AppCompat_CompoundButton_RadioButton -+style Widget_AppCompat_CompoundButton_Switch -+style Widget_AppCompat_DrawerArrowToggle -+style Widget_AppCompat_DropDownItem_Spinner -+style Widget_AppCompat_EditText -+style Widget_AppCompat_ImageButton -+style Widget_AppCompat_Light_ActionBar -+style Widget_AppCompat_Light_ActionBar_Solid -+style Widget_AppCompat_Light_ActionBar_Solid_Inverse -+style Widget_AppCompat_Light_ActionBar_TabBar -+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse -+style Widget_AppCompat_Light_ActionBar_TabText -+style Widget_AppCompat_Light_ActionBar_TabText_Inverse -+style Widget_AppCompat_Light_ActionBar_TabView -+style Widget_AppCompat_Light_ActionBar_TabView_Inverse -+style Widget_AppCompat_Light_ActionButton -+style Widget_AppCompat_Light_ActionButton_CloseMode -+style Widget_AppCompat_Light_ActionButton_Overflow -+style Widget_AppCompat_Light_ActionMode_Inverse -+style Widget_AppCompat_Light_ActivityChooserView -+style Widget_AppCompat_Light_AutoCompleteTextView -+style Widget_AppCompat_Light_DropDownItem_Spinner -+style Widget_AppCompat_Light_ListPopupWindow -+style Widget_AppCompat_Light_ListView_DropDown -+style Widget_AppCompat_Light_PopupMenu -+style Widget_AppCompat_Light_PopupMenu_Overflow -+style Widget_AppCompat_Light_SearchView -+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar -+style Widget_AppCompat_ListMenuView -+style Widget_AppCompat_ListPopupWindow -+style Widget_AppCompat_ListView -+style Widget_AppCompat_ListView_DropDown -+style Widget_AppCompat_ListView_Menu -+style Widget_AppCompat_PopupMenu -+style Widget_AppCompat_PopupMenu_Overflow -+style Widget_AppCompat_PopupWindow -+style Widget_AppCompat_ProgressBar -+style Widget_AppCompat_ProgressBar_Horizontal -+style Widget_AppCompat_RatingBar -+style Widget_AppCompat_RatingBar_Indicator -+style Widget_AppCompat_RatingBar_Small -+style Widget_AppCompat_SearchView -+style Widget_AppCompat_SearchView_ActionBar -+style Widget_AppCompat_SeekBar -+style Widget_AppCompat_SeekBar_Discrete -+style Widget_AppCompat_Spinner -+style Widget_AppCompat_Spinner_DropDown -+style Widget_AppCompat_Spinner_DropDown_ActionBar -+style Widget_AppCompat_Spinner_Underlined -+style Widget_AppCompat_TextView -+style Widget_AppCompat_TextView_SpinnerItem -+style Widget_AppCompat_Toolbar -+style Widget_AppCompat_Toolbar_Button_Navigation -+style Widget_Autofill -+style Widget_Autofill_InlineSuggestionChip -+style Widget_Autofill_InlineSuggestionEndIconStyle -+style Widget_Autofill_InlineSuggestionStartIconStyle -+style Widget_Autofill_InlineSuggestionSubtitle -+style Widget_Autofill_InlineSuggestionTitle -+style Widget_Compat_NotificationActionContainer -+style Widget_Compat_NotificationActionText -+style redboxButton -+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle -+styleable ActionBarLayout android_layout_gravity -+styleable ActionMenuItemView android_minWidth -+styleable ActionMenuView -+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle -+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount -+styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout -+styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -+styleable AnimatedStateListDrawableItem android_drawable android_id -+styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId -+styleable AppCompatEmojiHelper -+styleable AppCompatImageView android_src srcCompat tint tintMode -+styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode -+styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance -+styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale -+styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle -+styleable Autofill_InlineSuggestion autofillInlineSuggestionChip autofillInlineSuggestionEndIconStyle autofillInlineSuggestionStartIconStyle autofillInlineSuggestionSubtitle autofillInlineSuggestionTitle isAutofillInlineSuggestionTheme -+styleable ButtonBarLayout allowStacking -+styleable Capability queryPatterns shortcutMatchRequired -+styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode -+styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar -+styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode -+styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness -+styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily -+styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex -+styleable Fragment android_id android_name android_tag -+styleable FragmentContainerView android_name android_tag -+styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio -+styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type -+styleable GradientColorItem android_color android_offset -+styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers -+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width -+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset -+styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible -+styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText -+styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow -+styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor -+styleable PopupWindowBackgroundState state_above_anchor -+styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle -+styleable ScrollBar sb_handlerColor sb_horizontal sb_indicatorColor sb_indicatorTextColor -+styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon -+styleable SimpleDraweeView actualImageResource actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio -+styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme -+styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -+styleable StateListDrawableItem android_drawable -+styleable SwipeRefreshLayout swipeRefreshLayoutProgressSpinnerBackgroundColor -+styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode -+styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale -+styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor -+styleable View android_focusable android_theme paddingEnd paddingStart theme -+styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode -+styleable ViewStubCompat android_id android_inflatedId android_layout -+xml rn_dev_preferences -diff --git a/node_modules/react-native-pdf/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-pdf/android/build/outputs/logs/manifest-merger-debug-report.txt -new file mode 100644 -index 0000000..71859ee ---- /dev/null -+++ b/node_modules/react-native-pdf/android/build/outputs/logs/manifest-merger-debug-report.txt -@@ -0,0 +1,16 @@ -+-- Merging decision tree log --- -+manifest -+ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml:1:1-4:12 -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml:1:1-4:12 -+ package -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml -+ xmlns:android -+ ADDED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml:1:11-69 -+uses-sdk -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml reason: use-sdk injection requested -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml -+INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml -+ android:targetSdkVersion -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml -+ android:minSdkVersion -+ INJECTED from /Users/chris/Projects/Margelo/ExpensifyApp3/node_modules/react-native-pdf/android/src/main/AndroidManifest.xml -diff --git a/node_modules/react-native-pdf/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-pdf/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin -new file mode 100644 -index 0000000..1e47b2f -Binary files /dev/null and b/node_modules/react-native-pdf/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ -diff --git a/node_modules/react-native-pdf/react-native-pdf.podspec b/node_modules/react-native-pdf/react-native-pdf.podspec -index fb36140..63a276d 100644 ---- a/node_modules/react-native-pdf/react-native-pdf.podspec -+++ b/node_modules/react-native-pdf/react-native-pdf.podspec -@@ -17,24 +17,11 @@ Pod::Spec.new do |s| - s.framework = "PDFKit" - - if fabric_enabled -- folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32' -- -- s.pod_target_xcconfig = { -- 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/RCT-Folly"', -- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17", -- } - s.platforms = { ios: '11.0', tvos: '11.0' } -- s.compiler_flags = folly_compiler_flags + ' -DRCT_NEW_ARCH_ENABLED' - s.source_files = 'ios/**/*.{h,m,mm,cpp}' - s.requires_arc = true - -- s.dependency "React" -- s.dependency "React-RCTFabric" -- s.dependency "React-Codegen" -- s.dependency "RCT-Folly" -- s.dependency "RCTRequired" -- s.dependency "RCTTypeSafety" -- s.dependency "ReactCommon/turbomodule/core" -+ install_modules_dependencies(s) - else - s.platform = :ios, '8.0' - s.source_files = 'ios/**/*.{h,m,mm}' diff --git a/patches/react-native-pdf/details.md b/patches/react-native-pdf/details.md deleted file mode 100644 index 5a5ed1474de48..0000000000000 --- a/patches/react-native-pdf/details.md +++ /dev/null @@ -1,14 +0,0 @@ -# `react-native-pdf` patches - -### [react-native-pdf+6.7.3+001+update-podspec-to-support-new-arch.patch](react-native-pdf+6.7.3+001+update-podspec-to-support-new-arch.patch) - -- Reason: - - ``` - This patch updates the react-native-pdf.podspec to ensure compatibility with React Native's New Architecture on iOS by replacing manual dependency declarations - with Meta's recommended `install_modules_dependencies` function - ``` - -- Upstream PR/issue: https://github.com/wonday/react-native-pdf/pull/803 -- E/App issue: 🛑 -- PR Introducing Patch: https://github.com/Expensify/App/pull/13767 diff --git a/patches/react-native-pdf/react-native-pdf+6.7.3+001+update-podspec-to-support-new-arch.patch b/patches/react-native-pdf/react-native-pdf+6.7.3+001+update-podspec-to-support-new-arch.patch deleted file mode 100644 index 5e81ac17360bd..0000000000000 --- a/patches/react-native-pdf/react-native-pdf+6.7.3+001+update-podspec-to-support-new-arch.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff --git a/node_modules/react-native-pdf/react-native-pdf.podspec b/node_modules/react-native-pdf/react-native-pdf.podspec -index fb36140..5d5f19e 100644 ---- a/node_modules/react-native-pdf/react-native-pdf.podspec -+++ b/node_modules/react-native-pdf/react-native-pdf.podspec -@@ -17,24 +17,11 @@ Pod::Spec.new do |s| - s.framework = "PDFKit" - - if fabric_enabled -- folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32' -- -- s.pod_target_xcconfig = { -- 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/boost" "$(PODS_ROOT)/boost-for-react-native" "$(PODS_ROOT)/RCT-Folly"', -- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17", -- } - s.platforms = { ios: '11.0', tvos: '11.0' } -- s.compiler_flags = folly_compiler_flags + ' -DRCT_NEW_ARCH_ENABLED' - s.source_files = 'ios/**/*.{h,m,mm,cpp}' - s.requires_arc = true - -- s.dependency "React" -- s.dependency "React-RCTFabric" -- s.dependency "React-Codegen" -- s.dependency "RCT-Folly" -- s.dependency "RCTRequired" -- s.dependency "RCTTypeSafety" -- s.dependency "ReactCommon/turbomodule/core" -+ install_modules_dependencies(s) - else - s.platform = :ios, '8.0' - s.source_files = 'ios/**/*.{h,m,mm}' From 0ba1e856057ddfd94a48865b6306ac0c7bfab116 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 21:26:55 +0700 Subject: [PATCH 31/50] chore: update firebase crashlytics patch --- ...android-enable-16kb-memory-page-size.patch | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch b/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch index 4136a37c28b9d..63a0433080932 100644 --- a/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch +++ b/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch @@ -1,5 +1,5 @@ diff --git a/node_modules/@react-native-firebase/crashlytics/android/build.gradle b/node_modules/@react-native-firebase/crashlytics/android/build.gradle -index 9b89ae7..36cc020 100644 +index 9b89ae7..3069e6c 100644 --- a/node_modules/@react-native-firebase/crashlytics/android/build.gradle +++ b/node_modules/@react-native-firebase/crashlytics/android/build.gradle @@ -67,6 +67,12 @@ project.ext { @@ -15,16 +15,16 @@ index 9b89ae7..36cc020 100644 } lintOptions { disable 'GradleCompatible' -@@ -76,6 +82,12 @@ android { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } -+ -+ packagingOptions { -+ jniLibs { -+ useLegacyPackaging true +@@ -87,7 +93,11 @@ dependencies { + api appProject + implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}") + implementation "com.google.firebase:firebase-crashlytics" +- implementation "com.google.firebase:firebase-crashlytics-ndk" ++ implementation ("com.google.firebase:firebase-crashlytics-ndk") { ++ version { ++ strictly "[19.0.2,)" + } + } } - repositories { + ReactNative.shared.applyPackageVersion() From bc1e0907c63ae2c26572a6dc1b3a0520e8e2cc74 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 21:42:19 +0700 Subject: [PATCH 32/50] Delete @rnmapbox+maps+10.1.39+001+initial.patch --- .../@rnmapbox+maps+10.1.39+001+initial.patch | 74 ------------------- 1 file changed, 74 deletions(-) delete mode 100644 patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+initial.patch diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+initial.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+initial.patch deleted file mode 100644 index 1fa7b137e569e..0000000000000 --- a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+initial.patch +++ /dev/null @@ -1,74 +0,0 @@ -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt -index 4c5a3a8..0cf3c5e 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt -@@ -248,10 +248,10 @@ class RNMBXImagesManager(private val mContext: ReactApplicationContext) : - } else { - val pair = array.getArray(i) - if (pair != null) { -- if (pair.size() != 2 || pair.getType(0) != ReadableType.Number || pair.getType(1) != ReadableType.Number) { -+ if (pair?.size() != 2 || pair.getType(0) != ReadableType.Number || pair.getType(1) != ReadableType.Number) { - Logger.e("RNMBXImages", "each element of stretch should be pair of 2 integers but was ${pair}") - } -- result.add(ImageStretches(pair.getDouble(0).toFloat(), pair.getDouble(1).toFloat())) -+ result.add(ImageStretches(pair!!.getDouble(0).toFloat(), pair.getDouble(1).toFloat())) - } else { - Logger.e("RNMBXImages", "each element of stretch should be an array but was null") - } -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt -index 15f4917..f518bd5 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt -@@ -40,7 +40,7 @@ fun ReadableArray.forEachString(action: (String) -> Unit) { - - fun ReadableArray.asArrayString(): Array { - val result = Array(size()) { -- getString(it).toString() -+ getString(it)!!.toString() - } - return result - } -diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt -index 8710d28..573e096 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt -@@ -83,7 +83,7 @@ class RNMBXStyleValue(config: ReadableMap) { - for (i in 0 until arr.size()) { - val item = arr.getMap(i) - if (item != null) { -- result.add(item.getDouble("value")) -+ result.add(item!!.getDouble("value")) - } else { - Logger.e("RNMBXStyleValue", "getFloatArray: null value for item: $i") - } -diff --git a/node_modules/@rnmapbox/maps/android/src/main/lifecycle-compat/v25/com/rnmapbox/rnmbx/components/mapview/LifecycleCompat.kt b/node_modules/@rnmapbox/maps/android/src/main/lifecycle-compat/v25/com/rnmapbox/rnmbx/components/mapview/LifecycleCompat.kt -index 80e49ed..4691073 100644 ---- a/node_modules/@rnmapbox/maps/android/src/main/lifecycle-compat/v25/com/rnmapbox/rnmbx/components/mapview/LifecycleCompat.kt -+++ b/node_modules/@rnmapbox/maps/android/src/main/lifecycle-compat/v25/com/rnmapbox/rnmbx/components/mapview/LifecycleCompat.kt -@@ -5,7 +5,7 @@ import android.view.View - import androidx.lifecycle.Lifecycle - import androidx.lifecycle.LifecycleOwner - import androidx.lifecycle.LifecycleRegistry --import androidx.lifecycle.ViewTreeLifecycleOwner -+import androidx.lifecycle.setViewTreeLifecycleOwner - - /** - * Lifecycle compatibility for Lifecycle 2.5 and older which uses getLifecycle() method -@@ -35,13 +35,14 @@ class RNMBXLifeCycle { - } - - // Lifecycle 2.5 and older uses method syntax -- override fun getLifecycle(): Lifecycle { -- return lifecycleRegistry -+ override val lifecycle: Lifecycle -+ get() = lifecycleRegistry - } - - } -- ViewTreeLifecycleOwner.set(view, lifecycleOwner) - } -+ view.setViewTreeLifecycleOwner(lifecycleOwner) -+ - lifecycleOwner?.handleLifecycleEvent(Lifecycle.Event.ON_START) - } - From 2081da00e2f425e929127798d82388cf56724f60 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 22:13:29 +0700 Subject: [PATCH 33/50] chore: new @rnmapbox/maps patch --- ...1+android-enable-16kb-memory-page-size.patch | 17 +++++++++++++++++ patches/@rnmapbox/maps/details.md | 9 +-------- 2 files changed, 18 insertions(+), 8 deletions(-) create mode 100644 patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+android-enable-16kb-memory-page-size.patch diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+android-enable-16kb-memory-page-size.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+android-enable-16kb-memory-page-size.patch new file mode 100644 index 0000000000000..7341f3a128d75 --- /dev/null +++ b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+android-enable-16kb-memory-page-size.patch @@ -0,0 +1,17 @@ +diff --git a/node_modules/@rnmapbox/maps/android/build.gradle b/node_modules/@rnmapbox/maps/android/build.gradle +index 09cee53..40ee8c7 100644 +--- a/node_modules/@rnmapbox/maps/android/build.gradle ++++ b/node_modules/@rnmapbox/maps/android/build.gradle +@@ -123,6 +123,12 @@ android { + versionCode 1 + versionName "1.0" + buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() ++ ++ externalNativeBuild { ++ cmake { ++ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ } ++ } + } + + compileOptions { \ No newline at end of file diff --git a/patches/@rnmapbox/maps/details.md b/patches/@rnmapbox/maps/details.md index 8574f55dfcd8e..0a1798db712ad 100644 --- a/patches/@rnmapbox/maps/details.md +++ b/patches/@rnmapbox/maps/details.md @@ -1,13 +1,6 @@ # `@rnmapbox/maps` patches -### [@rnmapbox+maps+10.1.33+001+initial.patch](@rnmapbox+maps+10.1.33+001+initial.patch) - -- Reason: This patch is needed for support with React Native version >=0.77 -- Upstream PR/issue: N/A -- E/App issue: N/A -- PR Introducing Patch: [#55861](https://github.com/Expensify/App/pull/55861) - -### [@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch](@rnmapbox+maps+10.1.33+002+android-jni-packaging-for-16kb-memory-page-size.patch) +### [@rnmapbox+maps+10.1.39+001+android-jni-packaging-for-16kb-memory-page-size.patch](@rnmapbox+maps+10.1.39+001+android-jni-packaging-for-16kb-memory-page-size.patch) - Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. - Upstream PR/issue: TODO From 9730a54804f1b3dc84d9ab9d36abb96a657b4101 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 22:19:17 +0700 Subject: [PATCH 34/50] Create check-android-16kb-memory-page-size-compatibility.sh --- ...oid-16kb-memory-page-size-compatibility.sh | 113 ++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100755 scripts/check-android-16kb-memory-page-size-compatibility.sh diff --git a/scripts/check-android-16kb-memory-page-size-compatibility.sh b/scripts/check-android-16kb-memory-page-size-compatibility.sh new file mode 100755 index 0000000000000..5c1f723a97efd --- /dev/null +++ b/scripts/check-android-16kb-memory-page-size-compatibility.sh @@ -0,0 +1,113 @@ +#!/bin/bash +progname="${0##*/}" +progname="${progname%.sh}" + +# usage: check_elf_alignment.sh [path to *.so files|path to *.apk] + +cleanup_trap() { + if [ -n "${tmp}" -a -d "${tmp}" ]; then + rm -rf ${tmp} + fi + exit $1 +} + +usage() { + echo "Host side script to check the ELF alignment of shared libraries." + echo "Shared libraries are reported ALIGNED when their ELF regions are" + echo "16 KB or 64 KB aligned. Otherwise they are reported as UNALIGNED." + echo + echo "Usage: ${progname} [input-path|input-APK|input-APEX]" +} + +if [ ${#} -ne 1 ]; then + usage + exit +fi + +case ${1} in + --help | -h | -\?) + usage + exit + ;; + + *) + dir="${1}" + ;; +esac + +if ! [ -f "${dir}" -o -d "${dir}" ]; then + echo "Invalid file: ${dir}" >&2 + exit 1 +fi + +if [[ "${dir}" == *.apk ]]; then + trap 'cleanup_trap' EXIT + + echo + echo "Recursively analyzing $dir" + echo + + if { zipalign --help 2>&1 | grep -q "\-P "; }; then + echo "=== APK zip-alignment ===" + zipalign -v -c -P 16 4 "${dir}" | egrep 'lib/arm64-v8a|lib/x86_64|Verification' + echo "=========================" + else + echo "NOTICE: Zip alignment check requires build-tools version 35.0.0-rc3 or higher." + echo " You can install the latest build-tools by running the below command" + echo " and updating your \$PATH:" + echo + echo " sdkmanager \"build-tools;35.0.0-rc3\"" + fi + + dir_filename=$(basename "${dir}") + tmp=$(mktemp -d -t "${dir_filename%.apk}_out_XXXXX") + unzip "${dir}" lib/* -d "${tmp}" >/dev/null 2>&1 + dir="${tmp}" +fi + +if [[ "${dir}" == *.apex ]]; then + trap 'cleanup_trap' EXIT + + echo + echo "Recursively analyzing $dir" + echo + + dir_filename=$(basename "${dir}") + tmp=$(mktemp -d -t "${dir_filename%.apex}_out_XXXXX") + deapexer extract "${dir}" "${tmp}" || { echo "Failed to deapex." && exit 1; } + dir="${tmp}" +fi + +RED="\e[31m" +GREEN="\e[32m" +ENDCOLOR="\e[0m" + +unaligned_libs=() + +echo +echo "=== ELF alignment ===" + +matches="$(find "${dir}" -type f)" +IFS=$'\n' +for match in $matches; do + # We could recursively call this script or rewrite it to though. + [[ "${match}" == *".apk" ]] && echo "WARNING: doesn't recursively inspect .apk file: ${match}" + [[ "${match}" == *".apex" ]] && echo "WARNING: doesn't recursively inspect .apex file: ${match}" + + [[ $(file "${match}") == *"ELF"* ]] || continue + + res="$(objdump -p "${match}" | grep LOAD | awk '{ print $NF }' | head -1)" + if [[ $res =~ 2\*\*(1[4-9]|[2-9][0-9]|[1-9][0-9]{2,}) ]]; then + echo -e "${match}: ${GREEN}ALIGNED${ENDCOLOR} ($res)" + else + echo -e "${match}: ${RED}UNALIGNED${ENDCOLOR} ($res)" + unaligned_libs+=("${match}") + fi +done + +if [ ${#unaligned_libs[@]} -gt 0 ]; then + echo -e "${RED}Found ${#unaligned_libs[@]} unaligned libs (only arm64-v8a/x86_64 libs need to be aligned).${ENDCOLOR}" +elif [ -n "${dir_filename}" ]; then + echo -e "ELF Verification Successful" +fi +echo "=====================" From 148eeaa30104f50f709ee3907525b6f2cec62418 Mon Sep 17 00:00:00 2001 From: Christoph Pader Date: Thu, 17 Jul 2025 22:37:04 +0700 Subject: [PATCH 35/50] chore: extract vision camrea bump --- package-lock.json | 2 +- package.json | 2 +- patches/react-native-vision-camera/details.md | 9 + .../react-native-vision-camera+4.6.1.patch | 5530 +++++++++++++++++ 4 files changed, 5541 insertions(+), 2 deletions(-) create mode 100644 patches/react-native-vision-camera/details.md create mode 100644 patches/react-native-vision-camera/react-native-vision-camera+4.6.1.patch diff --git a/package-lock.json b/package-lock.json index cb97436013b9b..900274274b4db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -128,7 +128,7 @@ "react-native-tab-view": "^4.1.0", "react-native-url-polyfill": "^2.0.0", "react-native-view-shot": "4.0.0", - "react-native-vision-camera": "^4.7.0", + "react-native-vision-camera": "^4.6.1", "react-native-web": "0.20.0", "react-native-webview": "13.13.1", "react-plaid-link": "3.3.2", diff --git a/package.json b/package.json index b908e6f50d649..dca6a228da195 100644 --- a/package.json +++ b/package.json @@ -198,7 +198,7 @@ "react-native-tab-view": "^4.1.0", "react-native-url-polyfill": "^2.0.0", "react-native-view-shot": "4.0.0", - "react-native-vision-camera": "^4.7.0", + "react-native-vision-camera": "^4.6.1", "react-native-web": "0.20.0", "react-native-webview": "13.13.1", "react-plaid-link": "3.3.2", diff --git a/patches/react-native-vision-camera/details.md b/patches/react-native-vision-camera/details.md new file mode 100644 index 0000000000000..b8042f3613701 --- /dev/null +++ b/patches/react-native-vision-camera/details.md @@ -0,0 +1,9 @@ +# `react-native-vision-camera` patches + +### [react-native-vision-camera+4.6.1.patch](react-native-vision-camera+4.6.1.patch) + +- Reason: Fixes an issue in VisionCamera where the `CameraSession` doesn't get de-initialized and recycled when the screen gets popped/unmounted from the Navigation stack in `@react-navigation/native-stack`. +- Upstream PR/issue: N/A (This will be fixed once VisionCamera is migrated to Nitro Views) +- E/App issue: [#49988](https://github.com/Expensify/App/issues/49988) | [#37891](https://github.com/Expensify/App/pull/37891) +- PR Introducing Patch: [#49936](https://github.com/Expensify/App/pull/49936) +- PR Updating Patch: [#52880](https://github.com/Expensify/App/pull/52880) | [#55861](https://github.com/Expensify/App/pull/55861) diff --git a/patches/react-native-vision-camera/react-native-vision-camera+4.6.1.patch b/patches/react-native-vision-camera/react-native-vision-camera+4.6.1.patch new file mode 100644 index 0000000000000..455e1a1bd0913 --- /dev/null +++ b/patches/react-native-vision-camera/react-native-vision-camera+4.6.1.patch @@ -0,0 +1,5530 @@ +diff --git a/node_modules/react-native-vision-camera/android/.editorconfig b/node_modules/react-native-vision-camera/android/.editorconfig +new file mode 100644 +index 0000000..2f08d6d +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.editorconfig +@@ -0,0 +1,15 @@ ++[*.{kt,kts}] ++indent_style=space ++indent_size=2 ++continuation_indent_size=4 ++insert_final_newline=true ++max_line_length=140 ++ktlint_code_style=android_studio ++ktlint_standard=enabled ++ktlint_experimental=enabled ++ktlint_standard_filename=disabled # dont require PascalCase filenames ++ktlint_standard_no-wildcard-imports=disabled # allow .* imports ++ktlint_function_signature_rule_force_multiline_when_parameter_count_greater_or_equal_than=5 ++ktlint_function_signature_body_expression_wrapping=multiline ++ij_kotlin_allow_trailing_comma_on_call_site=false ++ij_kotlin_allow_trailing_comma=false +diff --git a/node_modules/react-native-vision-camera/android/.project b/node_modules/react-native-vision-camera/android/.project +new file mode 100644 +index 0000000..0e0a1ba +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.project +@@ -0,0 +1,17 @@ ++ ++ ++ android_ ++ Project android_ created by Buildship. ++ ++ ++ ++ ++ org.eclipse.buildship.core.gradleprojectbuilder ++ ++ ++ ++ ++ ++ org.eclipse.buildship.core.gradleprojectnature ++ ++ +diff --git a/node_modules/react-native-vision-camera/android/gradlew b/node_modules/react-native-vision-camera/android/gradlew +new file mode 100644 +index 0000000..1b6c787 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/gradlew +@@ -0,0 +1,234 @@ ++#!/bin/sh ++ ++# ++# Copyright © 2015-2021 the original authors. ++# ++# Licensed under the Apache License, Version 2.0 (the "License"); ++# you may not use this file except in compliance with the License. ++# You may obtain a copy of the License at ++# ++# https://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++# ++ ++############################################################################## ++# ++# Gradle start up script for POSIX generated by Gradle. ++# ++# Important for running: ++# ++# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is ++# noncompliant, but you have some other compliant shell such as ksh or ++# bash, then to run this script, type that shell name before the whole ++# command line, like: ++# ++# ksh Gradle ++# ++# Busybox and similar reduced shells will NOT work, because this script ++# requires all of these POSIX shell features: ++# * functions; ++# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», ++# «${var#prefix}», «${var%suffix}», and «$( cmd )»; ++# * compound commands having a testable exit status, especially «case»; ++# * various built-in commands including «command», «set», and «ulimit». ++# ++# Important for patching: ++# ++# (2) This script targets any POSIX shell, so it avoids extensions provided ++# by Bash, Ksh, etc; in particular arrays are avoided. ++# ++# The "traditional" practice of packing multiple parameters into a ++# space-separated string is a well documented source of bugs and security ++# problems, so this is (mostly) avoided, by progressively accumulating ++# options in "$@", and eventually passing that to Java. ++# ++# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, ++# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; ++# see the in-line comments for details. ++# ++# There are tweaks for specific operating systems such as AIX, CygWin, ++# Darwin, MinGW, and NonStop. ++# ++# (3) This script is generated from the Groovy template ++# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt ++# within the Gradle project. ++# ++# You can find Gradle at https://github.com/gradle/gradle/. ++# ++############################################################################## ++ ++# Attempt to set APP_HOME ++ ++# Resolve links: $0 may be a link ++app_path=$0 ++ ++# Need this for daisy-chained symlinks. ++while ++ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path ++ [ -h "$app_path" ] ++do ++ ls=$( ls -ld "$app_path" ) ++ link=${ls#*' -> '} ++ case $link in #( ++ /*) app_path=$link ;; #( ++ *) app_path=$APP_HOME$link ;; ++ esac ++done ++ ++APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit ++ ++APP_NAME="Gradle" ++APP_BASE_NAME=${0##*/} ++ ++# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. ++DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' ++ ++# Use the maximum available, or set MAX_FD != -1 to use that value. ++MAX_FD=maximum ++ ++warn () { ++ echo "$*" ++} >&2 ++ ++die () { ++ echo ++ echo "$*" ++ echo ++ exit 1 ++} >&2 ++ ++# OS specific support (must be 'true' or 'false'). ++cygwin=false ++msys=false ++darwin=false ++nonstop=false ++case "$( uname )" in #( ++ CYGWIN* ) cygwin=true ;; #( ++ Darwin* ) darwin=true ;; #( ++ MSYS* | MINGW* ) msys=true ;; #( ++ NONSTOP* ) nonstop=true ;; ++esac ++ ++CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar ++ ++ ++# Determine the Java command to use to start the JVM. ++if [ -n "$JAVA_HOME" ] ; then ++ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then ++ # IBM's JDK on AIX uses strange locations for the executables ++ JAVACMD=$JAVA_HOME/jre/sh/java ++ else ++ JAVACMD=$JAVA_HOME/bin/java ++ fi ++ if [ ! -x "$JAVACMD" ] ; then ++ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME ++ ++Please set the JAVA_HOME variable in your environment to match the ++location of your Java installation." ++ fi ++else ++ JAVACMD=java ++ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. ++ ++Please set the JAVA_HOME variable in your environment to match the ++location of your Java installation." ++fi ++ ++# Increase the maximum file descriptors if we can. ++if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then ++ case $MAX_FD in #( ++ max*) ++ MAX_FD=$( ulimit -H -n ) || ++ warn "Could not query maximum file descriptor limit" ++ esac ++ case $MAX_FD in #( ++ '' | soft) :;; #( ++ *) ++ ulimit -n "$MAX_FD" || ++ warn "Could not set maximum file descriptor limit to $MAX_FD" ++ esac ++fi ++ ++# Collect all arguments for the java command, stacking in reverse order: ++# * args from the command line ++# * the main class name ++# * -classpath ++# * -D...appname settings ++# * --module-path (only if needed) ++# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. ++ ++# For Cygwin or MSYS, switch paths to Windows format before running java ++if "$cygwin" || "$msys" ; then ++ APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) ++ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) ++ ++ JAVACMD=$( cygpath --unix "$JAVACMD" ) ++ ++ # Now convert the arguments - kludge to limit ourselves to /bin/sh ++ for arg do ++ if ++ case $arg in #( ++ -*) false ;; # don't mess with options #( ++ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath ++ [ -e "$t" ] ;; #( ++ *) false ;; ++ esac ++ then ++ arg=$( cygpath --path --ignore --mixed "$arg" ) ++ fi ++ # Roll the args list around exactly as many times as the number of ++ # args, so each arg winds up back in the position where it started, but ++ # possibly modified. ++ # ++ # NB: a `for` loop captures its iteration list before it begins, so ++ # changing the positional parameters here affects neither the number of ++ # iterations, nor the values presented in `arg`. ++ shift # remove old arg ++ set -- "$@" "$arg" # push replacement arg ++ done ++fi ++ ++# Collect all arguments for the java command; ++# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of ++# shell script including quotes and variable substitutions, so put them in ++# double quotes to make sure that they get re-expanded; and ++# * put everything else in single quotes, so that it's not re-expanded. ++ ++set -- \ ++ "-Dorg.gradle.appname=$APP_BASE_NAME" \ ++ -classpath "$CLASSPATH" \ ++ org.gradle.wrapper.GradleWrapperMain \ ++ "$@" ++ ++# Use "xargs" to parse quoted args. ++# ++# With -n1 it outputs one arg per line, with the quotes and backslashes removed. ++# ++# In Bash we could simply go: ++# ++# readarray ARGS < <( xargs -n1 <<<"$var" ) && ++# set -- "${ARGS[@]}" "$@" ++# ++# but POSIX shell has neither arrays nor command substitution, so instead we ++# post-process each arg (as a line of input to sed) to backslash-escape any ++# character that might be a shell metacharacter, then use eval to reverse ++# that process (while maintaining the separation between arguments), and wrap ++# the whole thing up as a single "set" statement. ++# ++# This will of course break if any of these variables contains a newline or ++# an unmatched quote. ++# ++ ++eval "set -- $( ++ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | ++ xargs -n1 | ++ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | ++ tr '\n' ' ' ++ )" '"$@"' ++ ++exec "$JAVACMD" "$@" +diff --git a/node_modules/react-native-vision-camera/android/gradlew.bat b/node_modules/react-native-vision-camera/android/gradlew.bat +new file mode 100644 +index 0000000..107acd3 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/gradlew.bat +@@ -0,0 +1,89 @@ ++@rem ++@rem Copyright 2015 the original author or authors. ++@rem ++@rem Licensed under the Apache License, Version 2.0 (the "License"); ++@rem you may not use this file except in compliance with the License. ++@rem You may obtain a copy of the License at ++@rem ++@rem https://www.apache.org/licenses/LICENSE-2.0 ++@rem ++@rem Unless required by applicable law or agreed to in writing, software ++@rem distributed under the License is distributed on an "AS IS" BASIS, ++@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++@rem See the License for the specific language governing permissions and ++@rem limitations under the License. ++@rem ++ ++@if "%DEBUG%" == "" @echo off ++@rem ########################################################################## ++@rem ++@rem Gradle startup script for Windows ++@rem ++@rem ########################################################################## ++ ++@rem Set local scope for the variables with windows NT shell ++if "%OS%"=="Windows_NT" setlocal ++ ++set DIRNAME=%~dp0 ++if "%DIRNAME%" == "" set DIRNAME=. ++set APP_BASE_NAME=%~n0 ++set APP_HOME=%DIRNAME% ++ ++@rem Resolve any "." and ".." in APP_HOME to make it shorter. ++for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi ++ ++@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. ++set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" ++ ++@rem Find java.exe ++if defined JAVA_HOME goto findJavaFromJavaHome ++ ++set JAVA_EXE=java.exe ++%JAVA_EXE% -version >NUL 2>&1 ++if "%ERRORLEVEL%" == "0" goto execute ++ ++echo. ++echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. ++echo. ++echo Please set the JAVA_HOME variable in your environment to match the ++echo location of your Java installation. ++ ++goto fail ++ ++:findJavaFromJavaHome ++set JAVA_HOME=%JAVA_HOME:"=% ++set JAVA_EXE=%JAVA_HOME%/bin/java.exe ++ ++if exist "%JAVA_EXE%" goto execute ++ ++echo. ++echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% ++echo. ++echo Please set the JAVA_HOME variable in your environment to match the ++echo location of your Java installation. ++ ++goto fail ++ ++:execute ++@rem Setup the command line ++ ++set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar ++ ++ ++@rem Execute Gradle ++"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* ++ ++:end ++@rem End local scope for the variables with windows NT shell ++if "%ERRORLEVEL%"=="0" goto mainEnd ++ ++:fail ++rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of ++rem the _cmd.exe /c_ return code! ++if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 ++exit /b 1 ++ ++:mainEnd ++if "%OS%"=="Windows_NT" endlocal ++ ++:omega +diff --git a/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerDelegate.java b/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerDelegate.java +new file mode 100644 +index 0000000..a1bed79 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerDelegate.java +@@ -0,0 +1,113 @@ ++/** ++* 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.ReadableMap; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.BaseViewManagerInterface; ++ ++public class CameraViewManagerDelegate & CameraViewManagerInterface> extends aseViewManagerDelegate { ++ public CameraViewManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "enableGpuBuffers": ++ mViewManager.setEnableGpuBuffers(view, value == null ? false : (boolean) value); ++ break; ++ case "androidPreviewViewType": ++ mViewManager.setAndroidPreviewViewType(view, value == null ? null : (String) value); ++ break; ++ case "codeScannerOptions": ++ mViewManager.setCodeScannerOptions(view, (ReadableMap) value); ++ break; ++ case "cameraId": ++ mViewManager.setCameraId(view, value == null ? null : (String) value); ++ break; ++ case "enableFrameProcessor": ++ mViewManager.setEnableFrameProcessor(view, value == null ? false : (boolean) value); ++ break; ++ case "enableLocation": ++ mViewManager.setEnableLocation(view, value == null ? false : (boolean) value); ++ break; ++ case "enableBufferCompression": ++ mViewManager.setEnableBufferCompression(view, value == null ? false : (boolean) value); ++ break; ++ case "photoQualityBalance": ++ mViewManager.setPhotoQualityBalance(view, value == null ? null : (String) value); ++ break; ++ case "isActive": ++ mViewManager.setIsActive(view, value == null ? false : (boolean) value); ++ break; ++ case "photo": ++ mViewManager.setPhoto(view, value == null ? false : (boolean) value); ++ break; ++ case "video": ++ mViewManager.setVideo(view, value == null ? false : (boolean) value); ++ break; ++ case "audio": ++ mViewManager.setAudio(view, value == null ? false : (boolean) value); ++ break; ++ case "torch": ++ mViewManager.setTorch(view, value == null ? null : (String) value); ++ break; ++ case "zoom": ++ mViewManager.setZoom(view, value == null ? 0f : ((Double) value).doubleValue()); ++ break; ++ case "exposure": ++ mViewManager.setExposure(view, value == null ? 0f : ((Double) value).doubleValue()); ++ break; ++ case "enableZoomGesture": ++ mViewManager.setEnableZoomGesture(view, value == null ? false : (boolean) value); ++ break; ++ case "enableFpsGraph": ++ mViewManager.setEnableFpsGraph(view, value == null ? false : (boolean) value); ++ break; ++ case "resizeMode": ++ mViewManager.setResizeMode(view, value == null ? null : (String) value); ++ break; ++ case "format": ++ mViewManager.setFormat(view, (ReadableMap) value); ++ break; ++ case "pixelFormat": ++ mViewManager.setPixelFormat(view, value == null ? null : (String) value); ++ break; ++ case "fps": ++ mViewManager.setFps(view, value == null ? 0 : ((Double) value).intValue()); ++ break; ++ case "videoHdr": ++ mViewManager.setVideoHdr(view, value == null ? false : (boolean) value); ++ break; ++ case "photoHdr": ++ mViewManager.setPhotoHdr(view, value == null ? false : (boolean) value); ++ break; ++ case "lowLightBoost": ++ mViewManager.setLowLightBoost(view, value == null ? false : (boolean) value); ++ break; ++ case "videoStabilizationMode": ++ mViewManager.setVideoStabilizationMode(view, value == null ? null : (String) value); ++ break; ++ case "enableDepthData": ++ mViewManager.setEnableDepthData(view, value == null ? false : (boolean) value); ++ break; ++ case "enablePortraitEffectsMatteDelivery": ++ mViewManager.setEnablePortraitEffectsMatteDelivery(view, value == null ? false : (boolean) value); ++ break; ++ case "orientation": ++ mViewManager.setOrientation(view, value == null ? null : (String) value); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerInterface.java b/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerInterface.java +new file mode 100644 +index 0000000..94079b2 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerInterface.java +@@ -0,0 +1,45 @@ ++/** ++* 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.bridge.ReadableMap; ++ ++public interface CameraViewManagerInterface { ++ void setEnableGpuBuffers(T view, boolean value); ++ void setAndroidPreviewViewType(T view, @Nullable String value); ++ void setCodeScannerOptions(T view, @Nullable ReadableMap value); ++ void setCameraId(T view, @Nullable String value); ++ void setEnableFrameProcessor(T view, boolean value); ++ void setEnableLocation(T view, boolean value); ++ void setEnableBufferCompression(T view, boolean value); ++ void setPhotoQualityBalance(T view, @Nullable String value); ++ void setIsActive(T view, boolean value); ++ void setPhoto(T view, boolean value); ++ void setVideo(T view, boolean value); ++ void setAudio(T view, boolean value); ++ void setTorch(T view, @Nullable String value); ++ void setZoom(T view, double value); ++ void setExposure(T view, double value); ++ void setEnableZoomGesture(T view, boolean value); ++ void setEnableFpsGraph(T view, boolean value); ++ void setResizeMode(T view, @Nullable String value); ++ void setFormat(T view, @Nullable ReadableMap value); ++ void setPixelFormat(T view, @Nullable String value); ++ void setFps(T view, int value); ++ void setVideoHdr(T view, boolean value); ++ void setPhotoHdr(T view, boolean value); ++ void setLowLightBoost(T view, boolean value); ++ void setVideoStabilizationMode(T view, @Nullable String value); ++ void setEnableDepthData(T view, boolean value); ++ void setEnablePortraitEffectsMatteDelivery(T view, boolean value); ++ void setOrientation(T view, @Nullable String value); ++} +diff --git a/node_modules/react-native-vision-camera/android/settings.gradle b/node_modules/react-native-vision-camera/android/settings.gradle +new file mode 100644 +index 0000000..56a6c3d +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/settings.gradle +@@ -0,0 +1,3 @@ ++rootProject.name = 'VisionCamera' ++ ++include ':VisionCamera' +diff --git a/node_modules/react-native-vision-camera/android/src/main/.DS_Store b/node_modules/react-native-vision-camera/android/src/main/.DS_Store +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt b/node_modules/react-native-vision-camera/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt +index 862c03a..f892ab7 100644 +--- a/node_modules/react-native-vision-camera/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt ++++ b/node_modules/react-native-vision-camera/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt +@@ -90,7 +90,9 @@ class CameraSession(internal val context: Context, internal val callback: Callba + } + } + +- override fun getLifecycle(): Lifecycle = lifecycleRegistry ++ override val lifecycle: Lifecycle ++ get() = lifecycleRegistry ++// override fun getLifecycle(): Lifecycle = lifecycleRegistry + + /** + * Configures the [CameraSession] with new values in one batch. +diff --git a/node_modules/react-native-vision-camera/ios/.swiftformat b/node_modules/react-native-vision-camera/ios/.swiftformat +new file mode 100644 +index 0000000..95e71c1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/ios/.swiftformat +@@ -0,0 +1,12 @@ ++--allman false ++--indent 2 ++--exclude Pods,Generated ++ ++--disable andOperator ++--disable redundantReturn ++--disable wrapMultilineStatementBraces ++--disable organizeDeclarations ++ ++--enable markTypes ++ ++--enable isEmpty +diff --git a/node_modules/react-native-vision-camera/ios/.swiftlint.yml b/node_modules/react-native-vision-camera/ios/.swiftlint.yml +new file mode 100644 +index 0000000..1a72686 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/ios/.swiftlint.yml +@@ -0,0 +1,52 @@ ++disabled_rules: ++ - identifier_name ++ - trailing_comma ++ - todo ++ - type_body_length ++ - cyclomatic_complexity ++ - function_body_length ++ - for_where ++opt_in_rules: ++ - contains_over_filter_count ++ - contains_over_filter_is_empty ++ - contains_over_first_not_nil ++ - contains_over_range_nil_comparison ++ - empty_collection_literal ++ - empty_count ++ - empty_string ++ - first_where ++ - flatmap_over_map_reduce ++ - last_where ++ - reduce_boolean ++ - reduce_into ++ - yoda_condition ++ - vertical_whitespace_opening_braces ++ - vertical_whitespace_closing_braces ++ - vertical_parameter_alignment_on_call ++ - untyped_error_in_catch ++ - unowned_variable_capture ++ - unavailable_function ++ - switch_case_on_newline ++ - static_operator ++ - strict_fileprivate ++ - sorted_imports ++ - sorted_first_last ++ - required_enum_case ++ - redundant_type_annotation ++ - redundant_nil_coalescing ++ - attributes ++ - convenience_type ++analyzer_rules: ++ - explicit_self ++ - unused_declaration ++ - unused_import ++ ++excluded: # paths to ignore during linting. Takes precedence over `included`. ++ - Pods ++ ++# Adjust rule numbers ++line_length: 160 ++file_length: 500 ++ ++# reporter type (xcode, json, csv, checkstyle, codeclimate, junit, html, emoji, sonarqube, markdown, github-actions-logging) ++reporter: 'xcode' +diff --git a/node_modules/react-native-vision-camera/ios/RNCameraView.h b/node_modules/react-native-vision-camera/ios/RNCameraView.h +new file mode 100644 +index 0000000..46c2c2c +--- /dev/null ++++ b/node_modules/react-native-vision-camera/ios/RNCameraView.h +@@ -0,0 +1,14 @@ ++// This guard prevent this file to be compiled in the old architecture. ++#ifdef RCT_NEW_ARCH_ENABLED ++#import ++#import ++ ++ ++NS_ASSUME_NONNULL_BEGIN ++ ++@interface RNCameraView : RCTViewComponentView ++@end ++ ++NS_ASSUME_NONNULL_END ++ ++#endif /* RCT_NEW_ARCH_ENABLED */ +diff --git a/node_modules/react-native-vision-camera/ios/RNCameraView.mm b/node_modules/react-native-vision-camera/ios/RNCameraView.mm +new file mode 100644 +index 0000000..20f4996 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/ios/RNCameraView.mm +@@ -0,0 +1,394 @@ ++// This guard prevent the code from being compiled in the old architecture ++#ifdef RCT_NEW_ARCH_ENABLED ++#import ++ ++#import ++#import ++#import ++#import ++ ++#import "RCTFabricComponentsPlugins.h" ++#import ++#import ++#import ++#import ++ ++#ifdef USE_FRAMEWORKS ++#import ++#else ++#import "VisionCamera-Swift.h" ++#endif ++ ++@interface RNCameraView : RCTViewComponentView ++@end ++ ++ ++using namespace facebook::react; ++ ++@implementation RNCameraView { ++ CameraView * _view; ++} ++ +++ (ComponentDescriptorProvider)componentDescriptorProvider ++{ ++ return concreteComponentDescriptorProvider(); ++} ++ ++- (void) initCamera { ++ static const auto defaultProps = std::make_shared(); ++ _props = defaultProps; ++ ++ // The remaining part of the initializer is standard bjective-C code to create views and layout them with utoLayout. Here we can change whatever we want to. ++ _view = [[CameraView alloc] init]; ++ _view.delegate = self; ++ ++ self.contentView = _view; ++} ++ ++- (instancetype)initWithFrame:(CGRect)frame ++{ ++ self = [super initWithFrame:frame]; ++ if (self) { ++ [self initCamera]; ++ } ++ ++ return self; ++} ++ ++- (void) prepareForRecycle { ++ [super prepareForRecycle]; ++ ++ self.contentView = _view; ++ _view.delegate = nil; ++ _view = nil; ++ self.contentView = nil; ++} ++ ++// why we need this func -> https://reactnative.dev/docs/next/the-new-architecture/pillars-fabric-components#write-the-native-ios-code ++- (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps ++{ ++ if (_view == nil) { ++ [self initCamera]; ++ } ++ ++ const auto &newViewProps = *std::static_pointer_cast(props); ++ const auto &oldViewProps = *std::static_pointer_cast(_props); ++ ++ NSMutableArray* changedProps = [[NSMutableArray alloc] init]; ++ ++ if(oldViewProps.isActive != newViewProps.isActive){ ++ _view.isActive = newViewProps.isActive; ++ [changedProps addObject:@"isActive"]; ++ } ++ if(oldViewProps.cameraId != newViewProps.cameraId){ ++ _view.cameraId = RCTNSStringFromString(newViewProps.cameraId); ++ [changedProps addObject:@"cameraId"]; ++ } ++ if(oldViewProps.photoQualityBalance != newViewProps.photoQualityBalance){ ++ _view.photoQualityBalance = RCTNSStringFromString(newViewProps.photoQualityBalance); ++ [changedProps addObject:@"photoQualityBalance"]; ++ } ++ if(oldViewProps.enableDepthData != newViewProps.enableDepthData){ ++ _view.enableDepthData = newViewProps.enableDepthData; ++ [changedProps addObject:@"enableDepthData"]; ++ } ++ if(oldViewProps.enablePortraitEffectsMatteDelivery != newViewProps.enablePortraitEffectsMatteDelivery){ ++ _view.enablePortraitEffectsMatteDelivery = newViewProps.enablePortraitEffectsMatteDelivery; ++ [changedProps addObject:@"enablePortraitEffectsMatteDelivery"]; ++ } ++ if(oldViewProps.photo != newViewProps.photo){ ++ _view.photo = [NSNumber numberWithBool:newViewProps.photo]; ++ [changedProps addObject:@"photo"]; ++ } ++ if(oldViewProps.video != newViewProps.video){ ++ _view.video = [NSNumber numberWithBool:newViewProps.video]; ++ [changedProps addObject:@"video"]; ++ } ++ if(oldViewProps.audio != newViewProps.audio){ ++ _view.audio = [NSNumber numberWithBool:newViewProps.audio]; ++ [changedProps addObject:@"audio"]; ++ } ++ if(oldViewProps.enableFrameProcessor != newViewProps.enableFrameProcessor){ ++ _view.enableFrameProcessor = newViewProps.enableFrameProcessor; ++ [changedProps addObject:@"enableFrameProcessor"]; ++ } ++ if(oldViewProps.enableLocation != newViewProps.enableLocation){ ++ _view.enableLocation = newViewProps.enableLocation; ++ [changedProps addObject:@"enableLocation"]; ++ } ++ if(oldViewProps.enableBufferCompression != newViewProps.enableBufferCompression){ ++ _view.enableBufferCompression = newViewProps.enableBufferCompression; ++ [changedProps addObject:@"enableBufferCompression"]; ++ } ++ if(oldViewProps.fps != newViewProps.fps){ ++ _view.fps = [NSNumber numberWithInt:newViewProps.fps]; ++ [changedProps addObject:@"fps"]; ++ } ++ if(oldViewProps.videoHdr != newViewProps.videoHdr){ ++ _view.videoHdr = newViewProps.videoHdr; ++ [changedProps addObject:@"videoHdr"]; ++ } ++ if(oldViewProps.photoHdr != newViewProps.photoHdr){ ++ _view.photoHdr = newViewProps.photoHdr; ++ [changedProps addObject:@"photoHdr"]; ++ } ++ if(oldViewProps.lowLightBoost != newViewProps.lowLightBoost){ ++ _view.lowLightBoost = newViewProps.lowLightBoost; ++ [changedProps addObject:@"lowLightBoost"]; ++ } ++ if(oldViewProps.videoStabilizationMode != newViewProps.videoStabilizationMode){ ++ _view.videoStabilizationMode = RCTNSStringFromString(newViewProps.videoStabilizationMode); ++ [changedProps addObject:@"videoStabilizationMode"]; ++ } ++ if(oldViewProps.torch != newViewProps.torch){ ++ _view.torch = RCTNSStringFromString(newViewProps.torch); ++ [changedProps addObject:@"torch"]; ++ } ++ if(oldViewProps.orientation != newViewProps.orientation){ ++ _view.orientation = RCTNSStringFromString(newViewProps.orientation); ++ [changedProps addObject:@"orientation"]; ++ } ++ if(oldViewProps.resizeMode != newViewProps.resizeMode){ ++ _view.resizeMode = RCTNSStringFromString(newViewProps.resizeMode); ++ [changedProps addObject:@"resizeMode"]; ++ } ++ if(oldViewProps.pixelFormat != newViewProps.pixelFormat){ ++ _view.pixelFormat = RCTNSStringFromString(newViewProps.pixelFormat); ++ [changedProps addObject:@"pixelFormat"]; ++ } ++ if(oldViewProps.zoom != newViewProps.zoom){ ++ _view.zoom = [NSNumber numberWithDouble:newViewProps.zoom]; ++ [changedProps addObject:@"zoom"]; ++ } ++ if(oldViewProps.exposure != newViewProps.exposure){ ++ _view.exposure = [NSNumber numberWithDouble:newViewProps.exposure]; ++ [changedProps addObject:@"exposure"]; ++ } ++ if(oldViewProps.enableZoomGesture != newViewProps.enableZoomGesture){ ++ _view.enableZoomGesture = newViewProps.enableZoomGesture; ++ [changedProps addObject:@"enableZoomGesture"]; ++ } ++ if(oldViewProps.enableFpsGraph != newViewProps.enableFpsGraph){ ++ _view.enableFpsGraph = newViewProps.enableFpsGraph; ++ [changedProps addObject:@"enableFpsGraph"]; ++ } ++ ++ ++ if(_view.format == nil){ ++ _view.format =[ [NSMutableDictionary alloc] init]; ++ } ++ ++ ++ //Checking format props, TODO: find cleaner way to do it ++ if(oldViewProps.format.supportsDepthCapture != newViewProps.format.supportsDepthCapture){ ++ NSNumber* supportsDepthCapture = newViewProps.format.supportsDepthCapture ? @1 : @0; ++ [_view.format setValue:supportsDepthCapture forKey:@"supportsDepthCapture"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.autoFocusSystem != newViewProps.format.autoFocusSystem){ ++ [_view.format setValue:RCTNSStringFromString(newViewProps.format.autoFocusSystem) forKey:@"autoFocusSystem"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.pixelFormats.size() != newViewProps.format.pixelFormats.size()){ ++ NSMutableArray* newPixelFormats = [[NSMutableArray alloc] init]; ++ for(int i = 0; i < newViewProps.format.pixelFormats.size(); i++){ ++ [newPixelFormats addObject:RCTNSStringFromString(newViewProps.format.pixelFormats.at(i))]; ++ } ++ [_view.format setValue:newPixelFormats forKey:@"pixelFormats"]; ++ [changedProps addObject:@"format"]; ++ } ++ ++ if(oldViewProps.format.videoStabilizationModes.size() != newViewProps.format.videoStabilizationModes.size()){ ++ NSMutableArray* newVideoStabilizationModes = [[NSMutableArray alloc] init]; ++ for(int i = 0; i < newViewProps.format.videoStabilizationModes.size(); i++){ ++ [newVideoStabilizationModes addObject:RCTNSStringFromString(newViewProps.format.videoStabilizationModes.at(i))]; ++ } ++ [_view.format setValue:newVideoStabilizationModes forKey:@"videoStabilizationModes"]; ++ [changedProps addObject:@"format"]; ++ } ++ ++ if(oldViewProps.format.photoHeight != newViewProps.format.photoHeight){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.photoHeight] forKey:@"photoHeight"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.photoWidth != newViewProps.format.photoWidth){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.photoWidth] forKey:@"photoWidth"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.videoHeight != newViewProps.format.videoHeight){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.videoHeight] forKey:@"videoHeight"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.videoWidth != newViewProps.format.videoWidth){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.videoWidth] forKey:@"videoWidth"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.maxISO != newViewProps.format.maxISO){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.maxISO] forKey:@"maxISO"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.minISO != newViewProps.format.minISO){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.minISO] forKey:@"minISO"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.maxFps != newViewProps.format.maxFps){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.maxFps] forKey:@"maxFps"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.minFps != newViewProps.format.minFps){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.minFps] forKey:@"minFps"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.fieldOfView != newViewProps.format.fieldOfView){ ++ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.fieldOfView] forKey:@"fieldOfView"]; ++ [changedProps addObject:@"format"]; ++ } ++ ++ if(oldViewProps.format.supportsVideoHDR != newViewProps.format.supportsVideoHDR){ ++ NSNumber* supportsVideoHDR = newViewProps.format.supportsVideoHDR ? @1 : @0; ++ [_view.format setValue:supportsVideoHDR forKey:@"supportsVideoHDR"]; ++ [changedProps addObject:@"format"]; ++ } ++ if(oldViewProps.format.supportsPhotoHDR != newViewProps.format.supportsPhotoHDR){ ++ NSNumber* supportsPhotoHDR = newViewProps.format.supportsPhotoHDR ? @1 : @0; ++ [_view.format setValue:supportsPhotoHDR forKey:@"supportsPhotoHDR"]; ++ [changedProps addObject:@"format"]; ++ } ++ ++ if (_view.format.count == 0) { ++ _view.format = nil; ++ } ++ ++ if(_view.codeScannerOptions == nil){ ++ _view.codeScannerOptions =[[NSMutableDictionary alloc] init]; ++ } ++ ++ if(oldViewProps.codeScannerOptions.codeTypes.size() != newViewProps.codeScannerOptions.codeTypes.size()){ ++ NSMutableArray* newCodeTypes = [[NSMutableArray alloc] init]; ++ for(int i = 0; i < newViewProps.codeScannerOptions.codeTypes.size(); i++){ ++ [newCodeTypes addObject:RCTNSStringFromString(newViewProps.codeScannerOptions.codeTypes.at(i))]; ++ } ++ [_view.codeScannerOptions setValue:newCodeTypes forKey:@"codeTypes"]; ++ [changedProps addObject:@"codeScannerOptions"]; ++ } ++ ++ if(oldViewProps.codeScannerOptions.interval != newViewProps.codeScannerOptions.interval){ ++ [_view.codeScannerOptions setValue:[NSNumber numberWithDouble:newViewProps.codeScannerOptions.interval] forKey:@"interval"]; ++ [changedProps addObject:@"codeScannerOptions"]; ++ } ++ ++ if( ++ oldViewProps.codeScannerOptions.regionOfInterest.x != newViewProps.codeScannerOptions.regionOfInterest.x || ++ oldViewProps.codeScannerOptions.regionOfInterest.y != newViewProps.codeScannerOptions.regionOfInterest.y || ++ oldViewProps.codeScannerOptions.regionOfInterest.width != newViewProps.codeScannerOptions.regionOfInterest.width || ++ oldViewProps.codeScannerOptions.regionOfInterest.height != newViewProps.codeScannerOptions.regionOfInterest.height ++ ){ ++ NSDictionary *newRegionOfInterest = @{ ++ @"x": @(newViewProps.codeScannerOptions.regionOfInterest.x), ++ @"y": @(newViewProps.codeScannerOptions.regionOfInterest.y), ++ @"width": @(newViewProps.codeScannerOptions.regionOfInterest.width), ++ @"height": @(newViewProps.codeScannerOptions.regionOfInterest.height), ++ }; ++ [_view.codeScannerOptions setValue:newRegionOfInterest forKey:@"regionOfInterest"]; ++ [changedProps addObject:@"codeScannerOptions"]; ++ } ++ ++ if (_view.codeScannerOptions.count == 0) { ++ _view.codeScannerOptions = nil; ++ } ++ ++ [_view didSetProps:changedProps]; ++ ++ [super updateProps:props oldProps:oldProps]; ++} ++ ++- (void)onViewReady{ ++ if(_eventEmitter){ ++ std::dynamic_pointer_cast(_eventEmitter) ++ ->onViewReady( CameraViewEventEmitter::OnViewReady{}); ++ } ++} ++ ++- (void)onErrorWithError:(NSDictionary *)error{ ++ if(_eventEmitter){ ++ std::dynamic_pointer_cast(_eventEmitter) ++ ->onError( CameraViewEventEmitter::OnError{ ++ .code = std::string([(error != nil ? [error objectForKey:@"code"] : @"") UTF8String]), ++ .message = std::string([(error != nil ? [error objectForKey:@"message"] : @"") UTF8String]), ++ .cause = { ++ .code = std::string([(error != nil ? [[error objectForKey:@"cause"] objectForKey:@"code"] : @"") UTF8String]), // TODO: Further ecure type safety to prevent crashes ++ .domain = std::string([(error != nil ? [[error objectForKey:@"cause"] objectForKey:@"domain"] : @"") UTF8String]), ++ .message = std::string([(error != nil ? [[error objectForKey:@"cause"] objectForKey:@"message"] : @"") UTF8String]), ++ .details = std::string([(error != nil ? [[error objectForKey:@"cause"] objectForKey:@"details"] : @"") UTF8String]) ++ } ++ }); ++ } ++} ++ ++- (void)onInitialized{ ++ if(_eventEmitter){ ++ std::dynamic_pointer_cast(_eventEmitter) ++ ->onInitialized( CameraViewEventEmitter::OnInitialized{}); ++ } ++} ++ ++- (void)onCodeScannedWithMessage:(NSDictionary *)message { ++ if(_eventEmitter){ ++ std::dynamic_pointer_cast(_eventEmitter) ++ ->onCodeScanned( CameraViewEventEmitter::OnCodeScanned{ ++ .codes = { ++ .type = std::string([(message != nil ? [[message objectForKey:@"codes"] objectForKey:@"type"] : @"") UTF8String]), ++ .value = std::string([(message != nil ? [[message objectForKey:@"codes"] objectForKey:@"value"] : @"") UTF8String]), ++ .frame = { ++ .x = [(message != nil ? [[[message objectForKey:@"codes"] objectForKey:@"frame"] objectForKey:@"x"] : @0) doubleValue], ++ .y = [(message != nil ? [[[message objectForKey:@"codes"] objectForKey:@"frame"] objectForKey:@"y"] : @0) doubleValue], ++ .width = [(message != nil ? [[[message objectForKey:@"codes"] objectForKey:@"frame"] objectForKey:@"width"] : @0) doubleValue], ++ .height = [(message != nil ? [[[message objectForKey:@"codes"] objectForKey:@"frame"] objectForKey:@"height"] : @0) oubleValue], ++ }, ++ }, ++ .frame = { ++ .width = [(message != nil ? [[message objectForKey:@"frame"] objectForKey:@"width"] : @0) intValue], ++ .height = [(message != nil ? [[message objectForKey:@"frame"] objectForKey:@"height"] : @0) intValue], ++ }, ++ // nothing is sent here from CameraView ++ .corners = { ++ .x = [(message != nil ? [[message objectForKey:@"corners"] objectForKey:@"x"] : @0) doubleValue], ++ .y = [(message != nil ? [[message objectForKey:@"corners"] objectForKey:@"y"] : @0) doubleValue], ++ } ++ }); ++ } ++} ++ ++ ++- (void)onShutterWithMessage:(NSDictionary *)message { ++ if(_eventEmitter){ ++ std::dynamic_pointer_cast(_eventEmitter) ++ ->onShutter( CameraViewEventEmitter::OnShutter{ ++ .type = std::string([(message != nil ? [message objectForKey:@"type"] : @"") UTF8String]), ++ }); ++ } ++} ++ ++ ++- (void)onStarted { ++ if(_eventEmitter){ ++ std::dynamic_pointer_cast(_eventEmitter) ++ ->onStarted( CameraViewEventEmitter::OnStarted{}); ++ } ++} ++ ++ ++- (void)onStopped { ++ if(_eventEmitter){ ++ std::dynamic_pointer_cast(_eventEmitter) ++ ->onViewReady( CameraViewEventEmitter::OnViewReady{}); ++ } ++} ++ ++Class CameraViewCls(void) ++{ ++ return RNCameraView.class; ++} ++ ++@end ++#endif +diff --git a/node_modules/react-native-vision-camera/lib/commonjs/Camera.js b/node_modules/react-native-vision-camera/lib/commonjs/Camera.js +index 4c04727..9628241 100644 +--- a/node_modules/react-native-vision-camera/lib/commonjs/Camera.js ++++ b/node_modules/react-native-vision-camera/lib/commonjs/Camera.js +@@ -1,27 +1,42 @@ +-"use strict"; ++'use strict'; + +-Object.defineProperty(exports, "__esModule", { +- value: true ++Object.defineProperty(exports, '__esModule', { ++ value: true, + }); + exports.Camera = void 0; +-var _react = _interopRequireDefault(require("react")); +-var _reactNative = require("react-native"); +-var _CameraError = require("./CameraError"); +-var _NativeCameraModule = require("./NativeCameraModule"); +-var _VisionCameraProxy = require("./frame-processors/VisionCameraProxy"); +-var _CameraDevices = require("./CameraDevices"); +-var _SkiaCameraCanvas = require("./skia/SkiaCameraCanvas"); +-var _FpsGraph = require("./FpsGraph"); +-var _NativeCameraView = require("./NativeCameraView"); +-var _RotationHelper = require("./RotationHelper"); +-function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } +-function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } ++var _react = _interopRequireDefault(require('react')); ++var _reactNative = require('react-native'); ++var _CameraError = require('./CameraError'); ++var _NativeCameraModule = require('./NativeCameraModule'); ++var _VisionCameraProxy = require('./frame-processors/VisionCameraProxy'); ++var _CameraDevices = require('./CameraDevices'); ++var _SkiaCameraCanvas = require('./skia/SkiaCameraCanvas'); ++var _FpsGraph = require('./FpsGraph'); ++var _NativeCameraView = require('./NativeCameraView'); ++var _RotationHelper = require('./RotationHelper'); ++function _interopRequireDefault(e) { ++ return e && e.__esModule ? e : {default: e}; ++} ++function _extends() { ++ return ( ++ (_extends = Object.assign ++ ? Object.assign.bind() ++ : function (n) { ++ for (var e = 1; e < arguments.length; e++) { ++ var t = arguments[e]; ++ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); ++ } ++ return n; ++ }), ++ _extends.apply(null, arguments) ++ ); ++} + //#region Types + + //#endregion + + function isSkiaFrameProcessor(frameProcessor) { +- return frameProcessor?.type === 'drawable-skia'; ++ return frameProcessor?.type === 'drawable-skia'; + } + + //#region Camera Component +@@ -58,609 +73,597 @@ function isSkiaFrameProcessor(frameProcessor) { + * @component + */ + class Camera extends _react.default.PureComponent { +- /** @internal */ +- static displayName = 'Camera'; +- /** @internal */ +- displayName = Camera.displayName; +- isNativeViewMounted = false; +- lastUIRotation = undefined; +- rotationHelper = new _RotationHelper.RotationHelper(); +- /** @internal */ +- constructor(props) { +- super(props); +- this.onViewReady = this.onViewReady.bind(this); +- this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); +- this.onInitialized = this.onInitialized.bind(this); +- this.onStarted = this.onStarted.bind(this); +- this.onStopped = this.onStopped.bind(this); +- this.onPreviewStarted = this.onPreviewStarted.bind(this); +- this.onPreviewStopped = this.onPreviewStopped.bind(this); +- this.onShutter = this.onShutter.bind(this); +- this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); +- this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); +- this.onError = this.onError.bind(this); +- this.onCodeScanned = this.onCodeScanned.bind(this); +- this.ref = /*#__PURE__*/_react.default.createRef(); +- this.lastFrameProcessor = undefined; +- this.state = { +- isRecordingWithFlash: false, +- averageFpsSamples: [] +- }; +- } +- get handle() { +- const nodeHandle = (0, _reactNative.findNodeHandle)(this.ref.current); +- if (nodeHandle == null || nodeHandle === -1) { +- throw new _CameraError.CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); +- } +- return nodeHandle; +- } ++ /** @internal */ ++ static displayName = 'Camera'; ++ /** @internal */ ++ displayName = Camera.displayName; ++ isNativeViewMounted = false; ++ lastUIRotation = undefined; ++ rotationHelper = new _RotationHelper.RotationHelper(); ++ /** @internal */ ++ constructor(props) { ++ super(props); ++ this.onViewReady = this.onViewReady.bind(this); ++ this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); ++ this.onInitialized = this.onInitialized.bind(this); ++ this.onStarted = this.onStarted.bind(this); ++ this.onStopped = this.onStopped.bind(this); ++ this.onPreviewStarted = this.onPreviewStarted.bind(this); ++ this.onPreviewStopped = this.onPreviewStopped.bind(this); ++ this.onShutter = this.onShutter.bind(this); ++ this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); ++ this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); ++ this.onError = this.onError.bind(this); ++ this.onCodeScanned = this.onCodeScanned.bind(this); ++ this.ref = /*#__PURE__*/ _react.default.createRef(); ++ this.lastFrameProcessor = undefined; ++ this.state = { ++ isRecordingWithFlash: false, ++ averageFpsSamples: [], ++ }; ++ } ++ get handle() { ++ const nodeHandle = (0, _reactNative.findNodeHandle)(this.ref.current); ++ if (nodeHandle == null || nodeHandle === -1) { ++ throw new _CameraError.CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); ++ } ++ return nodeHandle; ++ } + +- //#region View-specific functions (UIViewManager) +- /** +- * Take a single photo and write it's content to a temporary file. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * @example +- * ```ts +- * const photo = await camera.current.takePhoto({ +- * flash: 'on', +- * enableAutoRedEyeReduction: true +- * }) +- * ``` +- */ +- async takePhoto(options) { +- try { +- return await _NativeCameraModule.CameraModule.takePhoto(this.handle, options ?? {}); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } ++ //#region View-specific functions (UIViewManager) ++ /** ++ * Take a single photo and write it's content to a temporary file. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * const photo = await camera.current.takePhoto({ ++ * flash: 'on', ++ * enableAutoRedEyeReduction: true ++ * }) ++ * ``` ++ */ ++ async takePhoto(options) { ++ try { ++ return await _NativeCameraModule.CameraModule.takePhoto(this.handle, options ?? {}); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } + +- /** +- * Captures a snapshot of the Camera view and write it's content to a temporary file. +- * +- * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. +- * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * @example +- * ```ts +- * const snapshot = await camera.current.takeSnapshot({ +- * quality: 100 +- * }) +- * ``` +- */ +- async takeSnapshot(options) { +- try { +- return await _NativeCameraModule.CameraModule.takeSnapshot(this.handle, options ?? {}); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } +- getBitRateMultiplier(bitRate) { +- if (typeof bitRate === 'number' || bitRate == null) return 1; +- switch (bitRate) { +- case 'extra-low': +- return 0.6; +- case 'low': +- return 0.8; +- case 'normal': +- return 1; +- case 'high': +- return 1.2; +- case 'extra-high': +- return 1.4; +- } +- } ++ /** ++ * Captures a snapshot of the Camera view and write it's content to a temporary file. ++ * ++ * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. ++ * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * const snapshot = await camera.current.takeSnapshot({ ++ * quality: 100 ++ * }) ++ * ``` ++ */ ++ async takeSnapshot(options) { ++ try { ++ return await _NativeCameraModule.CameraModule.takeSnapshot(this.handle, options ?? {}); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } ++ getBitRateMultiplier(bitRate) { ++ if (typeof bitRate === 'number' || bitRate == null) return 1; ++ switch (bitRate) { ++ case 'extra-low': ++ return 0.6; ++ case 'low': ++ return 0.8; ++ case 'normal': ++ return 1; ++ case 'high': ++ return 1.2; ++ case 'extra-high': ++ return 1.4; ++ } ++ } + +- /** +- * Start a new video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * setTimeout(() => { +- * camera.current.stopRecording() +- * }, 5000) +- * ``` +- */ +- startRecording(options) { +- const { +- onRecordingError, +- onRecordingFinished, +- ...passThruOptions +- } = options; +- if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') throw new _CameraError.CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); +- if (options.flash === 'on') { +- // Enable torch for video recording +- this.setState({ +- isRecordingWithFlash: true +- }); +- } +- const onRecordCallback = (video, error) => { +- if (this.state.isRecordingWithFlash) { +- // disable torch again if it was enabled +- this.setState({ +- isRecordingWithFlash: false +- }); +- } +- if (error != null) return onRecordingError(error); +- if (video != null) return onRecordingFinished(video); +- }; +- const nativeRecordVideoOptions = passThruOptions; +- try { +- // TODO: Use TurboModules to make this awaitable. +- _NativeCameraModule.CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } ++ /** ++ * Start a new video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * setTimeout(() => { ++ * camera.current.stopRecording() ++ * }, 5000) ++ * ``` ++ */ ++ startRecording(options) { ++ const {onRecordingError, onRecordingFinished, ...passThruOptions} = options; ++ if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') ++ throw new _CameraError.CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); ++ if (options.flash === 'on') { ++ // Enable torch for video recording ++ this.setState({ ++ isRecordingWithFlash: true, ++ }); ++ } ++ const onRecordCallback = (video, error) => { ++ if (this.state.isRecordingWithFlash) { ++ // disable torch again if it was enabled ++ this.setState({ ++ isRecordingWithFlash: false, ++ }); ++ } ++ if (error != null) return onRecordingError(error); ++ if (video != null) return onRecordingFinished(video); ++ }; ++ const nativeRecordVideoOptions = passThruOptions; ++ try { ++ // TODO: Use TurboModules to make this awaitable. ++ _NativeCameraModule.CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } + +- /** +- * Pauses the current video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * // Start +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * await timeout(1000) +- * // Pause +- * await camera.current.pauseRecording() +- * await timeout(500) +- * // Resume +- * await camera.current.resumeRecording() +- * await timeout(2000) +- * // Stop +- * await camera.current.stopRecording() +- * ``` +- */ +- async pauseRecording() { +- try { +- return await _NativeCameraModule.CameraModule.pauseRecording(this.handle); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } ++ /** ++ * Pauses the current video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * // Start ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * await timeout(1000) ++ * // Pause ++ * await camera.current.pauseRecording() ++ * await timeout(500) ++ * // Resume ++ * await camera.current.resumeRecording() ++ * await timeout(2000) ++ * // Stop ++ * await camera.current.stopRecording() ++ * ``` ++ */ ++ async pauseRecording() { ++ try { ++ return await _NativeCameraModule.CameraModule.pauseRecording(this.handle); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } + +- /** +- * Resumes a currently paused video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * // Start +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * await timeout(1000) +- * // Pause +- * await camera.current.pauseRecording() +- * await timeout(500) +- * // Resume +- * await camera.current.resumeRecording() +- * await timeout(2000) +- * // Stop +- * await camera.current.stopRecording() +- * ``` +- */ +- async resumeRecording() { +- try { +- return await _NativeCameraModule.CameraModule.resumeRecording(this.handle); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } ++ /** ++ * Resumes a currently paused video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * // Start ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * await timeout(1000) ++ * // Pause ++ * await camera.current.pauseRecording() ++ * await timeout(500) ++ * // Resume ++ * await camera.current.resumeRecording() ++ * await timeout(2000) ++ * // Stop ++ * await camera.current.stopRecording() ++ * ``` ++ */ ++ async resumeRecording() { ++ try { ++ return await _NativeCameraModule.CameraModule.resumeRecording(this.handle); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } + +- /** +- * Stop the current video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * setTimeout(async () => { +- * await camera.current.stopRecording() +- * }, 5000) +- * ``` +- */ +- async stopRecording() { +- try { +- return await _NativeCameraModule.CameraModule.stopRecording(this.handle); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } ++ /** ++ * Stop the current video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * setTimeout(async () => { ++ * await camera.current.stopRecording() ++ * }, 5000) ++ * ``` ++ */ ++ async stopRecording() { ++ try { ++ return await _NativeCameraModule.CameraModule.stopRecording(this.handle); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } + +- /** +- * Cancel the current video recording. The temporary video file will be deleted, +- * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => { +- * if (error.code === 'capture/recording-canceled') { +- * // recording was canceled. +- * } else { +- * console.error(error) +- * } +- * }, +- * }) +- * setTimeout(async () => { +- * await camera.current.cancelRecording() +- * }, 5000) +- * ``` +- */ +- async cancelRecording() { +- try { +- return await _NativeCameraModule.CameraModule.cancelRecording(this.handle); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } ++ /** ++ * Cancel the current video recording. The temporary video file will be deleted, ++ * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => { ++ * if (error.code === 'capture/recording-canceled') { ++ * // recording was canceled. ++ * } else { ++ * console.error(error) ++ * } ++ * }, ++ * }) ++ * setTimeout(async () => { ++ * await camera.current.cancelRecording() ++ * }, 5000) ++ * ``` ++ */ ++ async cancelRecording() { ++ try { ++ return await _NativeCameraModule.CameraModule.cancelRecording(this.handle); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } + +- /** +- * Focus the camera to a specific point in the coordinate system. +- * @param {Point} point The point to focus to. This should be relative +- * to the Camera view's coordinate system and is expressed in points. +- * * `(0, 0)` means **top left**. +- * * `(CameraView.width, CameraView.height)` means **bottom right**. +- * +- * Make sure the value doesn't exceed the CameraView's dimensions. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- * @example +- * ```ts +- * await camera.current.focus({ +- * x: tapEvent.x, +- * y: tapEvent.y +- * }) +- * ``` +- */ +- async focus(point) { +- try { +- return await _NativeCameraModule.CameraModule.focus(this.handle, point); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } +- //#endregion ++ /** ++ * Focus the camera to a specific point in the coordinate system. ++ * @param {Point} point The point to focus to. This should be relative ++ * to the Camera view's coordinate system and is expressed in points. ++ * * `(0, 0)` means **top left**. ++ * * `(CameraView.width, CameraView.height)` means **bottom right**. ++ * ++ * Make sure the value doesn't exceed the CameraView's dimensions. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * await camera.current.focus({ ++ * x: tapEvent.x, ++ * y: tapEvent.y ++ * }) ++ * ``` ++ */ ++ async focus(point) { ++ try { ++ return await _NativeCameraModule.CameraModule.focus(this.handle, point); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } ++ //#endregion + +- //#region Static Functions (NativeModule) +- /** +- * Get a list of all available camera devices on the current phone. +- * +- * If you use Hooks, use the `useCameraDevices(..)` hook instead. +- * +- * * For Camera Devices attached to the phone, it is safe to assume that this will never change. +- * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices +- * could change over time when the external Camera device gets plugged in or plugged out, so +- * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. +- * +- * @example +- * ```ts +- * const devices = Camera.getAvailableCameraDevices() +- * const backCameras = devices.filter((d) => d.position === "back") +- * const frontCameras = devices.filter((d) => d.position === "front") +- * ``` +- */ +- static getAvailableCameraDevices() { +- return _CameraDevices.CameraDevices.getAvailableCameraDevices(); +- } +- /** +- * Adds a listener that gets called everytime the Camera Devices change, for example +- * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. +- * +- * If you use Hooks, use the `useCameraDevices()` hook instead. +- */ +- static addCameraDevicesChangedListener(listener) { +- return _CameraDevices.CameraDevices.addCameraDevicesChangedListener(listener); +- } +- /** +- * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure +- * the user has permitted the app to use the camera. +- * +- * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. +- */ +- static getCameraPermissionStatus() { +- return _NativeCameraModule.CameraModule.getCameraPermissionStatus(); +- } +- /** +- * Gets the current Microphone-Recording Permission Status. +- * Check this before enabling the `audio={...}` property to make sure the +- * user has permitted the app to use the microphone. +- * +- * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. +- */ +- static getMicrophonePermissionStatus() { +- return _NativeCameraModule.CameraModule.getMicrophonePermissionStatus(); +- } +- /** +- * Gets the current Location Permission Status. +- * Check this before enabling the `location={...}` property to make sure the +- * the user has permitted the app to use the location. +- * +- * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. +- * +- * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. +- * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. +- */ +- static getLocationPermissionStatus() { +- return _NativeCameraModule.CameraModule.getLocationPermissionStatus(); +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new camera permission status. +- * +- * If the user has previously blocked the app from using the camera, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- static async requestCameraPermission() { +- try { +- return await _NativeCameraModule.CameraModule.requestCameraPermission(); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. +- * +- * If the user has previously blocked the app from using the microphone, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- static async requestMicrophonePermission() { +- try { +- return await _NativeCameraModule.CameraModule.requestMicrophonePermission(); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new location permission status. +- * +- * If the user has previously blocked the app from using the location, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- static async requestLocationPermission() { +- try { +- return await _NativeCameraModule.CameraModule.requestLocationPermission(); +- } catch (e) { +- throw (0, _CameraError.tryParseNativeCameraError)(e); +- } +- } +- //#endregion ++ //#region Static Functions (NativeModule) ++ /** ++ * Get a list of all available camera devices on the current phone. ++ * ++ * If you use Hooks, use the `useCameraDevices(..)` hook instead. ++ * ++ * * For Camera Devices attached to the phone, it is safe to assume that this will never change. ++ * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices ++ * could change over time when the external Camera device gets plugged in or plugged out, so ++ * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. ++ * ++ * @example ++ * ```ts ++ * const devices = Camera.getAvailableCameraDevices() ++ * const backCameras = devices.filter((d) => d.position === "back") ++ * const frontCameras = devices.filter((d) => d.position === "front") ++ * ``` ++ */ ++ static getAvailableCameraDevices() { ++ return _CameraDevices.CameraDevices.getAvailableCameraDevices(); ++ } ++ /** ++ * Adds a listener that gets called everytime the Camera Devices change, for example ++ * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. ++ * ++ * If you use Hooks, use the `useCameraDevices()` hook instead. ++ */ ++ static addCameraDevicesChangedListener(listener) { ++ return _CameraDevices.CameraDevices.addCameraDevicesChangedListener(listener); ++ } ++ /** ++ * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure ++ * the user has permitted the app to use the camera. ++ * ++ * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. ++ */ ++ static getCameraPermissionStatus() { ++ return _NativeCameraModule.CameraModule.getCameraPermissionStatus(); ++ } ++ /** ++ * Gets the current Microphone-Recording Permission Status. ++ * Check this before enabling the `audio={...}` property to make sure the ++ * user has permitted the app to use the microphone. ++ * ++ * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. ++ */ ++ static getMicrophonePermissionStatus() { ++ return _NativeCameraModule.CameraModule.getMicrophonePermissionStatus(); ++ } ++ /** ++ * Gets the current Location Permission Status. ++ * Check this before enabling the `location={...}` property to make sure the ++ * the user has permitted the app to use the location. ++ * ++ * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. ++ * ++ * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. ++ * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. ++ */ ++ static getLocationPermissionStatus() { ++ return _NativeCameraModule.CameraModule.getLocationPermissionStatus(); ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new camera permission status. ++ * ++ * If the user has previously blocked the app from using the camera, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ static async requestCameraPermission() { ++ try { ++ return await _NativeCameraModule.CameraModule.requestCameraPermission(); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. ++ * ++ * If the user has previously blocked the app from using the microphone, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ static async requestMicrophonePermission() { ++ try { ++ return await _NativeCameraModule.CameraModule.requestMicrophonePermission(); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new location permission status. ++ * ++ * If the user has previously blocked the app from using the location, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ static async requestLocationPermission() { ++ try { ++ return await _NativeCameraModule.CameraModule.requestLocationPermission(); ++ } catch (e) { ++ throw (0, _CameraError.tryParseNativeCameraError)(e); ++ } ++ } ++ //#endregion + +- //#region Events (Wrapped to maintain reference equality) +- onError(event) { +- const error = event.nativeEvent; +- const cause = (0, _CameraError.isErrorWithCause)(error.cause) ? error.cause : undefined; +- // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work +- const cameraError = new _CameraError.CameraRuntimeError(error.code, error.message, cause); +- if (this.props.onError != null) { +- this.props.onError(cameraError); +- } else { +- // User didn't pass an `onError` handler, so just log it to console +- console.error(cameraError); +- } +- } +- onInitialized() { +- this.props.onInitialized?.(); +- } +- onStarted() { +- this.props.onStarted?.(); +- } +- onStopped() { +- this.props.onStopped?.(); +- } +- onPreviewStarted() { +- this.props.onPreviewStarted?.(); +- } +- onPreviewStopped() { +- this.props.onPreviewStopped?.(); +- } +- onShutter(event) { +- this.props.onShutter?.(event.nativeEvent); +- } +- onOutputOrientationChanged({ +- nativeEvent: { +- outputOrientation +- } +- }) { +- this.rotationHelper.outputOrientation = outputOrientation; +- this.props.onOutputOrientationChanged?.(outputOrientation); +- this.maybeUpdateUIRotation(); +- } +- onPreviewOrientationChanged({ +- nativeEvent: { +- previewOrientation +- } +- }) { +- this.rotationHelper.previewOrientation = previewOrientation; +- this.props.onPreviewOrientationChanged?.(previewOrientation); +- this.maybeUpdateUIRotation(); +- if (isSkiaFrameProcessor(this.props.frameProcessor)) { +- // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. +- this.props.frameProcessor.previewOrientation.value = previewOrientation; +- } +- } +- maybeUpdateUIRotation() { +- const uiRotation = this.rotationHelper.uiRotation; +- if (uiRotation !== this.lastUIRotation) { +- this.props.onUIRotationChanged?.(uiRotation); +- this.lastUIRotation = uiRotation; +- } +- } +- //#endregion ++ //#region Events (Wrapped to maintain reference equality) ++ onError(event) { ++ const error = event.nativeEvent; ++ const cause = (0, _CameraError.isErrorWithCause)(error.cause) ? error.cause : undefined; ++ // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work ++ const cameraError = new _CameraError.CameraRuntimeError(error.code, error.message, cause); ++ if (this.props.onError != null) { ++ this.props.onError(cameraError); ++ } else { ++ // User didn't pass an `onError` handler, so just log it to console ++ console.error(cameraError); ++ } ++ } ++ onInitialized() { ++ this.props.onInitialized?.(); ++ } ++ onStarted() { ++ this.props.onStarted?.(); ++ } ++ onStopped() { ++ this.props.onStopped?.(); ++ } ++ onPreviewStarted() { ++ this.props.onPreviewStarted?.(); ++ } ++ onPreviewStopped() { ++ this.props.onPreviewStopped?.(); ++ } ++ onShutter(event) { ++ this.props.onShutter?.(event.nativeEvent); ++ } ++ onOutputOrientationChanged({nativeEvent: {outputOrientation}}) { ++ this.rotationHelper.outputOrientation = outputOrientation; ++ this.props.onOutputOrientationChanged?.(outputOrientation); ++ this.maybeUpdateUIRotation(); ++ } ++ onPreviewOrientationChanged({nativeEvent: {previewOrientation}}) { ++ this.rotationHelper.previewOrientation = previewOrientation; ++ this.props.onPreviewOrientationChanged?.(previewOrientation); ++ this.maybeUpdateUIRotation(); ++ if (isSkiaFrameProcessor(this.props.frameProcessor)) { ++ // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. ++ this.props.frameProcessor.previewOrientation.value = previewOrientation; ++ } ++ } ++ maybeUpdateUIRotation() { ++ const uiRotation = this.rotationHelper.uiRotation; ++ if (uiRotation !== this.lastUIRotation) { ++ this.props.onUIRotationChanged?.(uiRotation); ++ this.lastUIRotation = uiRotation; ++ } ++ } ++ //#endregion + +- onCodeScanned(event) { +- const codeScanner = this.props.codeScanner; +- if (codeScanner == null) return; +- codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); +- } ++ onCodeScanned(event) { ++ const codeScanner = this.props.codeScanner; ++ if (codeScanner == null) return; ++ codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); ++ } + +- //#region Lifecycle +- setFrameProcessor(frameProcessor) { +- _VisionCameraProxy.VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); +- } +- unsetFrameProcessor() { +- _VisionCameraProxy.VisionCameraProxy.removeFrameProcessor(this.handle); +- } +- onViewReady() { +- this.isNativeViewMounted = true; +- if (this.props.frameProcessor != null) { +- // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. +- this.setFrameProcessor(this.props.frameProcessor.frameProcessor); +- this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; +- } +- } +- onAverageFpsChanged({ +- nativeEvent: { +- averageFps +- } +- }) { +- this.setState(state => { +- const averageFpsSamples = [...state.averageFpsSamples, averageFps]; +- while (averageFpsSamples.length >= _FpsGraph.MAX_BARS + 1) { +- // we keep a maximum of 30 FPS samples in our history +- averageFpsSamples.shift(); +- } +- return { +- ...state, +- averageFpsSamples: averageFpsSamples +- }; +- }); +- } ++ //#region Lifecycle ++ setFrameProcessor(frameProcessor) { ++ _VisionCameraProxy.VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); ++ } ++ unsetFrameProcessor() { ++ _VisionCameraProxy.VisionCameraProxy.removeFrameProcessor(this.handle); ++ } ++ onViewReady() { ++ this.isNativeViewMounted = true; ++ if (this.props.frameProcessor != null) { ++ // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. ++ this.setFrameProcessor(this.props.frameProcessor.frameProcessor); ++ this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; ++ } ++ } ++ onAverageFpsChanged({nativeEvent: {averageFps}}) { ++ this.setState((state) => { ++ const averageFpsSamples = [...state.averageFpsSamples, averageFps]; ++ while (averageFpsSamples.length >= _FpsGraph.MAX_BARS + 1) { ++ // we keep a maximum of 30 FPS samples in our history ++ averageFpsSamples.shift(); ++ } ++ return { ++ ...state, ++ averageFpsSamples: averageFpsSamples, ++ }; ++ }); ++ } + +- /** @internal */ +- componentDidUpdate() { +- if (!this.isNativeViewMounted) return; +- const frameProcessor = this.props.frameProcessor; +- if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { +- // frameProcessor argument identity changed. Update native to reflect the change. +- if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor);else this.unsetFrameProcessor(); +- this.lastFrameProcessor = frameProcessor?.frameProcessor; +- } +- } +- //#endregion ++ /** @internal */ ++ componentDidUpdate() { ++ if (!this.isNativeViewMounted) return; ++ const frameProcessor = this.props.frameProcessor; ++ if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { ++ // frameProcessor argument identity changed. Update native to reflect the change. ++ if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor); ++ else this.unsetFrameProcessor(); ++ this.lastFrameProcessor = frameProcessor?.frameProcessor; ++ } ++ } ++ //#endregion + +- /** @internal */ +- render() { +- // We remove the big `device` object from the props because we only need to pass `cameraId` to native. +- const { +- device, +- frameProcessor, +- codeScanner, +- enableFpsGraph, +- fps, +- videoBitRate, +- ...props +- } = this.props; ++ /** @internal */ ++ render() { ++ // We remove the big `device` object from the props because we only need to pass `cameraId` to native. ++ const {device, frameProcessor, codeScanner, enableFpsGraph, fps, videoBitRate, ...props} = this.props; + +- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition +- if (device == null) { +- throw new _CameraError.CameraRuntimeError('device/no-device', 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices'); +- } +- const shouldEnableBufferCompression = props.video === true && frameProcessor == null; +- const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; +- const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); +- const shouldBeMirrored = device.position === 'front'; ++ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition ++ if (device == null) { ++ throw new _CameraError.CameraRuntimeError( ++ 'device/no-device', ++ 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices', ++ ); ++ } ++ const shouldEnableBufferCompression = props.video === true && frameProcessor == null; ++ const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; ++ const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); ++ const shouldBeMirrored = device.position === 'front'; + +- // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple +- const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; +- const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; ++ // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple ++ const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; ++ const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; + +- // bitrate is number (override) or string (multiplier) +- let bitRateMultiplier; +- let bitRateOverride; +- if (typeof videoBitRate === 'number') { +- // If the user passed an absolute number as a bit-rate, we just use this as a full override. +- bitRateOverride = videoBitRate; +- } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { +- // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it +- bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); +- } +- return /*#__PURE__*/_react.default.createElement(_NativeCameraView.NativeCameraView, _extends({}, props, { +- cameraId: device.id, +- ref: this.ref, +- torch: torch, +- minFps: minFps, +- maxFps: maxFps, +- isMirrored: props.isMirrored ?? shouldBeMirrored, +- onViewReady: this.onViewReady, +- onAverageFpsChanged: enableFpsGraph ? this.onAverageFpsChanged : undefined, +- onInitialized: this.onInitialized, +- onCodeScanned: this.onCodeScanned, +- onStarted: this.onStarted, +- onStopped: this.onStopped, +- onPreviewStarted: this.onPreviewStarted, +- onPreviewStopped: this.onPreviewStopped, +- onShutter: this.onShutter, +- videoBitRateMultiplier: bitRateMultiplier, +- videoBitRateOverride: bitRateOverride, +- onOutputOrientationChanged: this.onOutputOrientationChanged, +- onPreviewOrientationChanged: this.onPreviewOrientationChanged, +- onError: this.onError, +- codeScannerOptions: codeScanner, +- enableFrameProcessor: frameProcessor != null, +- enableBufferCompression: props.enableBufferCompression ?? shouldEnableBufferCompression, +- preview: isRenderingWithSkia ? false : props.preview ?? true +- }), isRenderingWithSkia && /*#__PURE__*/_react.default.createElement(_SkiaCameraCanvas.SkiaCameraCanvas, { +- style: styles.customPreviewView, +- offscreenTextures: frameProcessor.offscreenTextures, +- resizeMode: props.resizeMode +- }), enableFpsGraph && /*#__PURE__*/_react.default.createElement(_FpsGraph.FpsGraph, { +- style: styles.fpsGraph, +- averageFpsSamples: this.state.averageFpsSamples, +- targetMaxFps: props.format?.maxFps ?? 60 +- })); +- } ++ // bitrate is number (override) or string (multiplier) ++ let bitRateMultiplier; ++ let bitRateOverride; ++ if (typeof videoBitRate === 'number') { ++ // If the user passed an absolute number as a bit-rate, we just use this as a full override. ++ bitRateOverride = videoBitRate; ++ } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { ++ // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it ++ bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); ++ } ++ return /*#__PURE__*/ _react.default.createElement( ++ _NativeCameraView.NativeCameraView, ++ _extends({}, props, { ++ cameraId: device.id, ++ ref: this.ref, ++ torch: torch, ++ minFps: minFps, ++ maxFps: maxFps, ++ isMirrored: props.isMirrored ?? shouldBeMirrored, ++ onViewReady: this.onViewReady, ++ onAverageFpsChanged: enableFpsGraph ? this.onAverageFpsChanged : undefined, ++ onInitialized: this.onInitialized, ++ onCodeScanned: this.onCodeScanned, ++ onStarted: this.onStarted, ++ onStopped: this.onStopped, ++ onPreviewStarted: this.onPreviewStarted, ++ onPreviewStopped: this.onPreviewStopped, ++ onShutter: this.onShutter, ++ videoBitRateMultiplier: bitRateMultiplier, ++ videoBitRateOverride: bitRateOverride, ++ onOutputOrientationChanged: this.onOutputOrientationChanged, ++ onPreviewOrientationChanged: this.onPreviewOrientationChanged, ++ onError: this.onError, ++ codeScannerOptions: codeScanner, ++ enableFrameProcessor: frameProcessor != null, ++ enableBufferCompression: props.enableBufferCompression ?? shouldEnableBufferCompression, ++ preview: isRenderingWithSkia ? false : props.preview ?? true, ++ }), ++ isRenderingWithSkia && ++ /*#__PURE__*/ _react.default.createElement(_SkiaCameraCanvas.SkiaCameraCanvas, { ++ style: styles.customPreviewView, ++ offscreenTextures: frameProcessor.offscreenTextures, ++ resizeMode: props.resizeMode, ++ }), ++ enableFpsGraph && ++ /*#__PURE__*/ _react.default.createElement(_FpsGraph.FpsGraph, { ++ style: styles.fpsGraph, ++ averageFpsSamples: this.state.averageFpsSamples, ++ targetMaxFps: props.format?.maxFps ?? 60, ++ }), ++ ); ++ } + } + //#endregion + exports.Camera = Camera; + const styles = _reactNative.StyleSheet.create({ +- customPreviewView: { +- flex: 1 +- }, +- fpsGraph: { +- elevation: 1, +- position: 'absolute', +- left: 15, +- top: 30 +- } ++ customPreviewView: { ++ flex: 1, ++ }, ++ fpsGraph: { ++ elevation: 1, ++ position: 'absolute', ++ left: 15, ++ top: 30, ++ }, + }); + //# sourceMappingURL=Camera.js.map +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/lib/commonjs/Camera.js.map b/node_modules/react-native-vision-camera/lib/commonjs/Camera.js.map +index a21019c..667d46b 100644 +--- a/node_modules/react-native-vision-camera/lib/commonjs/Camera.js.map ++++ b/node_modules/react-native-vision-camera/lib/commonjs/Camera.js.map +@@ -1 +1,175 @@ +-{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_CameraError","_NativeCameraModule","_VisionCameraProxy","_CameraDevices","_SkiaCameraCanvas","_FpsGraph","_NativeCameraView","_RotationHelper","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","isSkiaFrameProcessor","frameProcessor","type","Camera","React","PureComponent","displayName","isNativeViewMounted","lastUIRotation","undefined","rotationHelper","RotationHelper","constructor","props","onViewReady","onAverageFpsChanged","onInitialized","onStarted","onStopped","onPreviewStarted","onPreviewStopped","onShutter","onOutputOrientationChanged","onPreviewOrientationChanged","onError","onCodeScanned","ref","createRef","lastFrameProcessor","state","isRecordingWithFlash","averageFpsSamples","handle","nodeHandle","findNodeHandle","current","CameraRuntimeError","takePhoto","options","CameraModule","tryParseNativeCameraError","takeSnapshot","getBitRateMultiplier","bitRate","startRecording","onRecordingError","onRecordingFinished","passThruOptions","flash","setState","onRecordCallback","video","error","nativeRecordVideoOptions","pauseRecording","resumeRecording","stopRecording","cancelRecording","focus","point","getAvailableCameraDevices","CameraDevices","addCameraDevicesChangedListener","listener","getCameraPermissionStatus","getMicrophonePermissionStatus","getLocationPermissionStatus","requestCameraPermission","requestMicrophonePermission","requestLocationPermission","event","nativeEvent","cause","isErrorWithCause","cameraError","code","message","console","outputOrientation","maybeUpdateUIRotation","previewOrientation","value","uiRotation","onUIRotationChanged","codeScanner","codes","frame","setFrameProcessor","VisionCameraProxy","unsetFrameProcessor","removeFrameProcessor","averageFps","MAX_BARS","shift","componentDidUpdate","render","device","enableFpsGraph","fps","videoBitRate","shouldEnableBufferCompression","torch","isRenderingWithSkia","shouldBeMirrored","position","minFps","maxFps","bitRateMultiplier","bitRateOverride","createElement","NativeCameraView","cameraId","id","isMirrored","videoBitRateMultiplier","videoBitRateOverride","codeScannerOptions","enableFrameProcessor","enableBufferCompression","preview","SkiaCameraCanvas","style","styles","customPreviewView","offscreenTextures","resizeMode","FpsGraph","fpsGraph","targetMaxFps","format","exports","StyleSheet","create","flex","elevation","left","top"],"sourceRoot":"../../src","sources":["Camera.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAGA,IAAAE,YAAA,GAAAF,OAAA;AAEA,IAAAG,mBAAA,GAAAH,OAAA;AAIA,IAAAI,kBAAA,GAAAJ,OAAA;AACA,IAAAK,cAAA,GAAAL,OAAA;AAGA,IAAAM,iBAAA,GAAAN,OAAA;AAEA,IAAAO,SAAA,GAAAP,OAAA;AASA,IAAAQ,iBAAA,GAAAR,OAAA;AACA,IAAAS,eAAA,GAAAT,OAAA;AAAiD,SAAAD,uBAAAW,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,SAAA,WAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,CAAA,aAAAP,CAAA,MAAAA,CAAA,GAAAQ,SAAA,CAAAC,MAAA,EAAAT,CAAA,UAAAU,CAAA,GAAAF,SAAA,CAAAR,CAAA,YAAAW,CAAA,IAAAD,CAAA,OAAAE,cAAA,CAAAC,IAAA,CAAAH,CAAA,EAAAC,CAAA,MAAAJ,CAAA,CAAAI,CAAA,IAAAD,CAAA,CAAAC,CAAA,aAAAJ,CAAA,KAAAJ,QAAA,CAAAW,KAAA,OAAAN,SAAA;AAEjD;;AAUA;;AAEA,SAASO,oBAAoBA,CAACC,cAAgE,EAA4C;EACxI,OAAOA,cAAc,EAAEC,IAAI,KAAK,eAAe;AACjD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAMC,MAAM,SAASC,cAAK,CAACC,aAAa,CAA2B;EACxE;EACA,OAAOC,WAAW,GAAG,QAAQ;EAC7B;EACAA,WAAW,GAAGH,MAAM,CAACG,WAAW;EAExBC,mBAAmB,GAAG,KAAK;EAC3BC,cAAc,GAAuBC,SAAS;EAC9CC,cAAc,GAAG,IAAIC,8BAAc,CAAC,CAAC;EAI7C;EACAC,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,CAAC;IACZ,IAAI,CAACC,WAAW,GAAG,IAAI,CAACA,WAAW,CAACvB,IAAI,CAAC,IAAI,CAAC;IAC9C,IAAI,CAACwB,mBAAmB,GAAG,IAAI,CAACA,mBAAmB,CAACxB,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,CAACyB,aAAa,GAAG,IAAI,CAACA,aAAa,CAACzB,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAAC0B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC1B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC2B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC3B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC4B,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAAC5B,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAAC6B,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAAC7B,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAAC8B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC9B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC+B,0BAA0B,GAAG,IAAI,CAACA,0BAA0B,CAAC/B,IAAI,CAAC,IAAI,CAAC;IAC5E,IAAI,CAACgC,2BAA2B,GAAG,IAAI,CAACA,2BAA2B,CAAChC,IAAI,CAAC,IAAI,CAAC;IAC9E,IAAI,CAACiC,OAAO,GAAG,IAAI,CAACA,OAAO,CAACjC,IAAI,CAAC,IAAI,CAAC;IACtC,IAAI,CAACkC,aAAa,GAAG,IAAI,CAACA,aAAa,CAAClC,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACmC,GAAG,gBAAGtB,cAAK,CAACuB,SAAS,CAAU,CAAC;IACrC,IAAI,CAACC,kBAAkB,GAAGnB,SAAS;IACnC,IAAI,CAACoB,KAAK,GAAG;MACXC,oBAAoB,EAAE,KAAK;MAC3BC,iBAAiB,EAAE;IACrB,CAAC;EACH;EAEA,IAAYC,MAAMA,CAAA,EAAW;IAC3B,MAAMC,UAAU,GAAG,IAAAC,2BAAc,EAAC,IAAI,CAACR,GAAG,CAACS,OAAO,CAAC;IACnD,IAAIF,UAAU,IAAI,IAAI,IAAIA,UAAU,KAAK,CAAC,CAAC,EAAE;MAC3C,MAAM,IAAIG,+BAAkB,CAC1B,uBAAuB,EACvB,iGACF,CAAC;IACH;IAEA,OAAOH,UAAU;EACnB;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaI,SAASA,CAACC,OAA0B,EAAsB;IACrE,IAAI;MACF,OAAO,MAAMC,gCAAY,CAACF,SAAS,CAAC,IAAI,CAACL,MAAM,EAAEM,OAAO,IAAI,CAAC,CAAC,CAAC;IACjE,CAAC,CAAC,OAAOrD,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAawD,YAAYA,CAACH,OAA6B,EAAsB;IAC3E,IAAI;MACF,OAAO,MAAMC,gCAAY,CAACE,YAAY,CAAC,IAAI,CAACT,MAAM,EAAEM,OAAO,IAAI,CAAC,CAAC,CAAC;IACpE,CAAC,CAAC,OAAOrD,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EAEQyD,oBAAoBA,CAACC,OAAoC,EAAU;IACzE,IAAI,OAAOA,OAAO,KAAK,QAAQ,IAAIA,OAAO,IAAI,IAAI,EAAE,OAAO,CAAC;IAC5D,QAAQA,OAAO;MACb,KAAK,WAAW;QACd,OAAO,GAAG;MACZ,KAAK,KAAK;QACR,OAAO,GAAG;MACZ,KAAK,QAAQ;QACX,OAAO,CAAC;MACV,KAAK,MAAM;QACT,OAAO,GAAG;MACZ,KAAK,YAAY;QACf,OAAO,GAAG;IACd;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,cAAcA,CAACN,OAA2B,EAAQ;IACvD,MAAM;MAAEO,gBAAgB;MAAEC,mBAAmB;MAAE,GAAGC;IAAgB,CAAC,GAAGT,OAAO;IAC7E,IAAI,OAAOO,gBAAgB,KAAK,UAAU,IAAI,OAAOC,mBAAmB,KAAK,UAAU,EACrF,MAAM,IAAIV,+BAAkB,CAAC,6BAA6B,EAAE,qEAAqE,CAAC;IAEpI,IAAIE,OAAO,CAACU,KAAK,KAAK,IAAI,EAAE;MAC1B;MACA,IAAI,CAACC,QAAQ,CAAC;QACZnB,oBAAoB,EAAE;MACxB,CAAC,CAAC;IACJ;IAEA,MAAMoB,gBAAgB,GAAGA,CAACC,KAAiB,EAAEC,KAA0B,KAAW;MAChF,IAAI,IAAI,CAACvB,KAAK,CAACC,oBAAoB,EAAE;QACnC;QACA,IAAI,CAACmB,QAAQ,CAAC;UACZnB,oBAAoB,EAAE;QACxB,CAAC,CAAC;MACJ;MAEA,IAAIsB,KAAK,IAAI,IAAI,EAAE,OAAOP,gBAAgB,CAACO,KAAK,CAAC;MACjD,IAAID,KAAK,IAAI,IAAI,EAAE,OAAOL,mBAAmB,CAACK,KAAK,CAAC;IACtD,CAAC;IAED,MAAME,wBAAkD,GAAGN,eAAe;IAC1E,IAAI;MACF;MACAR,gCAAY,CAACK,cAAc,CAAC,IAAI,CAACZ,MAAM,EAAEqB,wBAAwB,EAAEH,gBAAgB,CAAC;IACtF,CAAC,CAAC,OAAOjE,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaqE,cAAcA,CAAA,EAAkB;IAC3C,IAAI;MACF,OAAO,MAAMf,gCAAY,CAACe,cAAc,CAAC,IAAI,CAACtB,MAAM,CAAC;IACvD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAasE,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAMhB,gCAAY,CAACgB,eAAe,CAAC,IAAI,CAACvB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAauE,aAAaA,CAAA,EAAkB;IAC1C,IAAI;MACF,OAAO,MAAMjB,gCAAY,CAACiB,aAAa,CAAC,IAAI,CAACxB,MAAM,CAAC;IACtD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAawE,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAMlB,gCAAY,CAACkB,eAAe,CAAC,IAAI,CAACzB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAayE,KAAKA,CAACC,KAAY,EAAiB;IAC9C,IAAI;MACF,OAAO,MAAMpB,gCAAY,CAACmB,KAAK,CAAC,IAAI,CAAC1B,MAAM,EAAE2B,KAAK,CAAC;IACrD,CAAC,CAAC,OAAO1E,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAc2E,yBAAyBA,CAAA,EAAmB;IACxD,OAAOC,4BAAa,CAACD,yBAAyB,CAAC,CAAC;EAClD;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcE,+BAA+BA,CAACC,QAA8C,EAAuB;IACjH,OAAOF,4BAAa,CAACC,+BAA+B,CAACC,QAAQ,CAAC;EAChE;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,yBAAyBA,CAAA,EAA2B;IAChE,OAAOzB,gCAAY,CAACyB,yBAAyB,CAAC,CAAC;EACjD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,6BAA6BA,CAAA,EAA2B;IACpE,OAAO1B,gCAAY,CAAC0B,6BAA6B,CAAC,CAAC;EACrD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,2BAA2BA,CAAA,EAA2B;IAClE,OAAO3B,gCAAY,CAAC2B,2BAA2B,CAAC,CAAC;EACnD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBC,uBAAuBA,CAAA,EAA2C;IACpF,IAAI;MACF,OAAO,MAAM5B,gCAAY,CAAC4B,uBAAuB,CAAC,CAAC;IACrD,CAAC,CAAC,OAAOlF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBmF,2BAA2BA,CAAA,EAA2C;IACxF,IAAI;MACF,OAAO,MAAM7B,gCAAY,CAAC6B,2BAA2B,CAAC,CAAC;IACzD,CAAC,CAAC,OAAOnF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBoF,yBAAyBA,CAAA,EAA2C;IACtF,IAAI;MACF,OAAO,MAAM9B,gCAAY,CAAC8B,yBAAyB,CAAC,CAAC;IACvD,CAAC,CAAC,OAAOpF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACQuC,OAAOA,CAAC8C,KAAyC,EAAQ;IAC/D,MAAMlB,KAAK,GAAGkB,KAAK,CAACC,WAAW;IAC/B,MAAMC,KAAK,GAAG,IAAAC,6BAAgB,EAACrB,KAAK,CAACoB,KAAK,CAAC,GAAGpB,KAAK,CAACoB,KAAK,GAAG/D,SAAS;IACrE;IACA,MAAMiE,WAAW,GAAG,IAAItC,+BAAkB,CAACgB,KAAK,CAACuB,IAAI,EAAEvB,KAAK,CAACwB,OAAO,EAAEJ,KAAK,CAAC;IAE5E,IAAI,IAAI,CAAC3D,KAAK,CAACW,OAAO,IAAI,IAAI,EAAE;MAC9B,IAAI,CAACX,KAAK,CAACW,OAAO,CAACkD,WAAW,CAAC;IACjC,CAAC,MAAM;MACL;MACAG,OAAO,CAACzB,KAAK,CAACsB,WAAW,CAAC;IAC5B;EACF;EAEQ1D,aAAaA,CAAA,EAAS;IAC5B,IAAI,CAACH,KAAK,CAACG,aAAa,GAAG,CAAC;EAC9B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACJ,KAAK,CAACI,SAAS,GAAG,CAAC;EAC1B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACL,KAAK,CAACK,SAAS,GAAG,CAAC;EAC1B;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACN,KAAK,CAACM,gBAAgB,GAAG,CAAC;EACjC;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACP,KAAK,CAACO,gBAAgB,GAAG,CAAC;EACjC;EAEQC,SAASA,CAACiD,KAA2C,EAAQ;IACnE,IAAI,CAACzD,KAAK,CAACQ,SAAS,GAAGiD,KAAK,CAACC,WAAW,CAAC;EAC3C;EAEQjD,0BAA0BA,CAAC;IAAEiD,WAAW,EAAE;MAAEO;IAAkB;EAAuD,CAAC,EAAQ;IACpI,IAAI,CAACpE,cAAc,CAACoE,iBAAiB,GAAGA,iBAAiB;IACzD,IAAI,CAACjE,KAAK,CAACS,0BAA0B,GAAGwD,iBAAiB,CAAC;IAC1D,IAAI,CAACC,qBAAqB,CAAC,CAAC;EAC9B;EAEQxD,2BAA2BA,CAAC;IAAEgD,WAAW,EAAE;MAAES;IAAmB;EAAwD,CAAC,EAAQ;IACvI,IAAI,CAACtE,cAAc,CAACsE,kBAAkB,GAAGA,kBAAkB;IAC3D,IAAI,CAACnE,KAAK,CAACU,2BAA2B,GAAGyD,kBAAkB,CAAC;IAC5D,IAAI,CAACD,qBAAqB,CAAC,CAAC;IAE5B,IAAI/E,oBAAoB,CAAC,IAAI,CAACa,KAAK,CAACZ,cAAc,CAAC,EAAE;MACnD;MACA,IAAI,CAACY,KAAK,CAACZ,cAAc,CAAC+E,kBAAkB,CAACC,KAAK,GAAGD,kBAAkB;IACzE;EACF;EAEQD,qBAAqBA,CAAA,EAAS;IACpC,MAAMG,UAAU,GAAG,IAAI,CAACxE,cAAc,CAACwE,UAAU;IACjD,IAAIA,UAAU,KAAK,IAAI,CAAC1E,cAAc,EAAE;MACtC,IAAI,CAACK,KAAK,CAACsE,mBAAmB,GAAGD,UAAU,CAAC;MAC5C,IAAI,CAAC1E,cAAc,GAAG0E,UAAU;IAClC;EACF;EACA;;EAEQzD,aAAaA,CAAC6C,KAA+C,EAAQ;IAC3E,MAAMc,WAAW,GAAG,IAAI,CAACvE,KAAK,CAACuE,WAAW;IAC1C,IAAIA,WAAW,IAAI,IAAI,EAAE;IAEzBA,WAAW,CAAC3D,aAAa,CAAC6C,KAAK,CAACC,WAAW,CAACc,KAAK,EAAEf,KAAK,CAACC,WAAW,CAACe,KAAK,CAAC;EAC7E;;EAEA;EACQC,iBAAiBA,CAACtF,cAAsC,EAAQ;IACtEuF,oCAAiB,CAACD,iBAAiB,CAAC,IAAI,CAACvD,MAAM,EAAE/B,cAAc,CAAC;EAClE;EAEQwF,mBAAmBA,CAAA,EAAS;IAClCD,oCAAiB,CAACE,oBAAoB,CAAC,IAAI,CAAC1D,MAAM,CAAC;EACrD;EAEQlB,WAAWA,CAAA,EAAS;IAC1B,IAAI,CAACP,mBAAmB,GAAG,IAAI;IAC/B,IAAI,IAAI,CAACM,KAAK,CAACZ,cAAc,IAAI,IAAI,EAAE;MACrC;MACA,IAAI,CAACsF,iBAAiB,CAAC,IAAI,CAAC1E,KAAK,CAACZ,cAAc,CAACA,cAAc,CAAC;MAChE,IAAI,CAAC2B,kBAAkB,GAAG,IAAI,CAACf,KAAK,CAACZ,cAAc,CAACA,cAAc;IACpE;EACF;EAEQc,mBAAmBA,CAAC;IAAEwD,WAAW,EAAE;MAAEoB;IAAW;EAAgD,CAAC,EAAQ;IAC/G,IAAI,CAAC1C,QAAQ,CAAEpB,KAAK,IAAK;MACvB,MAAME,iBAAiB,GAAG,CAAC,GAAGF,KAAK,CAACE,iBAAiB,EAAE4D,UAAU,CAAC;MAClE,OAAO5D,iBAAiB,CAACrC,MAAM,IAAIkG,kBAAQ,GAAG,CAAC,EAAE;QAC/C;QACA7D,iBAAiB,CAAC8D,KAAK,CAAC,CAAC;MAC3B;MAEA,OAAO;QACL,GAAGhE,KAAK;QACRE,iBAAiB,EAAEA;MACrB,CAAC;IACH,CAAC,CAAC;EACJ;;EAEA;EACA+D,kBAAkBA,CAAA,EAAS;IACzB,IAAI,CAAC,IAAI,CAACvF,mBAAmB,EAAE;IAC/B,MAAMN,cAAc,GAAG,IAAI,CAACY,KAAK,CAACZ,cAAc;IAChD,IAAIA,cAAc,EAAEA,cAAc,KAAK,IAAI,CAAC2B,kBAAkB,EAAE;MAC9D;MACA,IAAI3B,cAAc,IAAI,IAAI,EAAE,IAAI,CAACsF,iBAAiB,CAACtF,cAAc,CAACA,cAAc,CAAC,MAC5E,IAAI,CAACwF,mBAAmB,CAAC,CAAC;MAE/B,IAAI,CAAC7D,kBAAkB,GAAG3B,cAAc,EAAEA,cAAc;IAC1D;EACF;EACA;;EAEA;EACO8F,MAAMA,CAAA,EAAoB;IAC/B;IACA,MAAM;MAAEC,MAAM;MAAE/F,cAAc;MAAEmF,WAAW;MAAEa,cAAc;MAAEC,GAAG;MAAEC,YAAY;MAAE,GAAGtF;IAAM,CAAC,GAAG,IAAI,CAACA,KAAK;;IAEvG;IACA,IAAImF,MAAM,IAAI,IAAI,EAAE;MAClB,MAAM,IAAI5D,+BAAkB,CAC1B,kBAAkB,EAClB,kIACF,CAAC;IACH;IAEA,MAAMgE,6BAA6B,GAAGvF,KAAK,CAACsC,KAAK,KAAK,IAAI,IAAIlD,cAAc,IAAI,IAAI;IACpF,MAAMoG,KAAK,GAAG,IAAI,CAACxE,KAAK,CAACC,oBAAoB,GAAG,IAAI,GAAGjB,KAAK,CAACwF,KAAK;IAClE,MAAMC,mBAAmB,GAAGtG,oBAAoB,CAACC,cAAc,CAAC;IAChE,MAAMsG,gBAAgB,GAAGP,MAAM,CAACQ,QAAQ,KAAK,OAAO;;IAEpD;IACA,MAAMC,MAAM,GAAGP,GAAG,IAAI,IAAI,GAAGzF,SAAS,GAAG,OAAOyF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;IAC/E,MAAMQ,MAAM,GAAGR,GAAG,IAAI,IAAI,GAAGzF,SAAS,GAAG,OAAOyF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;;IAE/E;IACA,IAAIS,iBAAqC;IACzC,IAAIC,eAAmC;IACvC,IAAI,OAAOT,YAAY,KAAK,QAAQ,EAAE;MACpC;MACAS,eAAe,GAAGT,YAAY;IAChC,CAAC,MAAM,IAAI,OAAOA,YAAY,KAAK,QAAQ,IAAIA,YAAY,KAAK,QAAQ,EAAE;MACxE;MACAQ,iBAAiB,GAAG,IAAI,CAACjE,oBAAoB,CAACyD,YAAY,CAAC;IAC7D;IAEA,oBACE9H,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAC9H,iBAAA,CAAA+H,gBAAgB,EAAA1H,QAAA,KACXyB,KAAK;MACTkG,QAAQ,EAAEf,MAAM,CAACgB,EAAG;MACpBtF,GAAG,EAAE,IAAI,CAACA,GAAI;MACd2E,KAAK,EAAEA,KAAM;MACbI,MAAM,EAAEA,MAAO;MACfC,MAAM,EAAEA,MAAO;MACfO,UAAU,EAAEpG,KAAK,CAACoG,UAAU,IAAIV,gBAAiB;MACjDzF,WAAW,EAAE,IAAI,CAACA,WAAY;MAC9BC,mBAAmB,EAAEkF,cAAc,GAAG,IAAI,CAAClF,mBAAmB,GAAGN,SAAU;MAC3EO,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCS,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCR,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1B6F,sBAAsB,EAAEP,iBAAkB;MAC1CQ,oBAAoB,EAAEP,eAAgB;MACtCtF,0BAA0B,EAAE,IAAI,CAACA,0BAA2B;MAC5DC,2BAA2B,EAAE,IAAI,CAACA,2BAA4B;MAC9DC,OAAO,EAAE,IAAI,CAACA,OAAQ;MACtB4F,kBAAkB,EAAEhC,WAAY;MAChCiC,oBAAoB,EAAEpH,cAAc,IAAI,IAAK;MAC7CqH,uBAAuB,EAAEzG,KAAK,CAACyG,uBAAuB,IAAIlB,6BAA8B;MACxFmB,OAAO,EAAEjB,mBAAmB,GAAG,KAAK,GAAIzF,KAAK,CAAC0G,OAAO,IAAI;IAAM,IAC9DjB,mBAAmB,iBAClBjI,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAChI,iBAAA,CAAA2I,gBAAgB;MACfC,KAAK,EAAEC,MAAM,CAACC,iBAAkB;MAChCC,iBAAiB,EAAE3H,cAAc,CAAC2H,iBAAkB;MACpDC,UAAU,EAAEhH,KAAK,CAACgH;IAAW,CAC9B,CACF,EACA5B,cAAc,iBACb5H,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAC/H,SAAA,CAAAgJ,QAAQ;MAACL,KAAK,EAAEC,MAAM,CAACK,QAAS;MAAChG,iBAAiB,EAAE,IAAI,CAACF,KAAK,CAACE,iBAAkB;MAACiG,YAAY,EAAEnH,KAAK,CAACoH,MAAM,EAAEvB,MAAM,IAAI;IAAG,CAAE,CAEhH,CAAC;EAEvB;AACF;AACA;AAAAwB,OAAA,CAAA/H,MAAA,GAAAA,MAAA;AAEA,MAAMuH,MAAM,GAAGS,uBAAU,CAACC,MAAM,CAAC;EAC/BT,iBAAiB,EAAE;IACjBU,IAAI,EAAE;EACR,CAAC;EACDN,QAAQ,EAAE;IACRO,SAAS,EAAE,CAAC;IACZ9B,QAAQ,EAAE,UAAU;IACpB+B,IAAI,EAAE,EAAE;IACRC,GAAG,EAAE;EACP;AACF,CAAC,CAAC","ignoreList":[]} ++{ ++ "version": 3, ++ "names": [ ++ "_react", ++ "_interopRequireDefault", ++ "require", ++ "_reactNative", ++ "_CameraError", ++ "_NativeCameraModule", ++ "_VisionCameraProxy", ++ "_CameraDevices", ++ "_SkiaCameraCanvas", ++ "_FpsGraph", ++ "_NativeCameraView", ++ "_RotationHelper", ++ "e", ++ "__esModule", ++ "default", ++ "_extends", ++ "Object", ++ "assign", ++ "bind", ++ "n", ++ "arguments", ++ "length", ++ "t", ++ "r", ++ "hasOwnProperty", ++ "call", ++ "apply", ++ "isSkiaFrameProcessor", ++ "frameProcessor", ++ "type", ++ "Camera", ++ "React", ++ "PureComponent", ++ "displayName", ++ "isNativeViewMounted", ++ "lastUIRotation", ++ "undefined", ++ "rotationHelper", ++ "RotationHelper", ++ "constructor", ++ "props", ++ "onViewReady", ++ "onAverageFpsChanged", ++ "onInitialized", ++ "onStarted", ++ "onStopped", ++ "onPreviewStarted", ++ "onPreviewStopped", ++ "onShutter", ++ "onOutputOrientationChanged", ++ "onPreviewOrientationChanged", ++ "onError", ++ "onCodeScanned", ++ "ref", ++ "createRef", ++ "lastFrameProcessor", ++ "state", ++ "isRecordingWithFlash", ++ "averageFpsSamples", ++ "handle", ++ "nodeHandle", ++ "findNodeHandle", ++ "current", ++ "CameraRuntimeError", ++ "takePhoto", ++ "options", ++ "CameraModule", ++ "tryParseNativeCameraError", ++ "takeSnapshot", ++ "getBitRateMultiplier", ++ "bitRate", ++ "startRecording", ++ "onRecordingError", ++ "onRecordingFinished", ++ "passThruOptions", ++ "flash", ++ "setState", ++ "onRecordCallback", ++ "video", ++ "error", ++ "nativeRecordVideoOptions", ++ "pauseRecording", ++ "resumeRecording", ++ "stopRecording", ++ "cancelRecording", ++ "focus", ++ "point", ++ "getAvailableCameraDevices", ++ "CameraDevices", ++ "addCameraDevicesChangedListener", ++ "listener", ++ "getCameraPermissionStatus", ++ "getMicrophonePermissionStatus", ++ "getLocationPermissionStatus", ++ "requestCameraPermission", ++ "requestMicrophonePermission", ++ "requestLocationPermission", ++ "event", ++ "nativeEvent", ++ "cause", ++ "isErrorWithCause", ++ "cameraError", ++ "code", ++ "message", ++ "console", ++ "outputOrientation", ++ "maybeUpdateUIRotation", ++ "previewOrientation", ++ "value", ++ "uiRotation", ++ "onUIRotationChanged", ++ "codeScanner", ++ "codes", ++ "frame", ++ "setFrameProcessor", ++ "VisionCameraProxy", ++ "unsetFrameProcessor", ++ "removeFrameProcessor", ++ "averageFps", ++ "MAX_BARS", ++ "shift", ++ "componentDidUpdate", ++ "render", ++ "device", ++ "enableFpsGraph", ++ "fps", ++ "videoBitRate", ++ "shouldEnableBufferCompression", ++ "torch", ++ "isRenderingWithSkia", ++ "shouldBeMirrored", ++ "position", ++ "minFps", ++ "maxFps", ++ "bitRateMultiplier", ++ "bitRateOverride", ++ "createElement", ++ "NativeCameraView", ++ "cameraId", ++ "id", ++ "isMirrored", ++ "videoBitRateMultiplier", ++ "videoBitRateOverride", ++ "codeScannerOptions", ++ "enableFrameProcessor", ++ "enableBufferCompression", ++ "preview", ++ "SkiaCameraCanvas", ++ "style", ++ "styles", ++ "customPreviewView", ++ "offscreenTextures", ++ "resizeMode", ++ "FpsGraph", ++ "fpsGraph", ++ "targetMaxFps", ++ "format", ++ "exports", ++ "StyleSheet", ++ "create", ++ "flex", ++ "elevation", ++ "left", ++ "top" ++ ], ++ "sourceRoot": "../../src", ++ "sources": [ ++ "Camera.tsx" ++ ], ++ "mappings": ";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAGA,IAAAE,YAAA,GAAAF,OAAA;AAEA,IAAAG,mBAAA,GAAAH,OAAA;AAIA,IAAAI,kBAAA,GAAAJ,OAAA;AACA,IAAAK,cAAA,GAAAL,OAAA;AAGA,IAAAM,iBAAA,GAAAN,OAAA;AAEA,IAAAO,SAAA,GAAAP,OAAA;AASA,IAAAQ,iBAAA,GAAAR,OAAA;AACA,IAAAS,eAAA,GAAAT,OAAA;AAAiD,SAAAD,uBAAAW,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,SAAA,WAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,CAAA,aAAAP,CAAA,MAAAA,CAAA,GAAAQ,SAAA,CAAAC,MAAA,EAAAT,CAAA,UAAAU,CAAA,GAAAF,SAAA,CAAAR,CAAA,YAAAW,CAAA,IAAAD,CAAA,OAAAE,cAAA,CAAAC,IAAA,CAAAH,CAAA,EAAAC,CAAA,MAAAJ,CAAA,CAAAI,CAAA,IAAAD,CAAA,CAAAC,CAAA,aAAAJ,CAAA,KAAAJ,QAAA,CAAAW,KAAA,OAAAN,SAAA;AAEjD;;AAUA;;AAEA,SAASO,oBAAoBA,CAACC,cAAgE,EAA4C;EACxI,OAAOA,cAAc,EAAEC,IAAI,KAAK,eAAe;AACjD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAMC,MAAM,SAASC,cAAK,CAACC,aAAa,CAA2B;EACxE;EACA,OAAOC,WAAW,GAAG,QAAQ;EAC7B;EACAA,WAAW,GAAGH,MAAM,CAACG,WAAW;EAExBC,mBAAmB,GAAG,KAAK;EAC3BC,cAAc,GAAuBC,SAAS;EAC9CC,cAAc,GAAG,IAAIC,8BAAc,CAAC,CAAC;EAI7C;EACAC,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,CAAC;IACZ,IAAI,CAACC,WAAW,GAAG,IAAI,CAACA,WAAW,CAACvB,IAAI,CAAC,IAAI,CAAC;IAC9C,IAAI,CAACwB,mBAAmB,GAAG,IAAI,CAACA,mBAAmB,CAACxB,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,CAACyB,aAAa,GAAG,IAAI,CAACA,aAAa,CAACzB,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAAC0B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC1B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC2B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC3B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC4B,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAAC5B,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAAC6B,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAAC7B,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAAC8B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC9B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC+B,0BAA0B,GAAG,IAAI,CAACA,0BAA0B,CAAC/B,IAAI,CAAC,IAAI,CAAC;IAC5E,IAAI,CAACgC,2BAA2B,GAAG,IAAI,CAACA,2BAA2B,CAAChC,IAAI,CAAC,IAAI,CAAC;IAC9E,IAAI,CAACiC,OAAO,GAAG,IAAI,CAACA,OAAO,CAACjC,IAAI,CAAC,IAAI,CAAC;IACtC,IAAI,CAACkC,aAAa,GAAG,IAAI,CAACA,aAAa,CAAClC,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACmC,GAAG,gBAAGtB,cAAK,CAACuB,SAAS,CAAU,CAAC;IACrC,IAAI,CAACC,kBAAkB,GAAGnB,SAAS;IACnC,IAAI,CAACoB,KAAK,GAAG;MACXC,oBAAoB,EAAE,KAAK;MAC3BC,iBAAiB,EAAE;IACrB,CAAC;EACH;EAEA,IAAYC,MAAMA,CAAA,EAAW;IAC3B,MAAMC,UAAU,GAAG,IAAAC,2BAAc,EAAC,IAAI,CAACR,GAAG,CAACS,OAAO,CAAC;IACnD,IAAIF,UAAU,IAAI,IAAI,IAAIA,UAAU,KAAK,CAAC,CAAC,EAAE;MAC3C,MAAM,IAAIG,+BAAkB,CAC1B,uBAAuB,EACvB,iGACF,CAAC;IACH;IAEA,OAAOH,UAAU;EACnB;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaI,SAASA,CAACC,OAA0B,EAAsB;IACrE,IAAI;MACF,OAAO,MAAMC,gCAAY,CAACF,SAAS,CAAC,IAAI,CAACL,MAAM,EAAEM,OAAO,IAAI,CAAC,CAAC,CAAC;IACjE,CAAC,CAAC,OAAOrD,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAawD,YAAYA,CAACH,OAA6B,EAAsB;IAC3E,IAAI;MACF,OAAO,MAAMC,gCAAY,CAACE,YAAY,CAAC,IAAI,CAACT,MAAM,EAAEM,OAAO,IAAI,CAAC,CAAC,CAAC;IACpE,CAAC,CAAC,OAAOrD,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EAEQyD,oBAAoBA,CAACC,OAAoC,EAAU;IACzE,IAAI,OAAOA,OAAO,KAAK,QAAQ,IAAIA,OAAO,IAAI,IAAI,EAAE,OAAO,CAAC;IAC5D,QAAQA,OAAO;MACb,KAAK,WAAW;QACd,OAAO,GAAG;MACZ,KAAK,KAAK;QACR,OAAO,GAAG;MACZ,KAAK,QAAQ;QACX,OAAO,CAAC;MACV,KAAK,MAAM;QACT,OAAO,GAAG;MACZ,KAAK,YAAY;QACf,OAAO,GAAG;IACd;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,cAAcA,CAACN,OAA2B,EAAQ;IACvD,MAAM;MAAEO,gBAAgB;MAAEC,mBAAmB;MAAE,GAAGC;IAAgB,CAAC,GAAGT,OAAO;IAC7E,IAAI,OAAOO,gBAAgB,KAAK,UAAU,IAAI,OAAOC,mBAAmB,KAAK,UAAU,EACrF,MAAM,IAAIV,+BAAkB,CAAC,6BAA6B,EAAE,qEAAqE,CAAC;IAEpI,IAAIE,OAAO,CAACU,KAAK,KAAK,IAAI,EAAE;MAC1B;MACA,IAAI,CAACC,QAAQ,CAAC;QACZnB,oBAAoB,EAAE;MACxB,CAAC,CAAC;IACJ;IAEA,MAAMoB,gBAAgB,GAAGA,CAACC,KAAiB,EAAEC,KAA0B,KAAW;MAChF,IAAI,IAAI,CAACvB,KAAK,CAACC,oBAAoB,EAAE;QACnC;QACA,IAAI,CAACmB,QAAQ,CAAC;UACZnB,oBAAoB,EAAE;QACxB,CAAC,CAAC;MACJ;MAEA,IAAIsB,KAAK,IAAI,IAAI,EAAE,OAAOP,gBAAgB,CAACO,KAAK,CAAC;MACjD,IAAID,KAAK,IAAI,IAAI,EAAE,OAAOL,mBAAmB,CAACK,KAAK,CAAC;IACtD,CAAC;IAED,MAAME,wBAAkD,GAAGN,eAAe;IAC1E,IAAI;MACF;MACAR,gCAAY,CAACK,cAAc,CAAC,IAAI,CAACZ,MAAM,EAAEqB,wBAAwB,EAAEH,gBAAgB,CAAC;IACtF,CAAC,CAAC,OAAOjE,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaqE,cAAcA,CAAA,EAAkB;IAC3C,IAAI;MACF,OAAO,MAAMf,gCAAY,CAACe,cAAc,CAAC,IAAI,CAACtB,MAAM,CAAC;IACvD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAasE,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAMhB,gCAAY,CAACgB,eAAe,CAAC,IAAI,CAACvB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAauE,aAAaA,CAAA,EAAkB;IAC1C,IAAI;MACF,OAAO,MAAMjB,gCAAY,CAACiB,aAAa,CAAC,IAAI,CAACxB,MAAM,CAAC;IACtD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAawE,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAMlB,gCAAY,CAACkB,eAAe,CAAC,IAAI,CAACzB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAayE,KAAKA,CAACC,KAAY,EAAiB;IAC9C,IAAI;MACF,OAAO,MAAMpB,gCAAY,CAACmB,KAAK,CAAC,IAAI,CAAC1B,MAAM,EAAE2B,KAAK,CAAC;IACrD,CAAC,CAAC,OAAO1E,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAc2E,yBAAyBA,CAAA,EAAmB;IACxD,OAAOC,4BAAa,CAACD,yBAAyB,CAAC,CAAC;EAClD;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcE,+BAA+BA,CAACC,QAA8C,EAAuB;IACjH,OAAOF,4BAAa,CAACC,+BAA+B,CAACC,QAAQ,CAAC;EAChE;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,yBAAyBA,CAAA,EAA2B;IAChE,OAAOzB,gCAAY,CAACyB,yBAAyB,CAAC,CAAC;EACjD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,6BAA6BA,CAAA,EAA2B;IACpE,OAAO1B,gCAAY,CAAC0B,6BAA6B,CAAC,CAAC;EACrD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,2BAA2BA,CAAA,EAA2B;IAClE,OAAO3B,gCAAY,CAAC2B,2BAA2B,CAAC,CAAC;EACnD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBC,uBAAuBA,CAAA,EAA2C;IACpF,IAAI;MACF,OAAO,MAAM5B,gCAAY,CAAC4B,uBAAuB,CAAC,CAAC;IACrD,CAAC,CAAC,OAAOlF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBmF,2BAA2BA,CAAA,EAA2C;IACxF,IAAI;MACF,OAAO,MAAM7B,gCAAY,CAAC6B,2BAA2B,CAAC,CAAC;IACzD,CAAC,CAAC,OAAOnF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBoF,yBAAyBA,CAAA,EAA2C;IACtF,IAAI;MACF,OAAO,MAAM9B,gCAAY,CAAC8B,yBAAyB,CAAC,CAAC;IACvD,CAAC,CAAC,OAAOpF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACQuC,OAAOA,CAAC8C,KAAyC,EAAQ;IAC/D,MAAMlB,KAAK,GAAGkB,KAAK,CAACC,WAAW;IAC/B,MAAMC,KAAK,GAAG,IAAAC,6BAAgB,EAACrB,KAAK,CAACoB,KAAK,CAAC,GAAGpB,KAAK,CAACoB,KAAK,GAAG/D,SAAS;IACrE;IACA,MAAMiE,WAAW,GAAG,IAAItC,+BAAkB,CAACgB,KAAK,CAACuB,IAAI,EAAEvB,KAAK,CAACwB,OAAO,EAAEJ,KAAK,CAAC;IAE5E,IAAI,IAAI,CAAC3D,KAAK,CAACW,OAAO,IAAI,IAAI,EAAE;MAC9B,IAAI,CAACX,KAAK,CAACW,OAAO,CAACkD,WAAW,CAAC;IACjC,CAAC,MAAM;MACL;MACAG,OAAO,CAACzB,KAAK,CAACsB,WAAW,CAAC;IAC5B;EACF;EAEQ1D,aAAaA,CAAA,EAAS;IAC5B,IAAI,CAACH,KAAK,CAACG,aAAa,GAAG,CAAC;EAC9B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACJ,KAAK,CAACI,SAAS,GAAG,CAAC;EAC1B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACL,KAAK,CAACK,SAAS,GAAG,CAAC;EAC1B;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACN,KAAK,CAACM,gBAAgB,GAAG,CAAC;EACjC;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACP,KAAK,CAACO,gBAAgB,GAAG,CAAC;EACjC;EAEQC,SAASA,CAACiD,KAA2C,EAAQ;IACnE,IAAI,CAACzD,KAAK,CAACQ,SAAS,GAAGiD,KAAK,CAACC,WAAW,CAAC;EAC3C;EAEQjD,0BAA0BA,CAAC;IAAEiD,WAAW,EAAE;MAAEO;IAAkB;EAAuD,CAAC,EAAQ;IACpI,IAAI,CAACpE,cAAc,CAACoE,iBAAiB,GAAGA,iBAAiB;IACzD,IAAI,CAACjE,KAAK,CAACS,0BAA0B,GAAGwD,iBAAiB,CAAC;IAC1D,IAAI,CAACC,qBAAqB,CAAC,CAAC;EAC9B;EAEQxD,2BAA2BA,CAAC;IAAEgD,WAAW,EAAE;MAAES;IAAmB;EAAwD,CAAC,EAAQ;IACvI,IAAI,CAACtE,cAAc,CAACsE,kBAAkB,GAAGA,kBAAkB;IAC3D,IAAI,CAACnE,KAAK,CAACU,2BAA2B,GAAGyD,kBAAkB,CAAC;IAC5D,IAAI,CAACD,qBAAqB,CAAC,CAAC;IAE5B,IAAI/E,oBAAoB,CAAC,IAAI,CAACa,KAAK,CAACZ,cAAc,CAAC,EAAE;MACnD;MACA,IAAI,CAACY,KAAK,CAACZ,cAAc,CAAC+E,kBAAkB,CAACC,KAAK,GAAGD,kBAAkB;IACzE;EACF;EAEQD,qBAAqBA,CAAA,EAAS;IACpC,MAAMG,UAAU,GAAG,IAAI,CAACxE,cAAc,CAACwE,UAAU;IACjD,IAAIA,UAAU,KAAK,IAAI,CAAC1E,cAAc,EAAE;MACtC,IAAI,CAACK,KAAK,CAACsE,mBAAmB,GAAGD,UAAU,CAAC;MAC5C,IAAI,CAAC1E,cAAc,GAAG0E,UAAU;IAClC;EACF;EACA;;EAEQzD,aAAaA,CAAC6C,KAA+C,EAAQ;IAC3E,MAAMc,WAAW,GAAG,IAAI,CAACvE,KAAK,CAACuE,WAAW;IAC1C,IAAIA,WAAW,IAAI,IAAI,EAAE;IAEzBA,WAAW,CAAC3D,aAAa,CAAC6C,KAAK,CAACC,WAAW,CAACc,KAAK,EAAEf,KAAK,CAACC,WAAW,CAACe,KAAK,CAAC;EAC7E;;EAEA;EACQC,iBAAiBA,CAACtF,cAAsC,EAAQ;IACtEuF,oCAAiB,CAACD,iBAAiB,CAAC,IAAI,CAACvD,MAAM,EAAE/B,cAAc,CAAC;EAClE;EAEQwF,mBAAmBA,CAAA,EAAS;IAClCD,oCAAiB,CAACE,oBAAoB,CAAC,IAAI,CAAC1D,MAAM,CAAC;EACrD;EAEQlB,WAAWA,CAAA,EAAS;IAC1B,IAAI,CAACP,mBAAmB,GAAG,IAAI;IAC/B,IAAI,IAAI,CAACM,KAAK,CAACZ,cAAc,IAAI,IAAI,EAAE;MACrC;MACA,IAAI,CAACsF,iBAAiB,CAAC,IAAI,CAAC1E,KAAK,CAACZ,cAAc,CAACA,cAAc,CAAC;MAChE,IAAI,CAAC2B,kBAAkB,GAAG,IAAI,CAACf,KAAK,CAACZ,cAAc,CAACA,cAAc;IACpE;EACF;EAEQc,mBAAmBA,CAAC;IAAEwD,WAAW,EAAE;MAAEoB;IAAW;EAAgD,CAAC,EAAQ;IAC/G,IAAI,CAAC1C,QAAQ,CAAEpB,KAAK,IAAK;MACvB,MAAME,iBAAiB,GAAG,CAAC,GAAGF,KAAK,CAACE,iBAAiB,EAAE4D,UAAU,CAAC;MAClE,OAAO5D,iBAAiB,CAACrC,MAAM,IAAIkG,kBAAQ,GAAG,CAAC,EAAE;QAC/C;QACA7D,iBAAiB,CAAC8D,KAAK,CAAC,CAAC;MAC3B;MAEA,OAAO;QACL,GAAGhE,KAAK;QACRE,iBAAiB,EAAEA;MACrB,CAAC;IACH,CAAC,CAAC;EACJ;;EAEA;EACA+D,kBAAkBA,CAAA,EAAS;IACzB,IAAI,CAAC,IAAI,CAACvF,mBAAmB,EAAE;IAC/B,MAAMN,cAAc,GAAG,IAAI,CAACY,KAAK,CAACZ,cAAc;IAChD,IAAIA,cAAc,EAAEA,cAAc,KAAK,IAAI,CAAC2B,kBAAkB,EAAE;MAC9D;MACA,IAAI3B,cAAc,IAAI,IAAI,EAAE,IAAI,CAACsF,iBAAiB,CAACtF,cAAc,CAACA,cAAc,CAAC,MAC5E,IAAI,CAACwF,mBAAmB,CAAC,CAAC;MAE/B,IAAI,CAAC7D,kBAAkB,GAAG3B,cAAc,EAAEA,cAAc;IAC1D;EACF;EACA;;EAEA;EACO8F,MAAMA,CAAA,EAAoB;IAC/B;IACA,MAAM;MAAEC,MAAM;MAAE/F,cAAc;MAAEmF,WAAW;MAAEa,cAAc;MAAEC,GAAG;MAAEC,YAAY;MAAE,GAAGtF;IAAM,CAAC,GAAG,IAAI,CAACA,KAAK;;IAEvG;IACA,IAAImF,MAAM,IAAI,IAAI,EAAE;MAClB,MAAM,IAAI5D,+BAAkB,CAC1B,kBAAkB,EAClB,kIACF,CAAC;IACH;IAEA,MAAMgE,6BAA6B,GAAGvF,KAAK,CAACsC,KAAK,KAAK,IAAI,IAAIlD,cAAc,IAAI,IAAI;IACpF,MAAMoG,KAAK,GAAG,IAAI,CAACxE,KAAK,CAACC,oBAAoB,GAAG,IAAI,GAAGjB,KAAK,CAACwF,KAAK;IAClE,MAAMC,mBAAmB,GAAGtG,oBAAoB,CAACC,cAAc,CAAC;IAChE,MAAMsG,gBAAgB,GAAGP,MAAM,CAACQ,QAAQ,KAAK,OAAO;;IAEpD;IACA,MAAMC,MAAM,GAAGP,GAAG,IAAI,IAAI,GAAGzF,SAAS,GAAG,OAAOyF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;IAC/E,MAAMQ,MAAM,GAAGR,GAAG,IAAI,IAAI,GAAGzF,SAAS,GAAG,OAAOyF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;;IAE/E;IACA,IAAIS,iBAAqC;IACzC,IAAIC,eAAmC;IACvC,IAAI,OAAOT,YAAY,KAAK,QAAQ,EAAE;MACpC;MACAS,eAAe,GAAGT,YAAY;IAChC,CAAC,MAAM,IAAI,OAAOA,YAAY,KAAK,QAAQ,IAAIA,YAAY,KAAK,QAAQ,EAAE;MACxE;MACAQ,iBAAiB,GAAG,IAAI,CAACjE,oBAAoB,CAACyD,YAAY,CAAC;IAC7D;IAEA,oBACE9H,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAC9H,iBAAA,CAAA+H,gBAAgB,EAAA1H,QAAA,KACXyB,KAAK;MACTkG,QAAQ,EAAEf,MAAM,CAACgB,EAAG;MACpBtF,GAAG,EAAE,IAAI,CAACA,GAAI;MACd2E,KAAK,EAAEA,KAAM;MACbI,MAAM,EAAEA,MAAO;MACfC,MAAM,EAAEA,MAAO;MACfO,UAAU,EAAEpG,KAAK,CAACoG,UAAU,IAAIV,gBAAiB;MACjDzF,WAAW,EAAE,IAAI,CAACA,WAAY;MAC9BC,mBAAmB,EAAEkF,cAAc,GAAG,IAAI,CAAClF,mBAAmB,GAAGN,SAAU;MAC3EO,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCS,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCR,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1B6F,sBAAsB,EAAEP,iBAAkB;MAC1CQ,oBAAoB,EAAEP,eAAgB;MACtCtF,0BAA0B,EAAE,IAAI,CAACA,0BAA2B;MAC5DC,2BAA2B,EAAE,IAAI,CAACA,2BAA4B;MAC9DC,OAAO,EAAE,IAAI,CAACA,OAAQ;MACtB4F,kBAAkB,EAAEhC,WAAY;MAChCiC,oBAAoB,EAAEpH,cAAc,IAAI,IAAK;MAC7CqH,uBAAuB,EAAEzG,KAAK,CAACyG,uBAAuB,IAAIlB,6BAA8B;MACxFmB,OAAO,EAAEjB,mBAAmB,GAAG,KAAK,GAAIzF,KAAK,CAAC0G,OAAO,IAAI;IAAM,IAC9DjB,mBAAmB,iBAClBjI,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAChI,iBAAA,CAAA2I,gBAAgB;MACfC,KAAK,EAAEC,MAAM,CAACC,iBAAkB;MAChCC,iBAAiB,EAAE3H,cAAc,CAAC2H,iBAAkB;MACpDC,UAAU,EAAEhH,KAAK,CAACgH;IAAW,CAC9B,CACF,EACA5B,cAAc,iBACb5H,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAC/H,SAAA,CAAAgJ,QAAQ;MAACL,KAAK,EAAEC,MAAM,CAACK,QAAS;MAAChG,iBAAiB,EAAE,IAAI,CAACF,KAAK,CAACE,iBAAkB;MAACiG,YAAY,EAAEnH,KAAK,CAACoH,MAAM,EAAEvB,MAAM,IAAI;IAAG,CAAE,CAEhH,CAAC;EAEvB;AACF;AACA;AAAAwB,OAAA,CAAA/H,MAAA,GAAAA,MAAA;AAEA,MAAMuH,MAAM,GAAGS,uBAAU,CAACC,MAAM,CAAC;EAC/BT,iBAAiB,EAAE;IACjBU,IAAI,EAAE;EACR,CAAC;EACDN,QAAQ,EAAE;IACRO,SAAS,EAAE,CAAC;IACZ9B,QAAQ,EAAE,UAAU;IACpB+B,IAAI,EAAE,EAAE;IACRC,GAAG,EAAE;EACP;AACF,CAAC,CAAC", ++ "ignoreList": [] ++} +diff --git a/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js b/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js +new file mode 100644 +index 0000000..9e627bc +--- /dev/null ++++ b/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js +@@ -0,0 +1,13 @@ ++'use strict'; ++ ++Object.defineProperty(exports, '__esModule', { ++ value: true, ++}); ++exports.default = void 0; ++var _codegenNativeComponent = _interopRequireDefault(require('react-native/Libraries/Utilities/codegenNativeComponent')); ++function _interopRequireDefault(obj) { ++ return obj && obj.__esModule ? obj : {default: obj}; ++} ++/* eslint-disable @typescript-eslint/ban-types */ ++var _default = (exports.default = (0, _codegenNativeComponent.default)('CameraView')); ++//# sourceMappingURL=CameraViewNativeComponent.js.map +diff --git a/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js.map b/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js.map +new file mode 100644 +index 0000000..f3c7b03 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js.map +@@ -0,0 +1,19 @@ ++{ ++ "version": 3, ++ "names": [ ++ "_codegenNativeComponent", ++ "_interopRequireDefault", ++ "require", ++ "obj", ++ "__esModule", ++ "default", ++ "_default", ++ "exports", ++ "codegenNativeComponent" ++ ], ++ "sourceRoot": "../../../src", ++ "sources": [ ++ "specs/CameraViewNativeComponent.ts" ++ ], ++ "mappings": ";;;;;;AAGA,IAAAA,uBAAA,GAAAC,sBAAA,CAAAC,OAAA;AAA6F,SAAAD,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAH7F;AAAA,IAAAG,QAAA,GAAAC,OAAA,CAAAF,OAAA,GA0Fe,IAAAG,+BAAsB,EAAc,YAAY,CAAC" ++} +diff --git a/node_modules/react-native-vision-camera/lib/module/Camera.js b/node_modules/react-native-vision-camera/lib/module/Camera.js +index e97f27c..95a2328 100644 +--- a/node_modules/react-native-vision-camera/lib/module/Camera.js ++++ b/node_modules/react-native-vision-camera/lib/module/Camera.js +@@ -1,21 +1,35 @@ +-function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } + import React from 'react'; +-import { findNodeHandle, StyleSheet } from 'react-native'; +-import { CameraRuntimeError, tryParseNativeCameraError, isErrorWithCause } from './CameraError'; +-import { CameraModule } from './NativeCameraModule'; +-import { VisionCameraProxy } from './frame-processors/VisionCameraProxy'; +-import { CameraDevices } from './CameraDevices'; +-import { SkiaCameraCanvas } from './skia/SkiaCameraCanvas'; +-import { FpsGraph, MAX_BARS } from './FpsGraph'; +-import { NativeCameraView } from './NativeCameraView'; +-import { RotationHelper } from './RotationHelper'; ++import {findNodeHandle, StyleSheet} from 'react-native'; ++import {CameraDevices} from './CameraDevices'; ++import {CameraRuntimeError, isErrorWithCause, tryParseNativeCameraError} from './CameraError'; ++import {FpsGraph, MAX_BARS} from './FpsGraph'; ++import {VisionCameraProxy} from './frame-processors/VisionCameraProxy'; ++import {CameraModule} from './NativeCameraModule'; ++import {NativeCameraView} from './NativeCameraView'; ++import {RotationHelper} from './RotationHelper'; ++import {SkiaCameraCanvas} from './skia/SkiaCameraCanvas'; ++ ++function _extends() { ++ return ( ++ (_extends = Object.assign ++ ? Object.assign.bind() ++ : function (n) { ++ for (var e = 1; e < arguments.length; e++) { ++ var t = arguments[e]; ++ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); ++ } ++ return n; ++ }), ++ _extends.apply(null, arguments) ++ ); ++} + + //#region Types + + //#endregion + + function isSkiaFrameProcessor(frameProcessor) { +- return frameProcessor?.type === 'drawable-skia'; ++ return frameProcessor?.type === 'drawable-skia'; + } + + //#region Camera Component +@@ -52,609 +66,597 @@ function isSkiaFrameProcessor(frameProcessor) { + * @component + */ + export class Camera extends React.PureComponent { +- /** @internal */ +- static displayName = 'Camera'; +- /** @internal */ +- displayName = Camera.displayName; +- isNativeViewMounted = false; +- lastUIRotation = undefined; +- rotationHelper = new RotationHelper(); +- /** @internal */ +- constructor(props) { +- super(props); +- this.onViewReady = this.onViewReady.bind(this); +- this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); +- this.onInitialized = this.onInitialized.bind(this); +- this.onStarted = this.onStarted.bind(this); +- this.onStopped = this.onStopped.bind(this); +- this.onPreviewStarted = this.onPreviewStarted.bind(this); +- this.onPreviewStopped = this.onPreviewStopped.bind(this); +- this.onShutter = this.onShutter.bind(this); +- this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); +- this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); +- this.onError = this.onError.bind(this); +- this.onCodeScanned = this.onCodeScanned.bind(this); +- this.ref = /*#__PURE__*/React.createRef(); +- this.lastFrameProcessor = undefined; +- this.state = { +- isRecordingWithFlash: false, +- averageFpsSamples: [] +- }; +- } +- get handle() { +- const nodeHandle = findNodeHandle(this.ref.current); +- if (nodeHandle == null || nodeHandle === -1) { +- throw new CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); +- } +- return nodeHandle; +- } ++ /** @internal */ ++ static displayName = 'Camera'; ++ /** @internal */ ++ displayName = Camera.displayName; ++ isNativeViewMounted = false; ++ lastUIRotation = undefined; ++ rotationHelper = new RotationHelper(); ++ /** @internal */ ++ constructor(props) { ++ super(props); ++ this.onViewReady = this.onViewReady.bind(this); ++ this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); ++ this.onInitialized = this.onInitialized.bind(this); ++ this.onStarted = this.onStarted.bind(this); ++ this.onStopped = this.onStopped.bind(this); ++ this.onPreviewStarted = this.onPreviewStarted.bind(this); ++ this.onPreviewStopped = this.onPreviewStopped.bind(this); ++ this.onShutter = this.onShutter.bind(this); ++ this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); ++ this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); ++ this.onError = this.onError.bind(this); ++ this.onCodeScanned = this.onCodeScanned.bind(this); ++ this.ref = /*#__PURE__*/ React.createRef(); ++ this.lastFrameProcessor = undefined; ++ this.state = { ++ isRecordingWithFlash: false, ++ averageFpsSamples: [], ++ }; ++ } ++ get handle() { ++ const nodeHandle = findNodeHandle(this.ref.current); ++ if (nodeHandle == null || nodeHandle === -1) { ++ throw new CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); ++ } ++ return nodeHandle; ++ } + +- //#region View-specific functions (UIViewManager) +- /** +- * Take a single photo and write it's content to a temporary file. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * @example +- * ```ts +- * const photo = await camera.current.takePhoto({ +- * flash: 'on', +- * enableAutoRedEyeReduction: true +- * }) +- * ``` +- */ +- async takePhoto(options) { +- try { +- return await CameraModule.takePhoto(this.handle, options ?? {}); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } ++ //#region View-specific functions (UIViewManager) ++ /** ++ * Take a single photo and write it's content to a temporary file. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * const photo = await camera.current.takePhoto({ ++ * flash: 'on', ++ * enableAutoRedEyeReduction: true ++ * }) ++ * ``` ++ */ ++ async takePhoto(options) { ++ try { ++ return await CameraModule.takePhoto(this.handle, options ?? {}); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } + +- /** +- * Captures a snapshot of the Camera view and write it's content to a temporary file. +- * +- * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. +- * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * @example +- * ```ts +- * const snapshot = await camera.current.takeSnapshot({ +- * quality: 100 +- * }) +- * ``` +- */ +- async takeSnapshot(options) { +- try { +- return await CameraModule.takeSnapshot(this.handle, options ?? {}); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } +- getBitRateMultiplier(bitRate) { +- if (typeof bitRate === 'number' || bitRate == null) return 1; +- switch (bitRate) { +- case 'extra-low': +- return 0.6; +- case 'low': +- return 0.8; +- case 'normal': +- return 1; +- case 'high': +- return 1.2; +- case 'extra-high': +- return 1.4; +- } +- } ++ /** ++ * Captures a snapshot of the Camera view and write it's content to a temporary file. ++ * ++ * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. ++ * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * const snapshot = await camera.current.takeSnapshot({ ++ * quality: 100 ++ * }) ++ * ``` ++ */ ++ async takeSnapshot(options) { ++ try { ++ return await CameraModule.takeSnapshot(this.handle, options ?? {}); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ getBitRateMultiplier(bitRate) { ++ if (typeof bitRate === 'number' || bitRate == null) return 1; ++ switch (bitRate) { ++ case 'extra-low': ++ return 0.6; ++ case 'low': ++ return 0.8; ++ case 'normal': ++ return 1; ++ case 'high': ++ return 1.2; ++ case 'extra-high': ++ return 1.4; ++ } ++ } + +- /** +- * Start a new video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * setTimeout(() => { +- * camera.current.stopRecording() +- * }, 5000) +- * ``` +- */ +- startRecording(options) { +- const { +- onRecordingError, +- onRecordingFinished, +- ...passThruOptions +- } = options; +- if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') throw new CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); +- if (options.flash === 'on') { +- // Enable torch for video recording +- this.setState({ +- isRecordingWithFlash: true +- }); +- } +- const onRecordCallback = (video, error) => { +- if (this.state.isRecordingWithFlash) { +- // disable torch again if it was enabled +- this.setState({ +- isRecordingWithFlash: false +- }); +- } +- if (error != null) return onRecordingError(error); +- if (video != null) return onRecordingFinished(video); +- }; +- const nativeRecordVideoOptions = passThruOptions; +- try { +- // TODO: Use TurboModules to make this awaitable. +- CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } ++ /** ++ * Start a new video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * setTimeout(() => { ++ * camera.current.stopRecording() ++ * }, 5000) ++ * ``` ++ */ ++ startRecording(options) { ++ const {onRecordingError, onRecordingFinished, ...passThruOptions} = options; ++ if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') ++ throw new CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); ++ if (options.flash === 'on') { ++ // Enable torch for video recording ++ this.setState({ ++ isRecordingWithFlash: true, ++ }); ++ } ++ const onRecordCallback = (video, error) => { ++ if (this.state.isRecordingWithFlash) { ++ // disable torch again if it was enabled ++ this.setState({ ++ isRecordingWithFlash: false, ++ }); ++ } ++ if (error != null) return onRecordingError(error); ++ if (video != null) return onRecordingFinished(video); ++ }; ++ const nativeRecordVideoOptions = passThruOptions; ++ try { ++ // TODO: Use TurboModules to make this awaitable. ++ CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } + +- /** +- * Pauses the current video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * // Start +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * await timeout(1000) +- * // Pause +- * await camera.current.pauseRecording() +- * await timeout(500) +- * // Resume +- * await camera.current.resumeRecording() +- * await timeout(2000) +- * // Stop +- * await camera.current.stopRecording() +- * ``` +- */ +- async pauseRecording() { +- try { +- return await CameraModule.pauseRecording(this.handle); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } ++ /** ++ * Pauses the current video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * // Start ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * await timeout(1000) ++ * // Pause ++ * await camera.current.pauseRecording() ++ * await timeout(500) ++ * // Resume ++ * await camera.current.resumeRecording() ++ * await timeout(2000) ++ * // Stop ++ * await camera.current.stopRecording() ++ * ``` ++ */ ++ async pauseRecording() { ++ try { ++ return await CameraModule.pauseRecording(this.handle); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } + +- /** +- * Resumes a currently paused video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * // Start +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * await timeout(1000) +- * // Pause +- * await camera.current.pauseRecording() +- * await timeout(500) +- * // Resume +- * await camera.current.resumeRecording() +- * await timeout(2000) +- * // Stop +- * await camera.current.stopRecording() +- * ``` +- */ +- async resumeRecording() { +- try { +- return await CameraModule.resumeRecording(this.handle); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } ++ /** ++ * Resumes a currently paused video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * // Start ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * await timeout(1000) ++ * // Pause ++ * await camera.current.pauseRecording() ++ * await timeout(500) ++ * // Resume ++ * await camera.current.resumeRecording() ++ * await timeout(2000) ++ * // Stop ++ * await camera.current.stopRecording() ++ * ``` ++ */ ++ async resumeRecording() { ++ try { ++ return await CameraModule.resumeRecording(this.handle); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } + +- /** +- * Stop the current video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * setTimeout(async () => { +- * await camera.current.stopRecording() +- * }, 5000) +- * ``` +- */ +- async stopRecording() { +- try { +- return await CameraModule.stopRecording(this.handle); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } ++ /** ++ * Stop the current video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * setTimeout(async () => { ++ * await camera.current.stopRecording() ++ * }, 5000) ++ * ``` ++ */ ++ async stopRecording() { ++ try { ++ return await CameraModule.stopRecording(this.handle); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } + +- /** +- * Cancel the current video recording. The temporary video file will be deleted, +- * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => { +- * if (error.code === 'capture/recording-canceled') { +- * // recording was canceled. +- * } else { +- * console.error(error) +- * } +- * }, +- * }) +- * setTimeout(async () => { +- * await camera.current.cancelRecording() +- * }, 5000) +- * ``` +- */ +- async cancelRecording() { +- try { +- return await CameraModule.cancelRecording(this.handle); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } ++ /** ++ * Cancel the current video recording. The temporary video file will be deleted, ++ * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => { ++ * if (error.code === 'capture/recording-canceled') { ++ * // recording was canceled. ++ * } else { ++ * console.error(error) ++ * } ++ * }, ++ * }) ++ * setTimeout(async () => { ++ * await camera.current.cancelRecording() ++ * }, 5000) ++ * ``` ++ */ ++ async cancelRecording() { ++ try { ++ return await CameraModule.cancelRecording(this.handle); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } + +- /** +- * Focus the camera to a specific point in the coordinate system. +- * @param {Point} point The point to focus to. This should be relative +- * to the Camera view's coordinate system and is expressed in points. +- * * `(0, 0)` means **top left**. +- * * `(CameraView.width, CameraView.height)` means **bottom right**. +- * +- * Make sure the value doesn't exceed the CameraView's dimensions. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- * @example +- * ```ts +- * await camera.current.focus({ +- * x: tapEvent.x, +- * y: tapEvent.y +- * }) +- * ``` +- */ +- async focus(point) { +- try { +- return await CameraModule.focus(this.handle, point); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } +- //#endregion ++ /** ++ * Focus the camera to a specific point in the coordinate system. ++ * @param {Point} point The point to focus to. This should be relative ++ * to the Camera view's coordinate system and is expressed in points. ++ * * `(0, 0)` means **top left**. ++ * * `(CameraView.width, CameraView.height)` means **bottom right**. ++ * ++ * Make sure the value doesn't exceed the CameraView's dimensions. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * await camera.current.focus({ ++ * x: tapEvent.x, ++ * y: tapEvent.y ++ * }) ++ * ``` ++ */ ++ async focus(point) { ++ try { ++ return await CameraModule.focus(this.handle, point); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ //#endregion + +- //#region Static Functions (NativeModule) +- /** +- * Get a list of all available camera devices on the current phone. +- * +- * If you use Hooks, use the `useCameraDevices(..)` hook instead. +- * +- * * For Camera Devices attached to the phone, it is safe to assume that this will never change. +- * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices +- * could change over time when the external Camera device gets plugged in or plugged out, so +- * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. +- * +- * @example +- * ```ts +- * const devices = Camera.getAvailableCameraDevices() +- * const backCameras = devices.filter((d) => d.position === "back") +- * const frontCameras = devices.filter((d) => d.position === "front") +- * ``` +- */ +- static getAvailableCameraDevices() { +- return CameraDevices.getAvailableCameraDevices(); +- } +- /** +- * Adds a listener that gets called everytime the Camera Devices change, for example +- * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. +- * +- * If you use Hooks, use the `useCameraDevices()` hook instead. +- */ +- static addCameraDevicesChangedListener(listener) { +- return CameraDevices.addCameraDevicesChangedListener(listener); +- } +- /** +- * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure +- * the user has permitted the app to use the camera. +- * +- * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. +- */ +- static getCameraPermissionStatus() { +- return CameraModule.getCameraPermissionStatus(); +- } +- /** +- * Gets the current Microphone-Recording Permission Status. +- * Check this before enabling the `audio={...}` property to make sure the +- * user has permitted the app to use the microphone. +- * +- * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. +- */ +- static getMicrophonePermissionStatus() { +- return CameraModule.getMicrophonePermissionStatus(); +- } +- /** +- * Gets the current Location Permission Status. +- * Check this before enabling the `location={...}` property to make sure the +- * the user has permitted the app to use the location. +- * +- * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. +- * +- * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. +- * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. +- */ +- static getLocationPermissionStatus() { +- return CameraModule.getLocationPermissionStatus(); +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new camera permission status. +- * +- * If the user has previously blocked the app from using the camera, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- static async requestCameraPermission() { +- try { +- return await CameraModule.requestCameraPermission(); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. +- * +- * If the user has previously blocked the app from using the microphone, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- static async requestMicrophonePermission() { +- try { +- return await CameraModule.requestMicrophonePermission(); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new location permission status. +- * +- * If the user has previously blocked the app from using the location, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- static async requestLocationPermission() { +- try { +- return await CameraModule.requestLocationPermission(); +- } catch (e) { +- throw tryParseNativeCameraError(e); +- } +- } +- //#endregion ++ //#region Static Functions (NativeModule) ++ /** ++ * Get a list of all available camera devices on the current phone. ++ * ++ * If you use Hooks, use the `useCameraDevices(..)` hook instead. ++ * ++ * * For Camera Devices attached to the phone, it is safe to assume that this will never change. ++ * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices ++ * could change over time when the external Camera device gets plugged in or plugged out, so ++ * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. ++ * ++ * @example ++ * ```ts ++ * const devices = Camera.getAvailableCameraDevices() ++ * const backCameras = devices.filter((d) => d.position === "back") ++ * const frontCameras = devices.filter((d) => d.position === "front") ++ * ``` ++ */ ++ static getAvailableCameraDevices() { ++ return CameraDevices.getAvailableCameraDevices(); ++ } ++ /** ++ * Adds a listener that gets called everytime the Camera Devices change, for example ++ * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. ++ * ++ * If you use Hooks, use the `useCameraDevices()` hook instead. ++ */ ++ static addCameraDevicesChangedListener(listener) { ++ return CameraDevices.addCameraDevicesChangedListener(listener); ++ } ++ /** ++ * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure ++ * the user has permitted the app to use the camera. ++ * ++ * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. ++ */ ++ static getCameraPermissionStatus() { ++ return CameraModule.getCameraPermissionStatus(); ++ } ++ /** ++ * Gets the current Microphone-Recording Permission Status. ++ * Check this before enabling the `audio={...}` property to make sure the ++ * user has permitted the app to use the microphone. ++ * ++ * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. ++ */ ++ static getMicrophonePermissionStatus() { ++ return CameraModule.getMicrophonePermissionStatus(); ++ } ++ /** ++ * Gets the current Location Permission Status. ++ * Check this before enabling the `location={...}` property to make sure the ++ * the user has permitted the app to use the location. ++ * ++ * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. ++ * ++ * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. ++ * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. ++ */ ++ static getLocationPermissionStatus() { ++ return CameraModule.getLocationPermissionStatus(); ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new camera permission status. ++ * ++ * If the user has previously blocked the app from using the camera, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ static async requestCameraPermission() { ++ try { ++ return await CameraModule.requestCameraPermission(); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. ++ * ++ * If the user has previously blocked the app from using the microphone, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ static async requestMicrophonePermission() { ++ try { ++ return await CameraModule.requestMicrophonePermission(); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new location permission status. ++ * ++ * If the user has previously blocked the app from using the location, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ static async requestLocationPermission() { ++ try { ++ return await CameraModule.requestLocationPermission(); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ //#endregion + +- //#region Events (Wrapped to maintain reference equality) +- onError(event) { +- const error = event.nativeEvent; +- const cause = isErrorWithCause(error.cause) ? error.cause : undefined; +- // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work +- const cameraError = new CameraRuntimeError(error.code, error.message, cause); +- if (this.props.onError != null) { +- this.props.onError(cameraError); +- } else { +- // User didn't pass an `onError` handler, so just log it to console +- console.error(cameraError); +- } +- } +- onInitialized() { +- this.props.onInitialized?.(); +- } +- onStarted() { +- this.props.onStarted?.(); +- } +- onStopped() { +- this.props.onStopped?.(); +- } +- onPreviewStarted() { +- this.props.onPreviewStarted?.(); +- } +- onPreviewStopped() { +- this.props.onPreviewStopped?.(); +- } +- onShutter(event) { +- this.props.onShutter?.(event.nativeEvent); +- } +- onOutputOrientationChanged({ +- nativeEvent: { +- outputOrientation +- } +- }) { +- this.rotationHelper.outputOrientation = outputOrientation; +- this.props.onOutputOrientationChanged?.(outputOrientation); +- this.maybeUpdateUIRotation(); +- } +- onPreviewOrientationChanged({ +- nativeEvent: { +- previewOrientation +- } +- }) { +- this.rotationHelper.previewOrientation = previewOrientation; +- this.props.onPreviewOrientationChanged?.(previewOrientation); +- this.maybeUpdateUIRotation(); +- if (isSkiaFrameProcessor(this.props.frameProcessor)) { +- // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. +- this.props.frameProcessor.previewOrientation.value = previewOrientation; +- } +- } +- maybeUpdateUIRotation() { +- const uiRotation = this.rotationHelper.uiRotation; +- if (uiRotation !== this.lastUIRotation) { +- this.props.onUIRotationChanged?.(uiRotation); +- this.lastUIRotation = uiRotation; +- } +- } +- //#endregion ++ //#region Events (Wrapped to maintain reference equality) ++ onError(event) { ++ const error = event.nativeEvent; ++ const cause = isErrorWithCause(error.cause) ? error.cause : undefined; ++ // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work ++ const cameraError = new CameraRuntimeError(error.code, error.message, cause); ++ if (this.props.onError != null) { ++ this.props.onError(cameraError); ++ } else { ++ // User didn't pass an `onError` handler, so just log it to console ++ console.error(cameraError); ++ } ++ } ++ onInitialized() { ++ this.props.onInitialized?.(); ++ } ++ onStarted() { ++ this.props.onStarted?.(); ++ } ++ onStopped() { ++ this.props.onStopped?.(); ++ } ++ onPreviewStarted() { ++ this.props.onPreviewStarted?.(); ++ } ++ onPreviewStopped() { ++ this.props.onPreviewStopped?.(); ++ } ++ onShutter(event) { ++ this.props.onShutter?.(event.nativeEvent); ++ } ++ onOutputOrientationChanged({nativeEvent: {outputOrientation}}) { ++ this.rotationHelper.outputOrientation = outputOrientation; ++ this.props.onOutputOrientationChanged?.(outputOrientation); ++ this.maybeUpdateUIRotation(); ++ } ++ onPreviewOrientationChanged({nativeEvent: {previewOrientation}}) { ++ this.rotationHelper.previewOrientation = previewOrientation; ++ this.props.onPreviewOrientationChanged?.(previewOrientation); ++ this.maybeUpdateUIRotation(); ++ if (isSkiaFrameProcessor(this.props.frameProcessor)) { ++ // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. ++ this.props.frameProcessor.previewOrientation.value = previewOrientation; ++ } ++ } ++ maybeUpdateUIRotation() { ++ const uiRotation = this.rotationHelper.uiRotation; ++ if (uiRotation !== this.lastUIRotation) { ++ this.props.onUIRotationChanged?.(uiRotation); ++ this.lastUIRotation = uiRotation; ++ } ++ } ++ //#endregion + +- onCodeScanned(event) { +- const codeScanner = this.props.codeScanner; +- if (codeScanner == null) return; +- codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); +- } ++ onCodeScanned(event) { ++ const codeScanner = this.props.codeScanner; ++ if (codeScanner == null) return; ++ codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); ++ } + +- //#region Lifecycle +- setFrameProcessor(frameProcessor) { +- VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); +- } +- unsetFrameProcessor() { +- VisionCameraProxy.removeFrameProcessor(this.handle); +- } +- onViewReady() { +- this.isNativeViewMounted = true; +- if (this.props.frameProcessor != null) { +- // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. +- this.setFrameProcessor(this.props.frameProcessor.frameProcessor); +- this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; +- } +- } +- onAverageFpsChanged({ +- nativeEvent: { +- averageFps +- } +- }) { +- this.setState(state => { +- const averageFpsSamples = [...state.averageFpsSamples, averageFps]; +- while (averageFpsSamples.length >= MAX_BARS + 1) { +- // we keep a maximum of 30 FPS samples in our history +- averageFpsSamples.shift(); +- } +- return { +- ...state, +- averageFpsSamples: averageFpsSamples +- }; +- }); +- } ++ //#region Lifecycle ++ setFrameProcessor(frameProcessor) { ++ VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); ++ } ++ unsetFrameProcessor() { ++ VisionCameraProxy.removeFrameProcessor(this.handle); ++ } ++ onViewReady() { ++ this.isNativeViewMounted = true; ++ if (this.props.frameProcessor != null) { ++ // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. ++ this.setFrameProcessor(this.props.frameProcessor.frameProcessor); ++ this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; ++ } ++ } ++ onAverageFpsChanged({nativeEvent: {averageFps}}) { ++ this.setState((state) => { ++ const averageFpsSamples = [...state.averageFpsSamples, averageFps]; ++ while (averageFpsSamples.length >= MAX_BARS + 1) { ++ // we keep a maximum of 30 FPS samples in our history ++ averageFpsSamples.shift(); ++ } ++ return { ++ ...state, ++ averageFpsSamples: averageFpsSamples, ++ }; ++ }); ++ } + +- /** @internal */ +- componentDidUpdate() { +- if (!this.isNativeViewMounted) return; +- const frameProcessor = this.props.frameProcessor; +- if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { +- // frameProcessor argument identity changed. Update native to reflect the change. +- if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor);else this.unsetFrameProcessor(); +- this.lastFrameProcessor = frameProcessor?.frameProcessor; +- } +- } +- //#endregion ++ /** @internal */ ++ componentDidUpdate() { ++ if (!this.isNativeViewMounted) return; ++ const frameProcessor = this.props.frameProcessor; ++ if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { ++ // frameProcessor argument identity changed. Update native to reflect the change. ++ if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor); ++ else this.unsetFrameProcessor(); ++ this.lastFrameProcessor = frameProcessor?.frameProcessor; ++ } ++ } ++ //#endregion + +- /** @internal */ +- render() { +- // We remove the big `device` object from the props because we only need to pass `cameraId` to native. +- const { +- device, +- frameProcessor, +- codeScanner, +- enableFpsGraph, +- fps, +- videoBitRate, +- ...props +- } = this.props; ++ /** @internal */ ++ render() { ++ // We remove the big `device` object from the props because we only need to pass `cameraId` to native. ++ const {device, frameProcessor, codeScanner, enableFpsGraph, fps, videoBitRate, ...props} = this.props; + +- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition +- if (device == null) { +- throw new CameraRuntimeError('device/no-device', 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices'); +- } +- const shouldEnableBufferCompression = props.video === true && frameProcessor == null; +- const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; +- const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); +- const shouldBeMirrored = device.position === 'front'; ++ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition ++ if (device == null) { ++ throw new CameraRuntimeError( ++ 'device/no-device', ++ 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices', ++ ); ++ } ++ const shouldEnableBufferCompression = props.video === true && frameProcessor == null; ++ const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; ++ const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); ++ const shouldBeMirrored = device.position === 'front'; + +- // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple +- const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; +- const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; ++ // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple ++ const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; ++ const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; + +- // bitrate is number (override) or string (multiplier) +- let bitRateMultiplier; +- let bitRateOverride; +- if (typeof videoBitRate === 'number') { +- // If the user passed an absolute number as a bit-rate, we just use this as a full override. +- bitRateOverride = videoBitRate; +- } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { +- // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it +- bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); +- } +- return /*#__PURE__*/React.createElement(NativeCameraView, _extends({}, props, { +- cameraId: device.id, +- ref: this.ref, +- torch: torch, +- minFps: minFps, +- maxFps: maxFps, +- isMirrored: props.isMirrored ?? shouldBeMirrored, +- onViewReady: this.onViewReady, +- onAverageFpsChanged: enableFpsGraph ? this.onAverageFpsChanged : undefined, +- onInitialized: this.onInitialized, +- onCodeScanned: this.onCodeScanned, +- onStarted: this.onStarted, +- onStopped: this.onStopped, +- onPreviewStarted: this.onPreviewStarted, +- onPreviewStopped: this.onPreviewStopped, +- onShutter: this.onShutter, +- videoBitRateMultiplier: bitRateMultiplier, +- videoBitRateOverride: bitRateOverride, +- onOutputOrientationChanged: this.onOutputOrientationChanged, +- onPreviewOrientationChanged: this.onPreviewOrientationChanged, +- onError: this.onError, +- codeScannerOptions: codeScanner, +- enableFrameProcessor: frameProcessor != null, +- enableBufferCompression: props.enableBufferCompression ?? shouldEnableBufferCompression, +- preview: isRenderingWithSkia ? false : props.preview ?? true +- }), isRenderingWithSkia && /*#__PURE__*/React.createElement(SkiaCameraCanvas, { +- style: styles.customPreviewView, +- offscreenTextures: frameProcessor.offscreenTextures, +- resizeMode: props.resizeMode +- }), enableFpsGraph && /*#__PURE__*/React.createElement(FpsGraph, { +- style: styles.fpsGraph, +- averageFpsSamples: this.state.averageFpsSamples, +- targetMaxFps: props.format?.maxFps ?? 60 +- })); +- } ++ // bitrate is number (override) or string (multiplier) ++ let bitRateMultiplier; ++ let bitRateOverride; ++ if (typeof videoBitRate === 'number') { ++ // If the user passed an absolute number as a bit-rate, we just use this as a full override. ++ bitRateOverride = videoBitRate; ++ } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { ++ // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it ++ bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); ++ } ++ return /*#__PURE__*/ React.createElement( ++ NativeCameraView, ++ _extends({}, props, { ++ cameraId: device.id, ++ ref: this.ref, ++ torch: torch, ++ minFps: minFps, ++ maxFps: maxFps, ++ isMirrored: props.isMirrored ?? shouldBeMirrored, ++ onViewReady: this.onViewReady, ++ onAverageFpsChanged: enableFpsGraph ? this.onAverageFpsChanged : undefined, ++ onInitialized: this.onInitialized, ++ onCodeScanned: this.onCodeScanned, ++ onStarted: this.onStarted, ++ onStopped: this.onStopped, ++ onPreviewStarted: this.onPreviewStarted, ++ onPreviewStopped: this.onPreviewStopped, ++ onShutter: this.onShutter, ++ videoBitRateMultiplier: bitRateMultiplier, ++ videoBitRateOverride: bitRateOverride, ++ onOutputOrientationChanged: this.onOutputOrientationChanged, ++ onPreviewOrientationChanged: this.onPreviewOrientationChanged, ++ onError: this.onError, ++ codeScannerOptions: codeScanner, ++ enableFrameProcessor: frameProcessor != null, ++ enableBufferCompression: props.enableBufferCompression ?? shouldEnableBufferCompression, ++ preview: isRenderingWithSkia ? false : props.preview ?? true, ++ }), ++ isRenderingWithSkia && ++ /*#__PURE__*/ React.createElement(SkiaCameraCanvas, { ++ style: styles.customPreviewView, ++ offscreenTextures: frameProcessor.offscreenTextures, ++ resizeMode: props.resizeMode, ++ }), ++ enableFpsGraph && ++ /*#__PURE__*/ React.createElement(FpsGraph, { ++ style: styles.fpsGraph, ++ averageFpsSamples: this.state.averageFpsSamples, ++ targetMaxFps: props.format?.maxFps ?? 60, ++ }), ++ ); ++ } + } + //#endregion + + const styles = StyleSheet.create({ +- customPreviewView: { +- flex: 1 +- }, +- fpsGraph: { +- elevation: 1, +- position: 'absolute', +- left: 15, +- top: 30 +- } ++ customPreviewView: { ++ flex: 1, ++ }, ++ fpsGraph: { ++ elevation: 1, ++ position: 'absolute', ++ left: 15, ++ top: 30, ++ }, + }); + //# sourceMappingURL=Camera.js.map +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/lib/module/Camera.js.map b/node_modules/react-native-vision-camera/lib/module/Camera.js.map +index a1a484f..b45fa1d 100644 +--- a/node_modules/react-native-vision-camera/lib/module/Camera.js.map ++++ b/node_modules/react-native-vision-camera/lib/module/Camera.js.map +@@ -1 +1,151 @@ +-{"version":3,"names":["React","findNodeHandle","StyleSheet","CameraRuntimeError","tryParseNativeCameraError","isErrorWithCause","CameraModule","VisionCameraProxy","CameraDevices","SkiaCameraCanvas","FpsGraph","MAX_BARS","NativeCameraView","RotationHelper","isSkiaFrameProcessor","frameProcessor","type","Camera","PureComponent","displayName","isNativeViewMounted","lastUIRotation","undefined","rotationHelper","constructor","props","onViewReady","bind","onAverageFpsChanged","onInitialized","onStarted","onStopped","onPreviewStarted","onPreviewStopped","onShutter","onOutputOrientationChanged","onPreviewOrientationChanged","onError","onCodeScanned","ref","createRef","lastFrameProcessor","state","isRecordingWithFlash","averageFpsSamples","handle","nodeHandle","current","takePhoto","options","e","takeSnapshot","getBitRateMultiplier","bitRate","startRecording","onRecordingError","onRecordingFinished","passThruOptions","flash","setState","onRecordCallback","video","error","nativeRecordVideoOptions","pauseRecording","resumeRecording","stopRecording","cancelRecording","focus","point","getAvailableCameraDevices","addCameraDevicesChangedListener","listener","getCameraPermissionStatus","getMicrophonePermissionStatus","getLocationPermissionStatus","requestCameraPermission","requestMicrophonePermission","requestLocationPermission","event","nativeEvent","cause","cameraError","code","message","console","outputOrientation","maybeUpdateUIRotation","previewOrientation","value","uiRotation","onUIRotationChanged","codeScanner","codes","frame","setFrameProcessor","unsetFrameProcessor","removeFrameProcessor","averageFps","length","shift","componentDidUpdate","render","device","enableFpsGraph","fps","videoBitRate","shouldEnableBufferCompression","torch","isRenderingWithSkia","shouldBeMirrored","position","minFps","maxFps","bitRateMultiplier","bitRateOverride","createElement","_extends","cameraId","id","isMirrored","videoBitRateMultiplier","videoBitRateOverride","codeScannerOptions","enableFrameProcessor","enableBufferCompression","preview","style","styles","customPreviewView","offscreenTextures","resizeMode","fpsGraph","targetMaxFps","format","create","flex","elevation","left","top"],"sourceRoot":"../../src","sources":["Camera.tsx"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,cAAc,EAAEC,UAAU,QAAQ,cAAc;AAGzD,SAASC,kBAAkB,EAAEC,yBAAyB,EAAEC,gBAAgB,QAAQ,eAAe;AAE/F,SAASC,YAAY,QAAQ,sBAAsB;AAInD,SAASC,iBAAiB,QAAQ,sCAAsC;AACxE,SAASC,aAAa,QAAQ,iBAAiB;AAG/C,SAASC,gBAAgB,QAAQ,yBAAyB;AAE1D,SAASC,QAAQ,EAAEC,QAAQ,QAAQ,YAAY;AAS/C,SAASC,gBAAgB,QAAQ,oBAAoB;AACrD,SAASC,cAAc,QAAQ,kBAAkB;;AAEjD;;AAUA;;AAEA,SAASC,oBAAoBA,CAACC,cAAgE,EAA4C;EACxI,OAAOA,cAAc,EAAEC,IAAI,KAAK,eAAe;AACjD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,MAAM,SAASjB,KAAK,CAACkB,aAAa,CAA2B;EACxE;EACA,OAAOC,WAAW,GAAG,QAAQ;EAC7B;EACAA,WAAW,GAAGF,MAAM,CAACE,WAAW;EAExBC,mBAAmB,GAAG,KAAK;EAC3BC,cAAc,GAAuBC,SAAS;EAC9CC,cAAc,GAAG,IAAIV,cAAc,CAAC,CAAC;EAI7C;EACAW,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,CAAC;IACZ,IAAI,CAACC,WAAW,GAAG,IAAI,CAACA,WAAW,CAACC,IAAI,CAAC,IAAI,CAAC;IAC9C,IAAI,CAACC,mBAAmB,GAAG,IAAI,CAACA,mBAAmB,CAACD,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,CAACE,aAAa,GAAG,IAAI,CAACA,aAAa,CAACF,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACG,SAAS,GAAG,IAAI,CAACA,SAAS,CAACH,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACI,SAAS,GAAG,IAAI,CAACA,SAAS,CAACJ,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACK,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAACL,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAACM,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAACN,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAACO,SAAS,GAAG,IAAI,CAACA,SAAS,CAACP,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACQ,0BAA0B,GAAG,IAAI,CAACA,0BAA0B,CAACR,IAAI,CAAC,IAAI,CAAC;IAC5E,IAAI,CAACS,2BAA2B,GAAG,IAAI,CAACA,2BAA2B,CAACT,IAAI,CAAC,IAAI,CAAC;IAC9E,IAAI,CAACU,OAAO,GAAG,IAAI,CAACA,OAAO,CAACV,IAAI,CAAC,IAAI,CAAC;IACtC,IAAI,CAACW,aAAa,GAAG,IAAI,CAACA,aAAa,CAACX,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACY,GAAG,gBAAGvC,KAAK,CAACwC,SAAS,CAAU,CAAC;IACrC,IAAI,CAACC,kBAAkB,GAAGnB,SAAS;IACnC,IAAI,CAACoB,KAAK,GAAG;MACXC,oBAAoB,EAAE,KAAK;MAC3BC,iBAAiB,EAAE;IACrB,CAAC;EACH;EAEA,IAAYC,MAAMA,CAAA,EAAW;IAC3B,MAAMC,UAAU,GAAG7C,cAAc,CAAC,IAAI,CAACsC,GAAG,CAACQ,OAAO,CAAC;IACnD,IAAID,UAAU,IAAI,IAAI,IAAIA,UAAU,KAAK,CAAC,CAAC,EAAE;MAC3C,MAAM,IAAI3C,kBAAkB,CAC1B,uBAAuB,EACvB,iGACF,CAAC;IACH;IAEA,OAAO2C,UAAU;EACnB;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaE,SAASA,CAACC,OAA0B,EAAsB;IACrE,IAAI;MACF,OAAO,MAAM3C,YAAY,CAAC0C,SAAS,CAAC,IAAI,CAACH,MAAM,EAAEI,OAAO,IAAI,CAAC,CAAC,CAAC;IACjE,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaC,YAAYA,CAACF,OAA6B,EAAsB;IAC3E,IAAI;MACF,OAAO,MAAM3C,YAAY,CAAC6C,YAAY,CAAC,IAAI,CAACN,MAAM,EAAEI,OAAO,IAAI,CAAC,CAAC,CAAC;IACpE,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EAEQE,oBAAoBA,CAACC,OAAoC,EAAU;IACzE,IAAI,OAAOA,OAAO,KAAK,QAAQ,IAAIA,OAAO,IAAI,IAAI,EAAE,OAAO,CAAC;IAC5D,QAAQA,OAAO;MACb,KAAK,WAAW;QACd,OAAO,GAAG;MACZ,KAAK,KAAK;QACR,OAAO,GAAG;MACZ,KAAK,QAAQ;QACX,OAAO,CAAC;MACV,KAAK,MAAM;QACT,OAAO,GAAG;MACZ,KAAK,YAAY;QACf,OAAO,GAAG;IACd;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,cAAcA,CAACL,OAA2B,EAAQ;IACvD,MAAM;MAAEM,gBAAgB;MAAEC,mBAAmB;MAAE,GAAGC;IAAgB,CAAC,GAAGR,OAAO;IAC7E,IAAI,OAAOM,gBAAgB,KAAK,UAAU,IAAI,OAAOC,mBAAmB,KAAK,UAAU,EACrF,MAAM,IAAIrD,kBAAkB,CAAC,6BAA6B,EAAE,qEAAqE,CAAC;IAEpI,IAAI8C,OAAO,CAACS,KAAK,KAAK,IAAI,EAAE;MAC1B;MACA,IAAI,CAACC,QAAQ,CAAC;QACZhB,oBAAoB,EAAE;MACxB,CAAC,CAAC;IACJ;IAEA,MAAMiB,gBAAgB,GAAGA,CAACC,KAAiB,EAAEC,KAA0B,KAAW;MAChF,IAAI,IAAI,CAACpB,KAAK,CAACC,oBAAoB,EAAE;QACnC;QACA,IAAI,CAACgB,QAAQ,CAAC;UACZhB,oBAAoB,EAAE;QACxB,CAAC,CAAC;MACJ;MAEA,IAAImB,KAAK,IAAI,IAAI,EAAE,OAAOP,gBAAgB,CAACO,KAAK,CAAC;MACjD,IAAID,KAAK,IAAI,IAAI,EAAE,OAAOL,mBAAmB,CAACK,KAAK,CAAC;IACtD,CAAC;IAED,MAAME,wBAAkD,GAAGN,eAAe;IAC1E,IAAI;MACF;MACAnD,YAAY,CAACgD,cAAc,CAAC,IAAI,CAACT,MAAM,EAAEkB,wBAAwB,EAAEH,gBAAgB,CAAC;IACtF,CAAC,CAAC,OAAOV,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAac,cAAcA,CAAA,EAAkB;IAC3C,IAAI;MACF,OAAO,MAAM1D,YAAY,CAAC0D,cAAc,CAAC,IAAI,CAACnB,MAAM,CAAC;IACvD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAae,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAM3D,YAAY,CAAC2D,eAAe,CAAC,IAAI,CAACpB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAagB,aAAaA,CAAA,EAAkB;IAC1C,IAAI;MACF,OAAO,MAAM5D,YAAY,CAAC4D,aAAa,CAAC,IAAI,CAACrB,MAAM,CAAC;IACtD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaiB,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAM7D,YAAY,CAAC6D,eAAe,CAAC,IAAI,CAACtB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAakB,KAAKA,CAACC,KAAY,EAAiB;IAC9C,IAAI;MACF,OAAO,MAAM/D,YAAY,CAAC8D,KAAK,CAAC,IAAI,CAACvB,MAAM,EAAEwB,KAAK,CAAC;IACrD,CAAC,CAAC,OAAOnB,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcoB,yBAAyBA,CAAA,EAAmB;IACxD,OAAO9D,aAAa,CAAC8D,yBAAyB,CAAC,CAAC;EAClD;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,+BAA+BA,CAACC,QAA8C,EAAuB;IACjH,OAAOhE,aAAa,CAAC+D,+BAA+B,CAACC,QAAQ,CAAC;EAChE;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,yBAAyBA,CAAA,EAA2B;IAChE,OAAOnE,YAAY,CAACmE,yBAAyB,CAAC,CAAC;EACjD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,6BAA6BA,CAAA,EAA2B;IACpE,OAAOpE,YAAY,CAACoE,6BAA6B,CAAC,CAAC;EACrD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,2BAA2BA,CAAA,EAA2B;IAClE,OAAOrE,YAAY,CAACqE,2BAA2B,CAAC,CAAC;EACnD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBC,uBAAuBA,CAAA,EAA2C;IACpF,IAAI;MACF,OAAO,MAAMtE,YAAY,CAACsE,uBAAuB,CAAC,CAAC;IACrD,CAAC,CAAC,OAAO1B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoB2B,2BAA2BA,CAAA,EAA2C;IACxF,IAAI;MACF,OAAO,MAAMvE,YAAY,CAACuE,2BAA2B,CAAC,CAAC;IACzD,CAAC,CAAC,OAAO3B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoB4B,yBAAyBA,CAAA,EAA2C;IACtF,IAAI;MACF,OAAO,MAAMxE,YAAY,CAACwE,yBAAyB,CAAC,CAAC;IACvD,CAAC,CAAC,OAAO5B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACQb,OAAOA,CAAC0C,KAAyC,EAAQ;IAC/D,MAAMjB,KAAK,GAAGiB,KAAK,CAACC,WAAW;IAC/B,MAAMC,KAAK,GAAG5E,gBAAgB,CAACyD,KAAK,CAACmB,KAAK,CAAC,GAAGnB,KAAK,CAACmB,KAAK,GAAG3D,SAAS;IACrE;IACA,MAAM4D,WAAW,GAAG,IAAI/E,kBAAkB,CAAC2D,KAAK,CAACqB,IAAI,EAAErB,KAAK,CAACsB,OAAO,EAAEH,KAAK,CAAC;IAE5E,IAAI,IAAI,CAACxD,KAAK,CAACY,OAAO,IAAI,IAAI,EAAE;MAC9B,IAAI,CAACZ,KAAK,CAACY,OAAO,CAAC6C,WAAW,CAAC;IACjC,CAAC,MAAM;MACL;MACAG,OAAO,CAACvB,KAAK,CAACoB,WAAW,CAAC;IAC5B;EACF;EAEQrD,aAAaA,CAAA,EAAS;IAC5B,IAAI,CAACJ,KAAK,CAACI,aAAa,GAAG,CAAC;EAC9B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACL,KAAK,CAACK,SAAS,GAAG,CAAC;EAC1B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACN,KAAK,CAACM,SAAS,GAAG,CAAC;EAC1B;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACP,KAAK,CAACO,gBAAgB,GAAG,CAAC;EACjC;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACR,KAAK,CAACQ,gBAAgB,GAAG,CAAC;EACjC;EAEQC,SAASA,CAAC6C,KAA2C,EAAQ;IACnE,IAAI,CAACtD,KAAK,CAACS,SAAS,GAAG6C,KAAK,CAACC,WAAW,CAAC;EAC3C;EAEQ7C,0BAA0BA,CAAC;IAAE6C,WAAW,EAAE;MAAEM;IAAkB;EAAuD,CAAC,EAAQ;IACpI,IAAI,CAAC/D,cAAc,CAAC+D,iBAAiB,GAAGA,iBAAiB;IACzD,IAAI,CAAC7D,KAAK,CAACU,0BAA0B,GAAGmD,iBAAiB,CAAC;IAC1D,IAAI,CAACC,qBAAqB,CAAC,CAAC;EAC9B;EAEQnD,2BAA2BA,CAAC;IAAE4C,WAAW,EAAE;MAAEQ;IAAmB;EAAwD,CAAC,EAAQ;IACvI,IAAI,CAACjE,cAAc,CAACiE,kBAAkB,GAAGA,kBAAkB;IAC3D,IAAI,CAAC/D,KAAK,CAACW,2BAA2B,GAAGoD,kBAAkB,CAAC;IAC5D,IAAI,CAACD,qBAAqB,CAAC,CAAC;IAE5B,IAAIzE,oBAAoB,CAAC,IAAI,CAACW,KAAK,CAACV,cAAc,CAAC,EAAE;MACnD;MACA,IAAI,CAACU,KAAK,CAACV,cAAc,CAACyE,kBAAkB,CAACC,KAAK,GAAGD,kBAAkB;IACzE;EACF;EAEQD,qBAAqBA,CAAA,EAAS;IACpC,MAAMG,UAAU,GAAG,IAAI,CAACnE,cAAc,CAACmE,UAAU;IACjD,IAAIA,UAAU,KAAK,IAAI,CAACrE,cAAc,EAAE;MACtC,IAAI,CAACI,KAAK,CAACkE,mBAAmB,GAAGD,UAAU,CAAC;MAC5C,IAAI,CAACrE,cAAc,GAAGqE,UAAU;IAClC;EACF;EACA;;EAEQpD,aAAaA,CAACyC,KAA+C,EAAQ;IAC3E,MAAMa,WAAW,GAAG,IAAI,CAACnE,KAAK,CAACmE,WAAW;IAC1C,IAAIA,WAAW,IAAI,IAAI,EAAE;IAEzBA,WAAW,CAACtD,aAAa,CAACyC,KAAK,CAACC,WAAW,CAACa,KAAK,EAAEd,KAAK,CAACC,WAAW,CAACc,KAAK,CAAC;EAC7E;;EAEA;EACQC,iBAAiBA,CAAChF,cAAsC,EAAQ;IACtER,iBAAiB,CAACwF,iBAAiB,CAAC,IAAI,CAAClD,MAAM,EAAE9B,cAAc,CAAC;EAClE;EAEQiF,mBAAmBA,CAAA,EAAS;IAClCzF,iBAAiB,CAAC0F,oBAAoB,CAAC,IAAI,CAACpD,MAAM,CAAC;EACrD;EAEQnB,WAAWA,CAAA,EAAS;IAC1B,IAAI,CAACN,mBAAmB,GAAG,IAAI;IAC/B,IAAI,IAAI,CAACK,KAAK,CAACV,cAAc,IAAI,IAAI,EAAE;MACrC;MACA,IAAI,CAACgF,iBAAiB,CAAC,IAAI,CAACtE,KAAK,CAACV,cAAc,CAACA,cAAc,CAAC;MAChE,IAAI,CAAC0B,kBAAkB,GAAG,IAAI,CAAChB,KAAK,CAACV,cAAc,CAACA,cAAc;IACpE;EACF;EAEQa,mBAAmBA,CAAC;IAAEoD,WAAW,EAAE;MAAEkB;IAAW;EAAgD,CAAC,EAAQ;IAC/G,IAAI,CAACvC,QAAQ,CAAEjB,KAAK,IAAK;MACvB,MAAME,iBAAiB,GAAG,CAAC,GAAGF,KAAK,CAACE,iBAAiB,EAAEsD,UAAU,CAAC;MAClE,OAAOtD,iBAAiB,CAACuD,MAAM,IAAIxF,QAAQ,GAAG,CAAC,EAAE;QAC/C;QACAiC,iBAAiB,CAACwD,KAAK,CAAC,CAAC;MAC3B;MAEA,OAAO;QACL,GAAG1D,KAAK;QACRE,iBAAiB,EAAEA;MACrB,CAAC;IACH,CAAC,CAAC;EACJ;;EAEA;EACAyD,kBAAkBA,CAAA,EAAS;IACzB,IAAI,CAAC,IAAI,CAACjF,mBAAmB,EAAE;IAC/B,MAAML,cAAc,GAAG,IAAI,CAACU,KAAK,CAACV,cAAc;IAChD,IAAIA,cAAc,EAAEA,cAAc,KAAK,IAAI,CAAC0B,kBAAkB,EAAE;MAC9D;MACA,IAAI1B,cAAc,IAAI,IAAI,EAAE,IAAI,CAACgF,iBAAiB,CAAChF,cAAc,CAACA,cAAc,CAAC,MAC5E,IAAI,CAACiF,mBAAmB,CAAC,CAAC;MAE/B,IAAI,CAACvD,kBAAkB,GAAG1B,cAAc,EAAEA,cAAc;IAC1D;EACF;EACA;;EAEA;EACOuF,MAAMA,CAAA,EAAoB;IAC/B;IACA,MAAM;MAAEC,MAAM;MAAExF,cAAc;MAAE6E,WAAW;MAAEY,cAAc;MAAEC,GAAG;MAAEC,YAAY;MAAE,GAAGjF;IAAM,CAAC,GAAG,IAAI,CAACA,KAAK;;IAEvG;IACA,IAAI8E,MAAM,IAAI,IAAI,EAAE;MAClB,MAAM,IAAIpG,kBAAkB,CAC1B,kBAAkB,EAClB,kIACF,CAAC;IACH;IAEA,MAAMwG,6BAA6B,GAAGlF,KAAK,CAACoC,KAAK,KAAK,IAAI,IAAI9C,cAAc,IAAI,IAAI;IACpF,MAAM6F,KAAK,GAAG,IAAI,CAAClE,KAAK,CAACC,oBAAoB,GAAG,IAAI,GAAGlB,KAAK,CAACmF,KAAK;IAClE,MAAMC,mBAAmB,GAAG/F,oBAAoB,CAACC,cAAc,CAAC;IAChE,MAAM+F,gBAAgB,GAAGP,MAAM,CAACQ,QAAQ,KAAK,OAAO;;IAEpD;IACA,MAAMC,MAAM,GAAGP,GAAG,IAAI,IAAI,GAAGnF,SAAS,GAAG,OAAOmF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;IAC/E,MAAMQ,MAAM,GAAGR,GAAG,IAAI,IAAI,GAAGnF,SAAS,GAAG,OAAOmF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;;IAE/E;IACA,IAAIS,iBAAqC;IACzC,IAAIC,eAAmC;IACvC,IAAI,OAAOT,YAAY,KAAK,QAAQ,EAAE;MACpC;MACAS,eAAe,GAAGT,YAAY;IAChC,CAAC,MAAM,IAAI,OAAOA,YAAY,KAAK,QAAQ,IAAIA,YAAY,KAAK,QAAQ,EAAE;MACxE;MACAQ,iBAAiB,GAAG,IAAI,CAAC9D,oBAAoB,CAACsD,YAAY,CAAC;IAC7D;IAEA,oBACE1G,KAAA,CAAAoH,aAAA,CAACxG,gBAAgB,EAAAyG,QAAA,KACX5F,KAAK;MACT6F,QAAQ,EAAEf,MAAM,CAACgB,EAAG;MACpBhF,GAAG,EAAE,IAAI,CAACA,GAAI;MACdqE,KAAK,EAAEA,KAAM;MACbI,MAAM,EAAEA,MAAO;MACfC,MAAM,EAAEA,MAAO;MACfO,UAAU,EAAE/F,KAAK,CAAC+F,UAAU,IAAIV,gBAAiB;MACjDpF,WAAW,EAAE,IAAI,CAACA,WAAY;MAC9BE,mBAAmB,EAAE4E,cAAc,GAAG,IAAI,CAAC5E,mBAAmB,GAAGN,SAAU;MAC3EO,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCS,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCR,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BuF,sBAAsB,EAAEP,iBAAkB;MAC1CQ,oBAAoB,EAAEP,eAAgB;MACtChF,0BAA0B,EAAE,IAAI,CAACA,0BAA2B;MAC5DC,2BAA2B,EAAE,IAAI,CAACA,2BAA4B;MAC9DC,OAAO,EAAE,IAAI,CAACA,OAAQ;MACtBsF,kBAAkB,EAAE/B,WAAY;MAChCgC,oBAAoB,EAAE7G,cAAc,IAAI,IAAK;MAC7C8G,uBAAuB,EAAEpG,KAAK,CAACoG,uBAAuB,IAAIlB,6BAA8B;MACxFmB,OAAO,EAAEjB,mBAAmB,GAAG,KAAK,GAAIpF,KAAK,CAACqG,OAAO,IAAI;IAAM,IAC9DjB,mBAAmB,iBAClB7G,KAAA,CAAAoH,aAAA,CAAC3G,gBAAgB;MACfsH,KAAK,EAAEC,MAAM,CAACC,iBAAkB;MAChCC,iBAAiB,EAAEnH,cAAc,CAACmH,iBAAkB;MACpDC,UAAU,EAAE1G,KAAK,CAAC0G;IAAW,CAC9B,CACF,EACA3B,cAAc,iBACbxG,KAAA,CAAAoH,aAAA,CAAC1G,QAAQ;MAACqH,KAAK,EAAEC,MAAM,CAACI,QAAS;MAACxF,iBAAiB,EAAE,IAAI,CAACF,KAAK,CAACE,iBAAkB;MAACyF,YAAY,EAAE5G,KAAK,CAAC6G,MAAM,EAAErB,MAAM,IAAI;IAAG,CAAE,CAEhH,CAAC;EAEvB;AACF;AACA;;AAEA,MAAMe,MAAM,GAAG9H,UAAU,CAACqI,MAAM,CAAC;EAC/BN,iBAAiB,EAAE;IACjBO,IAAI,EAAE;EACR,CAAC;EACDJ,QAAQ,EAAE;IACRK,SAAS,EAAE,CAAC;IACZ1B,QAAQ,EAAE,UAAU;IACpB2B,IAAI,EAAE,EAAE;IACRC,GAAG,EAAE;EACP;AACF,CAAC,CAAC","ignoreList":[]} ++{ ++ "version": 3, ++ "names": [ ++ "React", ++ "findNodeHandle", ++ "StyleSheet", ++ "CameraRuntimeError", ++ "tryParseNativeCameraError", ++ "isErrorWithCause", ++ "CameraModule", ++ "VisionCameraProxy", ++ "CameraDevices", ++ "SkiaCameraCanvas", ++ "FpsGraph", ++ "MAX_BARS", ++ "NativeCameraView", ++ "RotationHelper", ++ "isSkiaFrameProcessor", ++ "frameProcessor", ++ "type", ++ "Camera", ++ "PureComponent", ++ "displayName", ++ "isNativeViewMounted", ++ "lastUIRotation", ++ "undefined", ++ "rotationHelper", ++ "constructor", ++ "props", ++ "onViewReady", ++ "bind", ++ "onAverageFpsChanged", ++ "onInitialized", ++ "onStarted", ++ "onStopped", ++ "onPreviewStarted", ++ "onPreviewStopped", ++ "onShutter", ++ "onOutputOrientationChanged", ++ "onPreviewOrientationChanged", ++ "onError", ++ "onCodeScanned", ++ "ref", ++ "createRef", ++ "lastFrameProcessor", ++ "state", ++ "isRecordingWithFlash", ++ "averageFpsSamples", ++ "handle", ++ "nodeHandle", ++ "current", ++ "takePhoto", ++ "options", ++ "e", ++ "takeSnapshot", ++ "getBitRateMultiplier", ++ "bitRate", ++ "startRecording", ++ "onRecordingError", ++ "onRecordingFinished", ++ "passThruOptions", ++ "flash", ++ "setState", ++ "onRecordCallback", ++ "video", ++ "error", ++ "nativeRecordVideoOptions", ++ "pauseRecording", ++ "resumeRecording", ++ "stopRecording", ++ "cancelRecording", ++ "focus", ++ "point", ++ "getAvailableCameraDevices", ++ "addCameraDevicesChangedListener", ++ "listener", ++ "getCameraPermissionStatus", ++ "getMicrophonePermissionStatus", ++ "getLocationPermissionStatus", ++ "requestCameraPermission", ++ "requestMicrophonePermission", ++ "requestLocationPermission", ++ "event", ++ "nativeEvent", ++ "cause", ++ "cameraError", ++ "code", ++ "message", ++ "console", ++ "outputOrientation", ++ "maybeUpdateUIRotation", ++ "previewOrientation", ++ "value", ++ "uiRotation", ++ "onUIRotationChanged", ++ "codeScanner", ++ "codes", ++ "frame", ++ "setFrameProcessor", ++ "unsetFrameProcessor", ++ "removeFrameProcessor", ++ "averageFps", ++ "length", ++ "shift", ++ "componentDidUpdate", ++ "render", ++ "device", ++ "enableFpsGraph", ++ "fps", ++ "videoBitRate", ++ "shouldEnableBufferCompression", ++ "torch", ++ "isRenderingWithSkia", ++ "shouldBeMirrored", ++ "position", ++ "minFps", ++ "maxFps", ++ "bitRateMultiplier", ++ "bitRateOverride", ++ "createElement", ++ "_extends", ++ "cameraId", ++ "id", ++ "isMirrored", ++ "videoBitRateMultiplier", ++ "videoBitRateOverride", ++ "codeScannerOptions", ++ "enableFrameProcessor", ++ "enableBufferCompression", ++ "preview", ++ "style", ++ "styles", ++ "customPreviewView", ++ "offscreenTextures", ++ "resizeMode", ++ "fpsGraph", ++ "targetMaxFps", ++ "format", ++ "create", ++ "flex", ++ "elevation", ++ "left", ++ "top" ++ ], ++ "sourceRoot": "../../src", ++ "sources": [ ++ "Camera.tsx" ++ ], ++ "mappings": ";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,cAAc,EAAEC,UAAU,QAAQ,cAAc;AAGzD,SAASC,kBAAkB,EAAEC,yBAAyB,EAAEC,gBAAgB,QAAQ,eAAe;AAE/F,SAASC,YAAY,QAAQ,sBAAsB;AAInD,SAASC,iBAAiB,QAAQ,sCAAsC;AACxE,SAASC,aAAa,QAAQ,iBAAiB;AAG/C,SAASC,gBAAgB,QAAQ,yBAAyB;AAE1D,SAASC,QAAQ,EAAEC,QAAQ,QAAQ,YAAY;AAS/C,SAASC,gBAAgB,QAAQ,oBAAoB;AACrD,SAASC,cAAc,QAAQ,kBAAkB;;AAEjD;;AAUA;;AAEA,SAASC,oBAAoBA,CAACC,cAAgE,EAA4C;EACxI,OAAOA,cAAc,EAAEC,IAAI,KAAK,eAAe;AACjD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,MAAM,SAASjB,KAAK,CAACkB,aAAa,CAA2B;EACxE;EACA,OAAOC,WAAW,GAAG,QAAQ;EAC7B;EACAA,WAAW,GAAGF,MAAM,CAACE,WAAW;EAExBC,mBAAmB,GAAG,KAAK;EAC3BC,cAAc,GAAuBC,SAAS;EAC9CC,cAAc,GAAG,IAAIV,cAAc,CAAC,CAAC;EAI7C;EACAW,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,CAAC;IACZ,IAAI,CAACC,WAAW,GAAG,IAAI,CAACA,WAAW,CAACC,IAAI,CAAC,IAAI,CAAC;IAC9C,IAAI,CAACC,mBAAmB,GAAG,IAAI,CAACA,mBAAmB,CAACD,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,CAACE,aAAa,GAAG,IAAI,CAACA,aAAa,CAACF,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACG,SAAS,GAAG,IAAI,CAACA,SAAS,CAACH,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACI,SAAS,GAAG,IAAI,CAACA,SAAS,CAACJ,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACK,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAACL,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAACM,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAACN,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAACO,SAAS,GAAG,IAAI,CAACA,SAAS,CAACP,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACQ,0BAA0B,GAAG,IAAI,CAACA,0BAA0B,CAACR,IAAI,CAAC,IAAI,CAAC;IAC5E,IAAI,CAACS,2BAA2B,GAAG,IAAI,CAACA,2BAA2B,CAACT,IAAI,CAAC,IAAI,CAAC;IAC9E,IAAI,CAACU,OAAO,GAAG,IAAI,CAACA,OAAO,CAACV,IAAI,CAAC,IAAI,CAAC;IACtC,IAAI,CAACW,aAAa,GAAG,IAAI,CAACA,aAAa,CAACX,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACY,GAAG,gBAAGvC,KAAK,CAACwC,SAAS,CAAU,CAAC;IACrC,IAAI,CAACC,kBAAkB,GAAGnB,SAAS;IACnC,IAAI,CAACoB,KAAK,GAAG;MACXC,oBAAoB,EAAE,KAAK;MAC3BC,iBAAiB,EAAE;IACrB,CAAC;EACH;EAEA,IAAYC,MAAMA,CAAA,EAAW;IAC3B,MAAMC,UAAU,GAAG7C,cAAc,CAAC,IAAI,CAACsC,GAAG,CAACQ,OAAO,CAAC;IACnD,IAAID,UAAU,IAAI,IAAI,IAAIA,UAAU,KAAK,CAAC,CAAC,EAAE;MAC3C,MAAM,IAAI3C,kBAAkB,CAC1B,uBAAuB,EACvB,iGACF,CAAC;IACH;IAEA,OAAO2C,UAAU;EACnB;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaE,SAASA,CAACC,OAA0B,EAAsB;IACrE,IAAI;MACF,OAAO,MAAM3C,YAAY,CAAC0C,SAAS,CAAC,IAAI,CAACH,MAAM,EAAEI,OAAO,IAAI,CAAC,CAAC,CAAC;IACjE,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaC,YAAYA,CAACF,OAA6B,EAAsB;IAC3E,IAAI;MACF,OAAO,MAAM3C,YAAY,CAAC6C,YAAY,CAAC,IAAI,CAACN,MAAM,EAAEI,OAAO,IAAI,CAAC,CAAC,CAAC;IACpE,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EAEQE,oBAAoBA,CAACC,OAAoC,EAAU;IACzE,IAAI,OAAOA,OAAO,KAAK,QAAQ,IAAIA,OAAO,IAAI,IAAI,EAAE,OAAO,CAAC;IAC5D,QAAQA,OAAO;MACb,KAAK,WAAW;QACd,OAAO,GAAG;MACZ,KAAK,KAAK;QACR,OAAO,GAAG;MACZ,KAAK,QAAQ;QACX,OAAO,CAAC;MACV,KAAK,MAAM;QACT,OAAO,GAAG;MACZ,KAAK,YAAY;QACf,OAAO,GAAG;IACd;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,cAAcA,CAACL,OAA2B,EAAQ;IACvD,MAAM;MAAEM,gBAAgB;MAAEC,mBAAmB;MAAE,GAAGC;IAAgB,CAAC,GAAGR,OAAO;IAC7E,IAAI,OAAOM,gBAAgB,KAAK,UAAU,IAAI,OAAOC,mBAAmB,KAAK,UAAU,EACrF,MAAM,IAAIrD,kBAAkB,CAAC,6BAA6B,EAAE,qEAAqE,CAAC;IAEpI,IAAI8C,OAAO,CAACS,KAAK,KAAK,IAAI,EAAE;MAC1B;MACA,IAAI,CAACC,QAAQ,CAAC;QACZhB,oBAAoB,EAAE;MACxB,CAAC,CAAC;IACJ;IAEA,MAAMiB,gBAAgB,GAAGA,CAACC,KAAiB,EAAEC,KAA0B,KAAW;MAChF,IAAI,IAAI,CAACpB,KAAK,CAACC,oBAAoB,EAAE;QACnC;QACA,IAAI,CAACgB,QAAQ,CAAC;UACZhB,oBAAoB,EAAE;QACxB,CAAC,CAAC;MACJ;MAEA,IAAImB,KAAK,IAAI,IAAI,EAAE,OAAOP,gBAAgB,CAACO,KAAK,CAAC;MACjD,IAAID,KAAK,IAAI,IAAI,EAAE,OAAOL,mBAAmB,CAACK,KAAK,CAAC;IACtD,CAAC;IAED,MAAME,wBAAkD,GAAGN,eAAe;IAC1E,IAAI;MACF;MACAnD,YAAY,CAACgD,cAAc,CAAC,IAAI,CAACT,MAAM,EAAEkB,wBAAwB,EAAEH,gBAAgB,CAAC;IACtF,CAAC,CAAC,OAAOV,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAac,cAAcA,CAAA,EAAkB;IAC3C,IAAI;MACF,OAAO,MAAM1D,YAAY,CAAC0D,cAAc,CAAC,IAAI,CAACnB,MAAM,CAAC;IACvD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAae,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAM3D,YAAY,CAAC2D,eAAe,CAAC,IAAI,CAACpB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAagB,aAAaA,CAAA,EAAkB;IAC1C,IAAI;MACF,OAAO,MAAM5D,YAAY,CAAC4D,aAAa,CAAC,IAAI,CAACrB,MAAM,CAAC;IACtD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaiB,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAM7D,YAAY,CAAC6D,eAAe,CAAC,IAAI,CAACtB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAakB,KAAKA,CAACC,KAAY,EAAiB;IAC9C,IAAI;MACF,OAAO,MAAM/D,YAAY,CAAC8D,KAAK,CAAC,IAAI,CAACvB,MAAM,EAAEwB,KAAK,CAAC;IACrD,CAAC,CAAC,OAAOnB,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcoB,yBAAyBA,CAAA,EAAmB;IACxD,OAAO9D,aAAa,CAAC8D,yBAAyB,CAAC,CAAC;EAClD;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,+BAA+BA,CAACC,QAA8C,EAAuB;IACjH,OAAOhE,aAAa,CAAC+D,+BAA+B,CAACC,QAAQ,CAAC;EAChE;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,yBAAyBA,CAAA,EAA2B;IAChE,OAAOnE,YAAY,CAACmE,yBAAyB,CAAC,CAAC;EACjD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,6BAA6BA,CAAA,EAA2B;IACpE,OAAOpE,YAAY,CAACoE,6BAA6B,CAAC,CAAC;EACrD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,2BAA2BA,CAAA,EAA2B;IAClE,OAAOrE,YAAY,CAACqE,2BAA2B,CAAC,CAAC;EACnD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBC,uBAAuBA,CAAA,EAA2C;IACpF,IAAI;MACF,OAAO,MAAMtE,YAAY,CAACsE,uBAAuB,CAAC,CAAC;IACrD,CAAC,CAAC,OAAO1B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoB2B,2BAA2BA,CAAA,EAA2C;IACxF,IAAI;MACF,OAAO,MAAMvE,YAAY,CAACuE,2BAA2B,CAAC,CAAC;IACzD,CAAC,CAAC,OAAO3B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoB4B,yBAAyBA,CAAA,EAA2C;IACtF,IAAI;MACF,OAAO,MAAMxE,YAAY,CAACwE,yBAAyB,CAAC,CAAC;IACvD,CAAC,CAAC,OAAO5B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACQb,OAAOA,CAAC0C,KAAyC,EAAQ;IAC/D,MAAMjB,KAAK,GAAGiB,KAAK,CAACC,WAAW;IAC/B,MAAMC,KAAK,GAAG5E,gBAAgB,CAACyD,KAAK,CAACmB,KAAK,CAAC,GAAGnB,KAAK,CAACmB,KAAK,GAAG3D,SAAS;IACrE;IACA,MAAM4D,WAAW,GAAG,IAAI/E,kBAAkB,CAAC2D,KAAK,CAACqB,IAAI,EAAErB,KAAK,CAACsB,OAAO,EAAEH,KAAK,CAAC;IAE5E,IAAI,IAAI,CAACxD,KAAK,CAACY,OAAO,IAAI,IAAI,EAAE;MAC9B,IAAI,CAACZ,KAAK,CAACY,OAAO,CAAC6C,WAAW,CAAC;IACjC,CAAC,MAAM;MACL;MACAG,OAAO,CAACvB,KAAK,CAACoB,WAAW,CAAC;IAC5B;EACF;EAEQrD,aAAaA,CAAA,EAAS;IAC5B,IAAI,CAACJ,KAAK,CAACI,aAAa,GAAG,CAAC;EAC9B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACL,KAAK,CAACK,SAAS,GAAG,CAAC;EAC1B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACN,KAAK,CAACM,SAAS,GAAG,CAAC;EAC1B;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACP,KAAK,CAACO,gBAAgB,GAAG,CAAC;EACjC;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACR,KAAK,CAACQ,gBAAgB,GAAG,CAAC;EACjC;EAEQC,SAASA,CAAC6C,KAA2C,EAAQ;IACnE,IAAI,CAACtD,KAAK,CAACS,SAAS,GAAG6C,KAAK,CAACC,WAAW,CAAC;EAC3C;EAEQ7C,0BAA0BA,CAAC;IAAE6C,WAAW,EAAE;MAAEM;IAAkB;EAAuD,CAAC,EAAQ;IACpI,IAAI,CAAC/D,cAAc,CAAC+D,iBAAiB,GAAGA,iBAAiB;IACzD,IAAI,CAAC7D,KAAK,CAACU,0BAA0B,GAAGmD,iBAAiB,CAAC;IAC1D,IAAI,CAACC,qBAAqB,CAAC,CAAC;EAC9B;EAEQnD,2BAA2BA,CAAC;IAAE4C,WAAW,EAAE;MAAEQ;IAAmB;EAAwD,CAAC,EAAQ;IACvI,IAAI,CAACjE,cAAc,CAACiE,kBAAkB,GAAGA,kBAAkB;IAC3D,IAAI,CAAC/D,KAAK,CAACW,2BAA2B,GAAGoD,kBAAkB,CAAC;IAC5D,IAAI,CAACD,qBAAqB,CAAC,CAAC;IAE5B,IAAIzE,oBAAoB,CAAC,IAAI,CAACW,KAAK,CAACV,cAAc,CAAC,EAAE;MACnD;MACA,IAAI,CAACU,KAAK,CAACV,cAAc,CAACyE,kBAAkB,CAACC,KAAK,GAAGD,kBAAkB;IACzE;EACF;EAEQD,qBAAqBA,CAAA,EAAS;IACpC,MAAMG,UAAU,GAAG,IAAI,CAACnE,cAAc,CAACmE,UAAU;IACjD,IAAIA,UAAU,KAAK,IAAI,CAACrE,cAAc,EAAE;MACtC,IAAI,CAACI,KAAK,CAACkE,mBAAmB,GAAGD,UAAU,CAAC;MAC5C,IAAI,CAACrE,cAAc,GAAGqE,UAAU;IAClC;EACF;EACA;;EAEQpD,aAAaA,CAACyC,KAA+C,EAAQ;IAC3E,MAAMa,WAAW,GAAG,IAAI,CAACnE,KAAK,CAACmE,WAAW;IAC1C,IAAIA,WAAW,IAAI,IAAI,EAAE;IAEzBA,WAAW,CAACtD,aAAa,CAACyC,KAAK,CAACC,WAAW,CAACa,KAAK,EAAEd,KAAK,CAACC,WAAW,CAACc,KAAK,CAAC;EAC7E;;EAEA;EACQC,iBAAiBA,CAAChF,cAAsC,EAAQ;IACtER,iBAAiB,CAACwF,iBAAiB,CAAC,IAAI,CAAClD,MAAM,EAAE9B,cAAc,CAAC;EAClE;EAEQiF,mBAAmBA,CAAA,EAAS;IAClCzF,iBAAiB,CAAC0F,oBAAoB,CAAC,IAAI,CAACpD,MAAM,CAAC;EACrD;EAEQnB,WAAWA,CAAA,EAAS;IAC1B,IAAI,CAACN,mBAAmB,GAAG,IAAI;IAC/B,IAAI,IAAI,CAACK,KAAK,CAACV,cAAc,IAAI,IAAI,EAAE;MACrC;MACA,IAAI,CAACgF,iBAAiB,CAAC,IAAI,CAACtE,KAAK,CAACV,cAAc,CAACA,cAAc,CAAC;MAChE,IAAI,CAAC0B,kBAAkB,GAAG,IAAI,CAAChB,KAAK,CAACV,cAAc,CAACA,cAAc;IACpE;EACF;EAEQa,mBAAmBA,CAAC;IAAEoD,WAAW,EAAE;MAAEkB;IAAW;EAAgD,CAAC,EAAQ;IAC/G,IAAI,CAACvC,QAAQ,CAAEjB,KAAK,IAAK;MACvB,MAAME,iBAAiB,GAAG,CAAC,GAAGF,KAAK,CAACE,iBAAiB,EAAEsD,UAAU,CAAC;MAClE,OAAOtD,iBAAiB,CAACuD,MAAM,IAAIxF,QAAQ,GAAG,CAAC,EAAE;QAC/C;QACAiC,iBAAiB,CAACwD,KAAK,CAAC,CAAC;MAC3B;MAEA,OAAO;QACL,GAAG1D,KAAK;QACRE,iBAAiB,EAAEA;MACrB,CAAC;IACH,CAAC,CAAC;EACJ;;EAEA;EACAyD,kBAAkBA,CAAA,EAAS;IACzB,IAAI,CAAC,IAAI,CAACjF,mBAAmB,EAAE;IAC/B,MAAML,cAAc,GAAG,IAAI,CAACU,KAAK,CAACV,cAAc;IAChD,IAAIA,cAAc,EAAEA,cAAc,KAAK,IAAI,CAAC0B,kBAAkB,EAAE;MAC9D;MACA,IAAI1B,cAAc,IAAI,IAAI,EAAE,IAAI,CAACgF,iBAAiB,CAAChF,cAAc,CAACA,cAAc,CAAC,MAC5E,IAAI,CAACiF,mBAAmB,CAAC,CAAC;MAE/B,IAAI,CAACvD,kBAAkB,GAAG1B,cAAc,EAAEA,cAAc;IAC1D;EACF;EACA;;EAEA;EACOuF,MAAMA,CAAA,EAAoB;IAC/B;IACA,MAAM;MAAEC,MAAM;MAAExF,cAAc;MAAE6E,WAAW;MAAEY,cAAc;MAAEC,GAAG;MAAEC,YAAY;MAAE,GAAGjF;IAAM,CAAC,GAAG,IAAI,CAACA,KAAK;;IAEvG;IACA,IAAI8E,MAAM,IAAI,IAAI,EAAE;MAClB,MAAM,IAAIpG,kBAAkB,CAC1B,kBAAkB,EAClB,kIACF,CAAC;IACH;IAEA,MAAMwG,6BAA6B,GAAGlF,KAAK,CAACoC,KAAK,KAAK,IAAI,IAAI9C,cAAc,IAAI,IAAI;IACpF,MAAM6F,KAAK,GAAG,IAAI,CAAClE,KAAK,CAACC,oBAAoB,GAAG,IAAI,GAAGlB,KAAK,CAACmF,KAAK;IAClE,MAAMC,mBAAmB,GAAG/F,oBAAoB,CAACC,cAAc,CAAC;IAChE,MAAM+F,gBAAgB,GAAGP,MAAM,CAACQ,QAAQ,KAAK,OAAO;;IAEpD;IACA,MAAMC,MAAM,GAAGP,GAAG,IAAI,IAAI,GAAGnF,SAAS,GAAG,OAAOmF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;IAC/E,MAAMQ,MAAM,GAAGR,GAAG,IAAI,IAAI,GAAGnF,SAAS,GAAG,OAAOmF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;;IAE/E;IACA,IAAIS,iBAAqC;IACzC,IAAIC,eAAmC;IACvC,IAAI,OAAOT,YAAY,KAAK,QAAQ,EAAE;MACpC;MACAS,eAAe,GAAGT,YAAY;IAChC,CAAC,MAAM,IAAI,OAAOA,YAAY,KAAK,QAAQ,IAAIA,YAAY,KAAK,QAAQ,EAAE;MACxE;MACAQ,iBAAiB,GAAG,IAAI,CAAC9D,oBAAoB,CAACsD,YAAY,CAAC;IAC7D;IAEA,oBACE1G,KAAA,CAAAoH,aAAA,CAACxG,gBAAgB,EAAAyG,QAAA,KACX5F,KAAK;MACT6F,QAAQ,EAAEf,MAAM,CAACgB,EAAG;MACpBhF,GAAG,EAAE,IAAI,CAACA,GAAI;MACdqE,KAAK,EAAEA,KAAM;MACbI,MAAM,EAAEA,MAAO;MACfC,MAAM,EAAEA,MAAO;MACfO,UAAU,EAAE/F,KAAK,CAAC+F,UAAU,IAAIV,gBAAiB;MACjDpF,WAAW,EAAE,IAAI,CAACA,WAAY;MAC9BE,mBAAmB,EAAE4E,cAAc,GAAG,IAAI,CAAC5E,mBAAmB,GAAGN,SAAU;MAC3EO,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCS,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCR,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BuF,sBAAsB,EAAEP,iBAAkB;MAC1CQ,oBAAoB,EAAEP,eAAgB;MACtChF,0BAA0B,EAAE,IAAI,CAACA,0BAA2B;MAC5DC,2BAA2B,EAAE,IAAI,CAACA,2BAA4B;MAC9DC,OAAO,EAAE,IAAI,CAACA,OAAQ;MACtBsF,kBAAkB,EAAE/B,WAAY;MAChCgC,oBAAoB,EAAE7G,cAAc,IAAI,IAAK;MAC7C8G,uBAAuB,EAAEpG,KAAK,CAACoG,uBAAuB,IAAIlB,6BAA8B;MACxFmB,OAAO,EAAEjB,mBAAmB,GAAG,KAAK,GAAIpF,KAAK,CAACqG,OAAO,IAAI;IAAM,IAC9DjB,mBAAmB,iBAClB7G,KAAA,CAAAoH,aAAA,CAAC3G,gBAAgB;MACfsH,KAAK,EAAEC,MAAM,CAACC,iBAAkB;MAChCC,iBAAiB,EAAEnH,cAAc,CAACmH,iBAAkB;MACpDC,UAAU,EAAE1G,KAAK,CAAC0G;IAAW,CAC9B,CACF,EACA3B,cAAc,iBACbxG,KAAA,CAAAoH,aAAA,CAAC1G,QAAQ;MAACqH,KAAK,EAAEC,MAAM,CAACI,QAAS;MAACxF,iBAAiB,EAAE,IAAI,CAACF,KAAK,CAACE,iBAAkB;MAACyF,YAAY,EAAE5G,KAAK,CAAC6G,MAAM,EAAErB,MAAM,IAAI;IAAG,CAAE,CAEhH,CAAC;EAEvB;AACF;AACA;;AAEA,MAAMe,MAAM,GAAG9H,UAAU,CAACqI,MAAM,CAAC;EAC/BN,iBAAiB,EAAE;IACjBO,IAAI,EAAE;EACR,CAAC;EACDJ,QAAQ,EAAE;IACRK,SAAS,EAAE,CAAC;IACZ1B,QAAQ,EAAE,UAAU;IACpB2B,IAAI,EAAE,EAAE;IACRC,GAAG,EAAE;EACP;AACF,CAAC,CAAC", ++ "ignoreList": [] ++} +diff --git a/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js b/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js +new file mode 100644 +index 0000000..3dd9033 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js +@@ -0,0 +1,5 @@ ++/* eslint-disable @typescript-eslint/ban-types */ ++import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; ++ ++export default codegenNativeComponent('CameraView'); ++//# sourceMappingURL=CameraViewNativeComponent.js.map +diff --git a/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js.map b/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js.map +new file mode 100644 +index 0000000..fc84756 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js.map +@@ -0,0 +1,11 @@ ++{ ++ "version": 3, ++ "names": [ ++ "codegenNativeComponent" ++ ], ++ "sourceRoot": "../../../src", ++ "sources": [ ++ "specs/CameraViewNativeComponent.ts" ++ ], ++ "mappings": "AAAA;;AAGA,OAAOA,sBAAsB,MAAM,yDAAyD;AAuF5F,eAAeA,sBAAsB,CAAc,YAAY,CAAC" ++} +diff --git a/node_modules/react-native-vision-camera/lib/typescript/Camera.d.ts.map b/node_modules/react-native-vision-camera/lib/typescript/Camera.d.ts.map +index 5abba6e..8e4c1b6 100644 +--- a/node_modules/react-native-vision-camera/lib/typescript/Camera.d.ts.map ++++ b/node_modules/react-native-vision-camera/lib/typescript/Camera.d.ts.map +@@ -1 +1,10 @@ +-{"version":3,"file":"Camera.d.ts","sourceRoot":"","sources":["../../src/Camera.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAGxD,OAAO,KAAK,EAAE,WAAW,EAAkE,MAAM,qBAAqB,CAAA;AAEtH,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACpE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,EAAE,kBAAkB,EAAa,MAAM,mBAAmB,CAAA;AAGtE,OAAO,KAAK,EAAE,mBAAmB,EAAuC,MAAM,cAAc,CAAA;AAC5F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAgB3D,MAAM,MAAM,sBAAsB,GAAG,SAAS,GAAG,gBAAgB,GAAG,QAAQ,GAAG,YAAY,CAAA;AAC3F,MAAM,MAAM,6BAA6B,GAAG,SAAS,GAAG,QAAQ,CAAA;AAIhE,UAAU,WAAW;IACnB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,iBAAiB,EAAE,MAAM,EAAE,CAAA;CAC5B;AAQD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,qBAAa,MAAO,SAAQ,KAAK,CAAC,aAAa,CAAC,WAAW,EAAE,WAAW,CAAC;IACvE,gBAAgB;IAChB,MAAM,CAAC,WAAW,SAAW;IAC7B,gBAAgB;IAChB,WAAW,SAAqB;IAChC,OAAO,CAAC,kBAAkB,CAAsC;IAChE,OAAO,CAAC,mBAAmB,CAAQ;IACnC,OAAO,CAAC,cAAc,CAAgC;IACtD,OAAO,CAAC,cAAc,CAAuB;IAE7C,OAAO,CAAC,QAAQ,CAAC,GAAG,CAA0B;IAE9C,gBAAgB;gBACJ,KAAK,EAAE,WAAW;IAsB9B,OAAO,KAAK,MAAM,GAUjB;IAGD;;;;;;;;;;;;OAYG;IACU,SAAS,CAAC,OAAO,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,SAAS,CAAC;IAQtE;;;;;;;;;;;;;;OAcG;IACU,YAAY,CAAC,OAAO,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,SAAS,CAAC;IAQ5E,OAAO,CAAC,oBAAoB;IAgB5B;;;;;;;;;;;;;;;;OAgBG;IACI,cAAc,CAAC,OAAO,EAAE,kBAAkB,GAAG,IAAI;IAiCxD;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ5C;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ7C;;;;;;;;;;;;;;;;OAgBG;IACU,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ3C;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ7C;;;;;;;;;;;;;;;;;;OAkBG;IACU,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;IAU/C;;;;;;;;;;;;;;;;OAgBG;WACW,yBAAyB,IAAI,YAAY,EAAE;IAGzD;;;;;OAKG;WACW,+BAA+B,CAAC,QAAQ,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,KAAK,IAAI,GAAG,mBAAmB;IAGlH;;;;;OAKG;WACW,yBAAyB,IAAI,sBAAsB;IAGjE;;;;;;OAMG;WACW,6BAA6B,IAAI,sBAAsB;IAGrE;;;;;;;;;OASG;WACW,2BAA2B,IAAI,sBAAsB;IAGnE;;;;;;;;OAQG;WACiB,uBAAuB,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAOrF;;;;;;;;OAQG;WACiB,2BAA2B,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAOzF;;;;;;;;OAQG;WACiB,yBAAyB,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAUvF,OAAO,CAAC,OAAO;IAcf,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,0BAA0B;IAMlC,OAAO,CAAC,2BAA2B;IAWnC,OAAO,CAAC,qBAAqB;IAS7B,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,WAAW;IASnB,OAAO,CAAC,mBAAmB;IAe3B,gBAAgB;IAChB,kBAAkB,IAAI,IAAI;IAa1B,gBAAgB;IACT,MAAM,IAAI,KAAK,CAAC,SAAS;CAwEjC"} +\ No newline at end of file ++{ ++ "version": 3, ++ "file": "Camera.d.ts", ++ "sourceRoot": "", ++ "sources": [ ++ "../../src/Camera.tsx" ++ ], ++ "names": [], ++ "mappings": "AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAGxD,OAAO,KAAK,EAAE,WAAW,EAAkE,MAAM,qBAAqB,CAAA;AAEtH,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACpE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,EAAE,kBAAkB,EAAa,MAAM,mBAAmB,CAAA;AAGtE,OAAO,KAAK,EAAE,mBAAmB,EAAuC,MAAM,cAAc,CAAA;AAC5F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAgB3D,MAAM,MAAM,sBAAsB,GAAG,SAAS,GAAG,gBAAgB,GAAG,QAAQ,GAAG,YAAY,CAAA;AAC3F,MAAM,MAAM,6BAA6B,GAAG,SAAS,GAAG,QAAQ,CAAA;AAIhE,UAAU,WAAW;IACnB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,iBAAiB,EAAE,MAAM,EAAE,CAAA;CAC5B;AAQD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,qBAAa,MAAO,SAAQ,KAAK,CAAC,aAAa,CAAC,WAAW,EAAE,WAAW,CAAC;IACvE,gBAAgB;IAChB,MAAM,CAAC,WAAW,SAAW;IAC7B,gBAAgB;IAChB,WAAW,SAAqB;IAChC,OAAO,CAAC,kBAAkB,CAAsC;IAChE,OAAO,CAAC,mBAAmB,CAAQ;IACnC,OAAO,CAAC,cAAc,CAAgC;IACtD,OAAO,CAAC,cAAc,CAAuB;IAE7C,OAAO,CAAC,QAAQ,CAAC,GAAG,CAA0B;IAE9C,gBAAgB;gBACJ,KAAK,EAAE,WAAW;IAsB9B,OAAO,KAAK,MAAM,GAUjB;IAGD;;;;;;;;;;;;OAYG;IACU,SAAS,CAAC,OAAO,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,SAAS,CAAC;IAQtE;;;;;;;;;;;;;;OAcG;IACU,YAAY,CAAC,OAAO,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,SAAS,CAAC;IAQ5E,OAAO,CAAC,oBAAoB;IAgB5B;;;;;;;;;;;;;;;;OAgBG;IACI,cAAc,CAAC,OAAO,EAAE,kBAAkB,GAAG,IAAI;IAiCxD;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ5C;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ7C;;;;;;;;;;;;;;;;OAgBG;IACU,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ3C;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ7C;;;;;;;;;;;;;;;;;;OAkBG;IACU,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;IAU/C;;;;;;;;;;;;;;;;OAgBG;WACW,yBAAyB,IAAI,YAAY,EAAE;IAGzD;;;;;OAKG;WACW,+BAA+B,CAAC,QAAQ,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,KAAK,IAAI,GAAG,mBAAmB;IAGlH;;;;;OAKG;WACW,yBAAyB,IAAI,sBAAsB;IAGjE;;;;;;OAMG;WACW,6BAA6B,IAAI,sBAAsB;IAGrE;;;;;;;;;OASG;WACW,2BAA2B,IAAI,sBAAsB;IAGnE;;;;;;;;OAQG;WACiB,uBAAuB,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAOrF;;;;;;;;OAQG;WACiB,2BAA2B,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAOzF;;;;;;;;OAQG;WACiB,yBAAyB,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAUvF,OAAO,CAAC,OAAO;IAcf,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,0BAA0B;IAMlC,OAAO,CAAC,2BAA2B;IAWnC,OAAO,CAAC,qBAAqB;IAS7B,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,WAAW;IASnB,OAAO,CAAC,mBAAmB;IAe3B,gBAAgB;IAChB,kBAAkB,IAAI,IAAI;IAa1B,gBAAgB;IACT,MAAM,IAAI,KAAK,CAAC,SAAS;CAwEjC" ++} +diff --git a/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts b/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts +new file mode 100644 +index 0000000..f919d3c +--- /dev/null ++++ b/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts +@@ -0,0 +1,107 @@ ++/// ++/// ++import type {HostComponent, ViewProps} from 'react-native'; ++import type {DirectEventHandler, Double, Int32} from 'react-native/Libraries/Types/CodegenTypes'; ++ ++export type VisionCameraComponentType = HostComponent; ++export interface NativeProps extends ViewProps { ++ enableGpuBuffers: boolean; ++ androidPreviewViewType?: string; ++ cameraId: string; ++ enableFrameProcessor: boolean; ++ enableLocation: boolean; ++ enableBufferCompression: boolean; ++ photoQualityBalance: string; ++ isActive: boolean; ++ photo?: boolean; ++ video?: boolean; ++ audio?: boolean; ++ torch?: string; ++ zoom?: Double; ++ exposure?: Double; ++ enableZoomGesture?: boolean; ++ enableFpsGraph?: boolean; ++ resizeMode?: string; ++ format?: Readonly<{ ++ supportsDepthCapture?: boolean; ++ photoHeight: Double; ++ photoWidth: Double; ++ videoHeight: Double; ++ videoWidth: Double; ++ maxISO: Double; ++ minISO: Double; ++ maxFps: Double; ++ minFps: Double; ++ fieldOfView: Double; ++ supportsVideoHDR: boolean; ++ supportsPhotoHDR: boolean; ++ autoFocusSystem: string; ++ videoStabilizationModes: string[]; ++ pixelFormats: string[]; ++ }>; ++ pixelFormat: string; ++ fps?: Int32; ++ videoHdr?: boolean; ++ photoHdr?: boolean; ++ lowLightBoost?: boolean; ++ videoStabilizationMode?: string; ++ enableDepthData?: boolean; ++ enablePortraitEffectsMatteDelivery?: boolean; ++ orientation?: string; ++ codeScannerOptions?: Readonly<{ ++ codeTypes?: string[]; ++ interval?: Double; ++ regionOfInterest?: Readonly<{ ++ x?: Double; ++ y?: Double; ++ width?: Double; ++ height?: Double; ++ }>; ++ }>; ++ onCodeScanned?: DirectEventHandler< ++ Readonly<{ ++ codes?: Readonly<{ ++ type?: string; ++ value?: string; ++ frame?: Readonly<{ ++ x: Double; ++ y: Double; ++ width: Double; ++ height: Double; ++ }>; ++ }>; ++ frame?: Readonly<{ ++ width: Int32; ++ height: Int32; ++ }>; ++ corners?: Readonly<{ ++ x: Double; ++ y: Double; ++ }>; ++ }> ++ >; ++ onShutter?: DirectEventHandler< ++ Readonly<{ ++ type: string; ++ }> ++ >; ++ onStarted?: DirectEventHandler>; ++ onStopped?: DirectEventHandler>; ++ onInitialized?: DirectEventHandler>; ++ onError?: DirectEventHandler< ++ Readonly<{ ++ code: string; ++ message: string; ++ cause: Readonly<{ ++ code: string; ++ domain: string; ++ message: string; ++ details: string; ++ }>; ++ }> ++ >; ++ onViewReady: DirectEventHandler>; ++} ++declare const _default: import('react-native/Libraries/Utilities/codegenNativeComponent').NativeComponentType; ++export default _default; ++//# sourceMappingURL=CameraViewNativeComponent.d.ts.map +diff --git a/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts.map b/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts.map +new file mode 100644 +index 0000000..61fb28a +--- /dev/null ++++ b/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts.map +@@ -0,0 +1,10 @@ ++{ ++ "version": 3, ++ "file": "CameraViewNativeComponent.d.ts", ++ "sourceRoot": "", ++ "sources": [ ++ "../../../src/specs/CameraViewNativeComponent.ts" ++ ], ++ "names": [], ++ "mappings": ";;AACA,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,2CAA2C,CAAC;AAGnG,MAAM,MAAM,yBAAyB,GAAG,aAAa,CAAC,WAAW,CAAC,CAAC;AAEnE,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,gBAAgB,EAAE,OAAO,CAAC;IAC1B,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,oBAAoB,EAAE,OAAO,CAAC;IAC9B,cAAc,EAAE,OAAO,CAAC;IACxB,uBAAuB,EAAE,OAAO,CAAC;IACjC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,QAAQ,CAAC;QAChB,oBAAoB,CAAC,EAAE,OAAO,CAAC;QAC/B,WAAW,EAAE,MAAM,CAAC;QACpB,UAAU,EAAE,MAAM,CAAC;QACnB,WAAW,EAAE,MAAM,CAAC;QACpB,UAAU,EAAE,MAAM,CAAC;QACnB,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,WAAW,EAAE,MAAM,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;QAC1B,gBAAgB,EAAE,OAAO,CAAC;QAC1B,eAAe,EAAE,MAAM,CAAC;QACxB,uBAAuB,EAAE,MAAM,EAAE,CAAC;QAClC,YAAY,EAAE,MAAM,EAAE,CAAC;KACxB,CAAC,CAAC;IACH,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,CAAC,EAAE,KAAK,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,kCAAkC,CAAC,EAAE,OAAO,CAAC;IAC7C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,CAAC,EAAE,QAAQ,CAAC;QAC5B,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;QACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,gBAAgB,CAAC,EAAE,QAAQ,CAAC;YAC1B,CAAC,CAAC,EAAE,MAAM,CAAC;YACX,CAAC,CAAC,EAAE,MAAM,CAAC;YACX,KAAK,CAAC,EAAE,MAAM,CAAC;YACf,MAAM,CAAC,EAAE,MAAM,CAAC;SACjB,CAAC,CAAC;KACJ,CAAC,CAAC;IACH,aAAa,CAAC,EAAE,kBAAkB,CAChC,QAAQ,CAAC;QACP,KAAK,CAAC,EAAE,QAAQ,CAAC;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,KAAK,CAAC,EAAE,MAAM,CAAC;YACf,KAAK,CAAC,EAAE,QAAQ,CAAC;gBAAE,CAAC,EAAE,MAAM,CAAC;gBAAC,CAAC,EAAE,MAAM,CAAC;gBAAC,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAA;aAAC,CAAC,CAAC;SAC1E,CAAC,CAAC;QACH,KAAK,CAAC,EAAE,QAAQ,CAAC;YAAE,KAAK,EAAE,KAAK,CAAC;YAAC,MAAM,EAAE,KAAK,CAAA;SAAE,CAAC,CAAC;QAClD,OAAO,CAAC,EAAE,QAAQ,CAAC;YAAE,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;KAC9C,CAAC,CACH,CAAC;IACF,SAAS,CAAC,EAAE,kBAAkB,CAC5B,QAAQ,CAAC;QACP,IAAI,EAAE,MAAM,CAAC;KACd,CAAC,CACH,CAAC;IACF,SAAS,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;IAC7C,SAAS,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;IAC7C,aAAa,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;IACjD,OAAO,CAAC,EAAE,kBAAkB,CAC1B,QAAQ,CAAC;QACP,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,KAAK,EAAE,QAAQ,CAAC;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;KACrF,CAAC,CACH,CAAC;IACF,WAAW,EAAE,kBAAkB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;CAC/C;;AAED,wBAAiE" ++} +diff --git a/node_modules/react-native-vision-camera/src/Camera.tsx b/node_modules/react-native-vision-camera/src/Camera.tsx +index afe056a..2c82a0b 100644 +--- a/node_modules/react-native-vision-camera/src/Camera.tsx ++++ b/node_modules/react-native-vision-camera/src/Camera.tsx +@@ -1,45 +1,38 @@ +-import React from 'react' +-import { findNodeHandle, StyleSheet } from 'react-native' +-import type { CameraDevice } from './types/CameraDevice' +-import type { CameraCaptureError } from './CameraError' +-import { CameraRuntimeError, tryParseNativeCameraError, isErrorWithCause } from './CameraError' +-import type { CameraProps, DrawableFrameProcessor, OnShutterEvent, ReadonlyFrameProcessor } from './types/CameraProps' +-import { CameraModule } from './NativeCameraModule' +-import type { PhotoFile, TakePhotoOptions } from './types/PhotoFile' +-import type { Point } from './types/Point' +-import type { RecordVideoOptions, VideoFile } from './types/VideoFile' +-import { VisionCameraProxy } from './frame-processors/VisionCameraProxy' +-import { CameraDevices } from './CameraDevices' +-import type { EmitterSubscription, NativeSyntheticEvent, NativeMethods } from 'react-native' +-import type { TakeSnapshotOptions } from './types/Snapshot' +-import { SkiaCameraCanvas } from './skia/SkiaCameraCanvas' +-import type { Frame } from './types/Frame' +-import { FpsGraph, MAX_BARS } from './FpsGraph' +-import type { +- AverageFpsChangedEvent, +- NativeCameraViewProps, +- OnCodeScannedEvent, +- OnErrorEvent, +- OutputOrientationChangedEvent, +- PreviewOrientationChangedEvent, +-} from './NativeCameraView' +-import { NativeCameraView } from './NativeCameraView' +-import { RotationHelper } from './RotationHelper' ++import React from 'react'; ++import {findNodeHandle, StyleSheet} from 'react-native'; ++import type {EmitterSubscription, NativeMethods, NativeSyntheticEvent} from 'react-native'; ++import {CameraDevices} from './CameraDevices'; ++import type {CameraCaptureError} from './CameraError'; ++import {CameraRuntimeError, isErrorWithCause, tryParseNativeCameraError} from './CameraError'; ++import {FpsGraph, MAX_BARS} from './FpsGraph'; ++import {VisionCameraProxy} from './frame-processors/VisionCameraProxy'; ++import {CameraModule} from './NativeCameraModule'; ++import type {AverageFpsChangedEvent, NativeCameraViewProps, OnCodeScannedEvent, OnErrorEvent, OutputOrientationChangedEvent, PreviewOrientationChangedEvent} from './NativeCameraView'; ++import {NativeCameraView} from './NativeCameraView'; ++import {RotationHelper} from './RotationHelper'; ++import {SkiaCameraCanvas} from './skia/SkiaCameraCanvas'; ++import type {CameraDevice} from './types/CameraDevice'; ++import type {CameraProps, DrawableFrameProcessor, OnShutterEvent, ReadonlyFrameProcessor} from './types/CameraProps'; ++import type {Frame} from './types/Frame'; ++import type {PhotoFile, TakePhotoOptions} from './types/PhotoFile'; ++import type {Point} from './types/Point'; ++import type {TakeSnapshotOptions} from './types/Snapshot'; ++import type {RecordVideoOptions, VideoFile} from './types/VideoFile'; + + //#region Types +-export type CameraPermissionStatus = 'granted' | 'not-determined' | 'denied' | 'restricted' +-export type CameraPermissionRequestResult = 'granted' | 'denied' ++export type CameraPermissionStatus = 'granted' | 'not-determined' | 'denied' | 'restricted'; ++export type CameraPermissionRequestResult = 'granted' | 'denied'; + +-type NativeRecordVideoOptions = Omit +-type RefType = React.Component & Readonly ++type NativeRecordVideoOptions = Omit; ++type RefType = React.Component & Readonly; + interface CameraState { +- isRecordingWithFlash: boolean +- averageFpsSamples: number[] ++ isRecordingWithFlash: boolean; ++ averageFpsSamples: number[]; + } + //#endregion + + function isSkiaFrameProcessor(frameProcessor?: ReadonlyFrameProcessor | DrawableFrameProcessor): frameProcessor is DrawableFrameProcessor { +- return frameProcessor?.type === 'drawable-skia' ++ return frameProcessor?.type === 'drawable-skia'; + } + + //#region Camera Component +@@ -76,627 +69,629 @@ function isSkiaFrameProcessor(frameProcessor?: ReadonlyFrameProcessor | Drawable + * @component + */ + export class Camera extends React.PureComponent { +- /** @internal */ +- static displayName = 'Camera' +- /** @internal */ +- displayName = Camera.displayName +- private lastFrameProcessor: ((frame: Frame) => void) | undefined +- private isNativeViewMounted = false +- private lastUIRotation: number | undefined = undefined +- private rotationHelper = new RotationHelper() +- +- private readonly ref: React.RefObject +- +- /** @internal */ +- constructor(props: CameraProps) { +- super(props) +- this.onViewReady = this.onViewReady.bind(this) +- this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this) +- this.onInitialized = this.onInitialized.bind(this) +- this.onStarted = this.onStarted.bind(this) +- this.onStopped = this.onStopped.bind(this) +- this.onPreviewStarted = this.onPreviewStarted.bind(this) +- this.onPreviewStopped = this.onPreviewStopped.bind(this) +- this.onShutter = this.onShutter.bind(this) +- this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this) +- this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this) +- this.onError = this.onError.bind(this) +- this.onCodeScanned = this.onCodeScanned.bind(this) +- this.ref = React.createRef() +- this.lastFrameProcessor = undefined +- this.state = { +- isRecordingWithFlash: false, +- averageFpsSamples: [], +- } +- } +- +- private get handle(): number { +- const nodeHandle = findNodeHandle(this.ref.current) +- if (nodeHandle == null || nodeHandle === -1) { +- throw new CameraRuntimeError( +- 'system/view-not-found', +- "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?", +- ) +- } +- +- return nodeHandle +- } +- +- //#region View-specific functions (UIViewManager) +- /** +- * Take a single photo and write it's content to a temporary file. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * @example +- * ```ts +- * const photo = await camera.current.takePhoto({ +- * flash: 'on', +- * enableAutoRedEyeReduction: true +- * }) +- * ``` +- */ +- public async takePhoto(options?: TakePhotoOptions): Promise { +- try { +- return await CameraModule.takePhoto(this.handle, options ?? {}) +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- +- /** +- * Captures a snapshot of the Camera view and write it's content to a temporary file. +- * +- * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. +- * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * @example +- * ```ts +- * const snapshot = await camera.current.takeSnapshot({ +- * quality: 100 +- * }) +- * ``` +- */ +- public async takeSnapshot(options?: TakeSnapshotOptions): Promise { +- try { +- return await CameraModule.takeSnapshot(this.handle, options ?? {}) +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- +- private getBitRateMultiplier(bitRate: CameraProps['videoBitRate']): number { +- if (typeof bitRate === 'number' || bitRate == null) return 1 +- switch (bitRate) { +- case 'extra-low': +- return 0.6 +- case 'low': +- return 0.8 +- case 'normal': +- return 1 +- case 'high': +- return 1.2 +- case 'extra-high': +- return 1.4 +- } +- } +- +- /** +- * Start a new video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * setTimeout(() => { +- * camera.current.stopRecording() +- * }, 5000) +- * ``` +- */ +- public startRecording(options: RecordVideoOptions): void { +- const { onRecordingError, onRecordingFinished, ...passThruOptions } = options +- if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') +- throw new CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!') +- +- if (options.flash === 'on') { +- // Enable torch for video recording +- this.setState({ +- isRecordingWithFlash: true, +- }) +- } +- +- const onRecordCallback = (video?: VideoFile, error?: CameraCaptureError): void => { +- if (this.state.isRecordingWithFlash) { +- // disable torch again if it was enabled +- this.setState({ +- isRecordingWithFlash: false, +- }) +- } +- +- if (error != null) return onRecordingError(error) +- if (video != null) return onRecordingFinished(video) +- } +- +- const nativeRecordVideoOptions: NativeRecordVideoOptions = passThruOptions +- try { +- // TODO: Use TurboModules to make this awaitable. +- CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback) +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- +- /** +- * Pauses the current video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * // Start +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * await timeout(1000) +- * // Pause +- * await camera.current.pauseRecording() +- * await timeout(500) +- * // Resume +- * await camera.current.resumeRecording() +- * await timeout(2000) +- * // Stop +- * await camera.current.stopRecording() +- * ``` +- */ +- public async pauseRecording(): Promise { +- try { +- return await CameraModule.pauseRecording(this.handle) +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- +- /** +- * Resumes a currently paused video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * // Start +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * await timeout(1000) +- * // Pause +- * await camera.current.pauseRecording() +- * await timeout(500) +- * // Resume +- * await camera.current.resumeRecording() +- * await timeout(2000) +- * // Stop +- * await camera.current.stopRecording() +- * ``` +- */ +- public async resumeRecording(): Promise { +- try { +- return await CameraModule.resumeRecording(this.handle) +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- +- /** +- * Stop the current video recording. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => console.error(error), +- * }) +- * setTimeout(async () => { +- * await camera.current.stopRecording() +- * }, 5000) +- * ``` +- */ +- public async stopRecording(): Promise { +- try { +- return await CameraModule.stopRecording(this.handle) +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- +- /** +- * Cancel the current video recording. The temporary video file will be deleted, +- * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. +- * +- * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. +- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error +- * +- * @example +- * ```ts +- * await camera.current.startRecording({ +- * onRecordingFinished: (video) => console.log(video), +- * onRecordingError: (error) => { +- * if (error.code === 'capture/recording-canceled') { +- * // recording was canceled. +- * } else { +- * console.error(error) +- * } +- * }, +- * }) +- * setTimeout(async () => { +- * await camera.current.cancelRecording() +- * }, 5000) +- * ``` +- */ +- public async cancelRecording(): Promise { +- try { +- return await CameraModule.cancelRecording(this.handle) +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- +- /** +- * Focus the camera to a specific point in the coordinate system. +- * @param {Point} point The point to focus to. This should be relative +- * to the Camera view's coordinate system and is expressed in points. +- * * `(0, 0)` means **top left**. +- * * `(CameraView.width, CameraView.height)` means **bottom right**. +- * +- * Make sure the value doesn't exceed the CameraView's dimensions. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- * @example +- * ```ts +- * await camera.current.focus({ +- * x: tapEvent.x, +- * y: tapEvent.y +- * }) +- * ``` +- */ +- public async focus(point: Point): Promise { +- try { +- return await CameraModule.focus(this.handle, point) +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- //#endregion +- +- //#region Static Functions (NativeModule) +- /** +- * Get a list of all available camera devices on the current phone. +- * +- * If you use Hooks, use the `useCameraDevices(..)` hook instead. +- * +- * * For Camera Devices attached to the phone, it is safe to assume that this will never change. +- * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices +- * could change over time when the external Camera device gets plugged in or plugged out, so +- * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. +- * +- * @example +- * ```ts +- * const devices = Camera.getAvailableCameraDevices() +- * const backCameras = devices.filter((d) => d.position === "back") +- * const frontCameras = devices.filter((d) => d.position === "front") +- * ``` +- */ +- public static getAvailableCameraDevices(): CameraDevice[] { +- return CameraDevices.getAvailableCameraDevices() +- } +- /** +- * Adds a listener that gets called everytime the Camera Devices change, for example +- * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. +- * +- * If you use Hooks, use the `useCameraDevices()` hook instead. +- */ +- public static addCameraDevicesChangedListener(listener: (newDevices: CameraDevice[]) => void): EmitterSubscription { +- return CameraDevices.addCameraDevicesChangedListener(listener) +- } +- /** +- * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure +- * the user has permitted the app to use the camera. +- * +- * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. +- */ +- public static getCameraPermissionStatus(): CameraPermissionStatus { +- return CameraModule.getCameraPermissionStatus() +- } +- /** +- * Gets the current Microphone-Recording Permission Status. +- * Check this before enabling the `audio={...}` property to make sure the +- * user has permitted the app to use the microphone. +- * +- * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. +- */ +- public static getMicrophonePermissionStatus(): CameraPermissionStatus { +- return CameraModule.getMicrophonePermissionStatus() +- } +- /** +- * Gets the current Location Permission Status. +- * Check this before enabling the `location={...}` property to make sure the +- * the user has permitted the app to use the location. +- * +- * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. +- * +- * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. +- * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. +- */ +- public static getLocationPermissionStatus(): CameraPermissionStatus { +- return CameraModule.getLocationPermissionStatus() +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new camera permission status. +- * +- * If the user has previously blocked the app from using the camera, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- public static async requestCameraPermission(): Promise { +- try { +- return await CameraModule.requestCameraPermission() +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. +- * +- * If the user has previously blocked the app from using the microphone, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- public static async requestMicrophonePermission(): Promise { +- try { +- return await CameraModule.requestMicrophonePermission() +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- /** +- * Shows a "request permission" alert to the user, and resolves with the new location permission status. +- * +- * If the user has previously blocked the app from using the location, the alert will not be shown +- * and `"denied"` will be returned. +- * +- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. +- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error +- */ +- public static async requestLocationPermission(): Promise { +- try { +- return await CameraModule.requestLocationPermission() +- } catch (e) { +- throw tryParseNativeCameraError(e) +- } +- } +- //#endregion +- +- //#region Events (Wrapped to maintain reference equality) +- private onError(event: NativeSyntheticEvent): void { +- const error = event.nativeEvent +- const cause = isErrorWithCause(error.cause) ? error.cause : undefined +- // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work +- const cameraError = new CameraRuntimeError(error.code, error.message, cause) +- +- if (this.props.onError != null) { +- this.props.onError(cameraError) +- } else { +- // User didn't pass an `onError` handler, so just log it to console +- console.error(cameraError) +- } +- } +- +- private onInitialized(): void { +- this.props.onInitialized?.() +- } +- +- private onStarted(): void { +- this.props.onStarted?.() +- } +- +- private onStopped(): void { +- this.props.onStopped?.() +- } +- +- private onPreviewStarted(): void { +- this.props.onPreviewStarted?.() +- } +- +- private onPreviewStopped(): void { +- this.props.onPreviewStopped?.() +- } +- +- private onShutter(event: NativeSyntheticEvent): void { +- this.props.onShutter?.(event.nativeEvent) +- } +- +- private onOutputOrientationChanged({ nativeEvent: { outputOrientation } }: NativeSyntheticEvent): void { +- this.rotationHelper.outputOrientation = outputOrientation +- this.props.onOutputOrientationChanged?.(outputOrientation) +- this.maybeUpdateUIRotation() +- } +- +- private onPreviewOrientationChanged({ nativeEvent: { previewOrientation } }: NativeSyntheticEvent): void { +- this.rotationHelper.previewOrientation = previewOrientation +- this.props.onPreviewOrientationChanged?.(previewOrientation) +- this.maybeUpdateUIRotation() +- +- if (isSkiaFrameProcessor(this.props.frameProcessor)) { +- // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. +- this.props.frameProcessor.previewOrientation.value = previewOrientation +- } +- } +- +- private maybeUpdateUIRotation(): void { +- const uiRotation = this.rotationHelper.uiRotation +- if (uiRotation !== this.lastUIRotation) { +- this.props.onUIRotationChanged?.(uiRotation) +- this.lastUIRotation = uiRotation +- } +- } +- //#endregion +- +- private onCodeScanned(event: NativeSyntheticEvent): void { +- const codeScanner = this.props.codeScanner +- if (codeScanner == null) return +- +- codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame) +- } +- +- //#region Lifecycle +- private setFrameProcessor(frameProcessor: (frame: Frame) => void): void { +- VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor) +- } +- +- private unsetFrameProcessor(): void { +- VisionCameraProxy.removeFrameProcessor(this.handle) +- } +- +- private onViewReady(): void { +- this.isNativeViewMounted = true +- if (this.props.frameProcessor != null) { +- // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. +- this.setFrameProcessor(this.props.frameProcessor.frameProcessor) +- this.lastFrameProcessor = this.props.frameProcessor.frameProcessor +- } +- } +- +- private onAverageFpsChanged({ nativeEvent: { averageFps } }: NativeSyntheticEvent): void { +- this.setState((state) => { +- const averageFpsSamples = [...state.averageFpsSamples, averageFps] +- while (averageFpsSamples.length >= MAX_BARS + 1) { +- // we keep a maximum of 30 FPS samples in our history +- averageFpsSamples.shift() +- } +- +- return { +- ...state, +- averageFpsSamples: averageFpsSamples, +- } +- }) +- } +- +- /** @internal */ +- componentDidUpdate(): void { +- if (!this.isNativeViewMounted) return +- const frameProcessor = this.props.frameProcessor +- if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { +- // frameProcessor argument identity changed. Update native to reflect the change. +- if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor) +- else this.unsetFrameProcessor() +- +- this.lastFrameProcessor = frameProcessor?.frameProcessor +- } +- } +- //#endregion +- +- /** @internal */ +- public render(): React.ReactNode { +- // We remove the big `device` object from the props because we only need to pass `cameraId` to native. +- const { device, frameProcessor, codeScanner, enableFpsGraph, fps, videoBitRate, ...props } = this.props +- +- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition +- if (device == null) { +- throw new CameraRuntimeError( +- 'device/no-device', +- 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices', +- ) +- } +- +- const shouldEnableBufferCompression = props.video === true && frameProcessor == null +- const torch = this.state.isRecordingWithFlash ? 'on' : props.torch +- const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor) +- const shouldBeMirrored = device.position === 'front' +- +- // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple +- const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0] +- const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1] +- +- // bitrate is number (override) or string (multiplier) +- let bitRateMultiplier: number | undefined +- let bitRateOverride: number | undefined +- if (typeof videoBitRate === 'number') { +- // If the user passed an absolute number as a bit-rate, we just use this as a full override. +- bitRateOverride = videoBitRate +- } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { +- // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it +- bitRateMultiplier = this.getBitRateMultiplier(videoBitRate) +- } +- +- return ( +- +- {isRenderingWithSkia && ( +- +- )} +- {enableFpsGraph && ( +- +- )} +- +- ) +- } ++ /** @internal */ ++ static displayName = 'Camera'; ++ /** @internal */ ++ displayName = Camera.displayName; ++ private lastFrameProcessor: ((frame: Frame) => void) | undefined; ++ private isNativeViewMounted = false; ++ private lastUIRotation: number | undefined = undefined; ++ private rotationHelper = new RotationHelper(); ++ ++ private readonly ref: React.RefObject; ++ ++ /** @internal */ ++ constructor(props: CameraProps) { ++ super(props); ++ this.onViewReady = this.onViewReady.bind(this); ++ this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); ++ this.onInitialized = this.onInitialized.bind(this); ++ this.onStarted = this.onStarted.bind(this); ++ this.onStopped = this.onStopped.bind(this); ++ this.onPreviewStarted = this.onPreviewStarted.bind(this); ++ this.onPreviewStopped = this.onPreviewStopped.bind(this); ++ this.onShutter = this.onShutter.bind(this); ++ this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); ++ this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); ++ this.onError = this.onError.bind(this); ++ this.onCodeScanned = this.onCodeScanned.bind(this); ++ this.ref = React.createRef(); ++ this.lastFrameProcessor = undefined; ++ this.state = { ++ isRecordingWithFlash: false, ++ averageFpsSamples: [], ++ }; ++ } ++ ++ private get handle(): number { ++ const nodeHandle = findNodeHandle(this.ref.current); ++ if (nodeHandle == null || nodeHandle === -1) { ++ throw new CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); ++ } ++ ++ return nodeHandle; ++ } ++ ++ //#region View-specific functions (UIViewManager) ++ /** ++ * Take a single photo and write it's content to a temporary file. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * const photo = await camera.current.takePhoto({ ++ * flash: 'on', ++ * enableAutoRedEyeReduction: true ++ * }) ++ * ``` ++ */ ++ public async takePhoto(options?: TakePhotoOptions): Promise { ++ try { ++ return await CameraModule.takePhoto(this.handle, options ?? {}); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ ++ /** ++ * Captures a snapshot of the Camera view and write it's content to a temporary file. ++ * ++ * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. ++ * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * const snapshot = await camera.current.takeSnapshot({ ++ * quality: 100 ++ * }) ++ * ``` ++ */ ++ public async takeSnapshot(options?: TakeSnapshotOptions): Promise { ++ try { ++ return await CameraModule.takeSnapshot(this.handle, options ?? {}); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ ++ private getBitRateMultiplier(bitRate: CameraProps['videoBitRate']): number { ++ if (typeof bitRate === 'number' || bitRate == null) return 1; ++ switch (bitRate) { ++ case 'extra-low': ++ return 0.6; ++ case 'low': ++ return 0.8; ++ case 'normal': ++ return 1; ++ case 'high': ++ return 1.2; ++ case 'extra-high': ++ return 1.4; ++ } ++ } ++ ++ /** ++ * Start a new video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * setTimeout(() => { ++ * camera.current.stopRecording() ++ * }, 5000) ++ * ``` ++ */ ++ public startRecording(options: RecordVideoOptions): void { ++ const {onRecordingError, onRecordingFinished, ...passThruOptions} = options; ++ if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') ++ throw new CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); ++ ++ if (options.flash === 'on') { ++ // Enable torch for video recording ++ this.setState({ ++ isRecordingWithFlash: true, ++ }); ++ } ++ ++ const onRecordCallback = (video?: VideoFile, error?: CameraCaptureError): void => { ++ if (this.state.isRecordingWithFlash) { ++ // disable torch again if it was enabled ++ this.setState({ ++ isRecordingWithFlash: false, ++ }); ++ } ++ ++ if (error != null) return onRecordingError(error); ++ if (video != null) return onRecordingFinished(video); ++ }; ++ ++ const nativeRecordVideoOptions: NativeRecordVideoOptions = passThruOptions; ++ try { ++ // TODO: Use TurboModules to make this awaitable. ++ CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ ++ /** ++ * Pauses the current video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * // Start ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * await timeout(1000) ++ * // Pause ++ * await camera.current.pauseRecording() ++ * await timeout(500) ++ * // Resume ++ * await camera.current.resumeRecording() ++ * await timeout(2000) ++ * // Stop ++ * await camera.current.stopRecording() ++ * ``` ++ */ ++ public async pauseRecording(): Promise { ++ try { ++ return await CameraModule.pauseRecording(this.handle); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ ++ /** ++ * Resumes a currently paused video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * // Start ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * await timeout(1000) ++ * // Pause ++ * await camera.current.pauseRecording() ++ * await timeout(500) ++ * // Resume ++ * await camera.current.resumeRecording() ++ * await timeout(2000) ++ * // Stop ++ * await camera.current.stopRecording() ++ * ``` ++ */ ++ public async resumeRecording(): Promise { ++ try { ++ return await CameraModule.resumeRecording(this.handle); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ ++ /** ++ * Stop the current video recording. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => console.error(error), ++ * }) ++ * setTimeout(async () => { ++ * await camera.current.stopRecording() ++ * }, 5000) ++ * ``` ++ */ ++ public async stopRecording(): Promise { ++ try { ++ return await CameraModule.stopRecording(this.handle); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ ++ /** ++ * Cancel the current video recording. The temporary video file will be deleted, ++ * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. ++ * ++ * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. ++ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error ++ * ++ * @example ++ * ```ts ++ * await camera.current.startRecording({ ++ * onRecordingFinished: (video) => console.log(video), ++ * onRecordingError: (error) => { ++ * if (error.code === 'capture/recording-canceled') { ++ * // recording was canceled. ++ * } else { ++ * console.error(error) ++ * } ++ * }, ++ * }) ++ * setTimeout(async () => { ++ * await camera.current.cancelRecording() ++ * }, 5000) ++ * ``` ++ */ ++ public async cancelRecording(): Promise { ++ try { ++ return await CameraModule.cancelRecording(this.handle); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ ++ /** ++ * Focus the camera to a specific point in the coordinate system. ++ * @param {Point} point The point to focus to. This should be relative ++ * to the Camera view's coordinate system and is expressed in points. ++ * * `(0, 0)` means **top left**. ++ * * `(CameraView.width, CameraView.height)` means **bottom right**. ++ * ++ * Make sure the value doesn't exceed the CameraView's dimensions. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ * @example ++ * ```ts ++ * await camera.current.focus({ ++ * x: tapEvent.x, ++ * y: tapEvent.y ++ * }) ++ * ``` ++ */ ++ public async focus(point: Point): Promise { ++ try { ++ return await CameraModule.focus(this.handle, point); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ //#endregion ++ ++ //#region Static Functions (NativeModule) ++ /** ++ * Get a list of all available camera devices on the current phone. ++ * ++ * If you use Hooks, use the `useCameraDevices(..)` hook instead. ++ * ++ * * For Camera Devices attached to the phone, it is safe to assume that this will never change. ++ * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices ++ * could change over time when the external Camera device gets plugged in or plugged out, so ++ * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. ++ * ++ * @example ++ * ```ts ++ * const devices = Camera.getAvailableCameraDevices() ++ * const backCameras = devices.filter((d) => d.position === "back") ++ * const frontCameras = devices.filter((d) => d.position === "front") ++ * ``` ++ */ ++ public static getAvailableCameraDevices(): CameraDevice[] { ++ return CameraDevices.getAvailableCameraDevices(); ++ } ++ /** ++ * Adds a listener that gets called everytime the Camera Devices change, for example ++ * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. ++ * ++ * If you use Hooks, use the `useCameraDevices()` hook instead. ++ */ ++ public static addCameraDevicesChangedListener(listener: (newDevices: CameraDevice[]) => void): EmitterSubscription { ++ return CameraDevices.addCameraDevicesChangedListener(listener); ++ } ++ /** ++ * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure ++ * the user has permitted the app to use the camera. ++ * ++ * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. ++ */ ++ public static getCameraPermissionStatus(): CameraPermissionStatus { ++ return CameraModule.getCameraPermissionStatus(); ++ } ++ /** ++ * Gets the current Microphone-Recording Permission Status. ++ * Check this before enabling the `audio={...}` property to make sure the ++ * user has permitted the app to use the microphone. ++ * ++ * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. ++ */ ++ public static getMicrophonePermissionStatus(): CameraPermissionStatus { ++ return CameraModule.getMicrophonePermissionStatus(); ++ } ++ /** ++ * Gets the current Location Permission Status. ++ * Check this before enabling the `location={...}` property to make sure the ++ * the user has permitted the app to use the location. ++ * ++ * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. ++ * ++ * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. ++ * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. ++ */ ++ public static getLocationPermissionStatus(): CameraPermissionStatus { ++ return CameraModule.getLocationPermissionStatus(); ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new camera permission status. ++ * ++ * If the user has previously blocked the app from using the camera, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ public static async requestCameraPermission(): Promise { ++ try { ++ return await CameraModule.requestCameraPermission(); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. ++ * ++ * If the user has previously blocked the app from using the microphone, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ public static async requestMicrophonePermission(): Promise { ++ try { ++ return await CameraModule.requestMicrophonePermission(); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ /** ++ * Shows a "request permission" alert to the user, and resolves with the new location permission status. ++ * ++ * If the user has previously blocked the app from using the location, the alert will not be shown ++ * and `"denied"` will be returned. ++ * ++ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. ++ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error ++ */ ++ public static async requestLocationPermission(): Promise { ++ try { ++ return await CameraModule.requestLocationPermission(); ++ } catch (e) { ++ throw tryParseNativeCameraError(e); ++ } ++ } ++ //#endregion ++ ++ //#region Events (Wrapped to maintain reference equality) ++ private onError(event: NativeSyntheticEvent): void { ++ const error = event.nativeEvent; ++ const cause = isErrorWithCause(error.cause) ? error.cause : undefined; ++ // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work ++ const cameraError = new CameraRuntimeError(error.code, error.message, cause); ++ ++ if (this.props.onError != null) { ++ this.props.onError(cameraError); ++ } else { ++ // User didn't pass an `onError` handler, so just log it to console ++ console.error(cameraError); ++ } ++ } ++ ++ private onInitialized(): void { ++ this.props.onInitialized?.(); ++ } ++ ++ private onStarted(): void { ++ this.props.onStarted?.(); ++ } ++ ++ private onStopped(): void { ++ this.props.onStopped?.(); ++ } ++ ++ private onPreviewStarted(): void { ++ this.props.onPreviewStarted?.(); ++ } ++ ++ private onPreviewStopped(): void { ++ this.props.onPreviewStopped?.(); ++ } ++ ++ private onShutter(event: NativeSyntheticEvent): void { ++ this.props.onShutter?.(event.nativeEvent); ++ } ++ ++ private onOutputOrientationChanged({nativeEvent: {outputOrientation}}: NativeSyntheticEvent): void { ++ this.rotationHelper.outputOrientation = outputOrientation; ++ this.props.onOutputOrientationChanged?.(outputOrientation); ++ this.maybeUpdateUIRotation(); ++ } ++ ++ private onPreviewOrientationChanged({nativeEvent: {previewOrientation}}: NativeSyntheticEvent): void { ++ this.rotationHelper.previewOrientation = previewOrientation; ++ this.props.onPreviewOrientationChanged?.(previewOrientation); ++ this.maybeUpdateUIRotation(); ++ ++ if (isSkiaFrameProcessor(this.props.frameProcessor)) { ++ // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. ++ this.props.frameProcessor.previewOrientation.value = previewOrientation; ++ } ++ } ++ ++ private maybeUpdateUIRotation(): void { ++ const uiRotation = this.rotationHelper.uiRotation; ++ if (uiRotation !== this.lastUIRotation) { ++ this.props.onUIRotationChanged?.(uiRotation); ++ this.lastUIRotation = uiRotation; ++ } ++ } ++ //#endregion ++ ++ private onCodeScanned(event: NativeSyntheticEvent): void { ++ const codeScanner = this.props.codeScanner; ++ if (codeScanner == null) return; ++ ++ codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); ++ } ++ ++ //#region Lifecycle ++ private setFrameProcessor(frameProcessor: (frame: Frame) => void): void { ++ VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); ++ } ++ ++ private unsetFrameProcessor(): void { ++ VisionCameraProxy.removeFrameProcessor(this.handle); ++ } ++ ++ private onViewReady(): void { ++ this.isNativeViewMounted = true; ++ if (this.props.frameProcessor != null) { ++ // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. ++ this.setFrameProcessor(this.props.frameProcessor.frameProcessor); ++ this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; ++ } ++ } ++ ++ private onAverageFpsChanged({nativeEvent: {averageFps}}: NativeSyntheticEvent): void { ++ this.setState((state) => { ++ const averageFpsSamples = [...state.averageFpsSamples, averageFps]; ++ while (averageFpsSamples.length >= MAX_BARS + 1) { ++ // we keep a maximum of 30 FPS samples in our history ++ averageFpsSamples.shift(); ++ } ++ ++ return { ++ ...state, ++ averageFpsSamples: averageFpsSamples, ++ }; ++ }); ++ } ++ ++ /** @internal */ ++ componentDidUpdate(): void { ++ if (!this.isNativeViewMounted) return; ++ const frameProcessor = this.props.frameProcessor; ++ if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { ++ // frameProcessor argument identity changed. Update native to reflect the change. ++ if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor); ++ else this.unsetFrameProcessor(); ++ ++ this.lastFrameProcessor = frameProcessor?.frameProcessor; ++ } ++ } ++ //#endregion ++ ++ /** @internal */ ++ public render(): React.ReactNode { ++ // We remove the big `device` object from the props because we only need to pass `cameraId` to native. ++ const {device, frameProcessor, codeScanner, enableFpsGraph, fps, videoBitRate, ...props} = this.props; ++ ++ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition ++ if (device == null) { ++ throw new CameraRuntimeError( ++ 'device/no-device', ++ 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices', ++ ); ++ } ++ ++ const shouldEnableBufferCompression = props.video === true && frameProcessor == null; ++ const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; ++ const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); ++ const shouldBeMirrored = device.position === 'front'; ++ ++ // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple ++ const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; ++ const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; ++ ++ // bitrate is number (override) or string (multiplier) ++ let bitRateMultiplier: number | undefined; ++ let bitRateOverride: number | undefined; ++ if (typeof videoBitRate === 'number') { ++ // If the user passed an absolute number as a bit-rate, we just use this as a full override. ++ bitRateOverride = videoBitRate; ++ } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { ++ // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it ++ bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); ++ } ++ ++ return ( ++ ++ {isRenderingWithSkia && ( ++ ++ )} ++ {enableFpsGraph && ( ++ ++ )} ++ ++ ); ++ } + } + //#endregion + + const styles = StyleSheet.create({ +- customPreviewView: { +- flex: 1, +- }, +- fpsGraph: { +- elevation: 1, +- position: 'absolute', +- left: 15, +- top: 30, +- }, +-}) ++ customPreviewView: { ++ flex: 1, ++ }, ++ fpsGraph: { ++ elevation: 1, ++ position: 'absolute', ++ left: 15, ++ top: 30, ++ }, ++}); +diff --git a/node_modules/react-native-vision-camera/src/specs/CameraViewNativeComponent.ts b/node_modules/react-native-vision-camera/src/specs/CameraViewNativeComponent.ts +new file mode 100644 +index 0000000..b2c83cb +--- /dev/null ++++ b/node_modules/react-native-vision-camera/src/specs/CameraViewNativeComponent.ts +@@ -0,0 +1,91 @@ ++/* eslint-disable @typescript-eslint/ban-types */ ++import type {HostComponent, ViewProps} from 'react-native'; ++import type {DirectEventHandler, Double, Int32} from 'react-native/Libraries/Types/CodegenTypes'; ++import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; ++ ++export type VisionCameraComponentType = HostComponent; ++ ++export interface NativeProps extends ViewProps { ++ enableGpuBuffers: boolean; ++ androidPreviewViewType?: string; ++ cameraId: string; ++ enableFrameProcessor: boolean; ++ enableLocation: boolean; ++ enableBufferCompression: boolean; ++ photoQualityBalance: string; ++ isActive: boolean; ++ photo?: boolean; ++ video?: boolean; ++ audio?: boolean; ++ torch?: string; ++ zoom?: Double; ++ exposure?: Double; ++ enableZoomGesture?: boolean; ++ enableFpsGraph?: boolean; ++ resizeMode?: string; ++ format?: Readonly<{ ++ supportsDepthCapture?: boolean; ++ photoHeight: Double; ++ photoWidth: Double; ++ videoHeight: Double; ++ videoWidth: Double; ++ maxISO: Double; ++ minISO: Double; ++ maxFps: Double; ++ minFps: Double; ++ fieldOfView: Double; ++ supportsVideoHDR: boolean; ++ supportsPhotoHDR: boolean; ++ autoFocusSystem: string; ++ videoStabilizationModes: string[]; ++ pixelFormats: string[]; ++ }>; ++ pixelFormat: string; ++ fps?: Int32; ++ videoHdr?: boolean; // not sure why was int on native side ++ photoHdr?: boolean; // not sure why was int on native side ++ lowLightBoost?: boolean; // same ++ videoStabilizationMode?: string; ++ enableDepthData?: boolean; ++ enablePortraitEffectsMatteDelivery?: boolean; ++ orientation?: string; ++ codeScannerOptions?: Readonly<{ ++ codeTypes?: string[]; ++ interval?: Double; ++ regionOfInterest?: Readonly<{ ++ x?: Double; ++ y?: Double; ++ width?: Double; ++ height?: Double; ++ }>; ++ }>; ++ onCodeScanned?: DirectEventHandler< ++ Readonly<{ ++ codes?: Readonly<{ ++ type?: string; ++ value?: string; ++ frame?: Readonly<{x: Double; y: Double; width: Double; height: Double}>; ++ }>; ++ frame?: Readonly<{width: Int32; height: Int32}>; ++ corners?: Readonly<{x: Double; y: Double}>; ++ }> ++ >; ++ onShutter?: DirectEventHandler< ++ Readonly<{ ++ type: string; ++ }> ++ >; ++ onStarted?: DirectEventHandler>; ++ onStopped?: DirectEventHandler>; ++ onInitialized?: DirectEventHandler>; ++ onError?: DirectEventHandler< ++ Readonly<{ ++ code: string; ++ message: string; ++ cause: Readonly<{code: string; domain: string; message: string; details: string}>; ++ }> ++ >; ++ onViewReady: DirectEventHandler>; ++} ++ ++export default codegenNativeComponent('CameraView'); From 2c6701ebe03ad827d3530cfff11953f5b6fb9647 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Mon, 25 Aug 2025 14:38:35 +0200 Subject: [PATCH 36/50] fix(63871): update dependencies and remove redundant patches --- android/app/build.gradle | 6 ++-- package-lock.json | 36 +++++++++++-------- package.json | 10 +++--- ...android-enable-16kb-memory-page-size.patch | 17 --------- patches/@rnmapbox/maps/details.md | 8 ----- patches/react-native-pdf+6.7.7.patch | 13 +++++++ scripts/check-16kb-android.sh | 13 +++++++ 7 files changed, 56 insertions(+), 47 deletions(-) delete mode 100644 patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+android-enable-16kb-memory-page-size.patch delete mode 100644 patches/@rnmapbox/maps/details.md create mode 100644 patches/react-native-pdf+6.7.7.patch create mode 100644 scripts/check-16kb-android.sh diff --git a/android/app/build.gradle b/android/app/build.gradle index a29ad794054e3..7b2ce1bb33db7 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -261,8 +261,10 @@ dependencies { implementation "com.google.firebase:firebase-crashlytics" // GIF support - implementation 'com.facebook.fresco:fresco:2.5.0' - implementation 'com.facebook.fresco:animated-gif:2.5.0' + implementation 'com.facebook.fresco:fresco:3.6.0' + implementation 'com.facebook.fresco:animated-gif:3.6.0' + + implementation "pl.droidsonroids.gif:android-gif-drawable:1.2.29" // AndroidX support library implementation 'androidx.legacy:legacy-support-core-utils:1.0.0' diff --git a/package-lock.json b/package-lock.json index 900274274b4db..b51970a7e68cb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -30,7 +30,7 @@ "@fullstory/react-native": "^1.7.6", "@gorhom/portal": "^1.0.14", "@invertase/react-native-apple-authentication": "^2.2.2", - "@onfido/react-native-sdk": "10.6.0", + "@onfido/react-native-sdk": "^15.0.0", "@pusher/pusher-websocket-react-native": "^1.3.1", "@react-native-camera-roll/camera-roll": "7.4.0", "@react-native-clipboard/clipboard": "^1.15.0", @@ -48,7 +48,7 @@ "@react-navigation/native-stack": "7.3.14", "@react-navigation/stack": "7.3.3", "@react-ng/bounds-observer": "^0.2.1", - "@rnmapbox/maps": "10.1.39", + "@rnmapbox/maps": "^10.1.41-rc.2", "@shopify/flash-list": "1.8.2", "@ua/react-native-airship": "~24.4.0", "awesome-phonenumber": "^5.4.0", @@ -64,7 +64,7 @@ "expo-asset": "^11.1.2", "expo-av": "^15.1.5", "expo-font": "^13.0.4", - "expo-image": "^2.1.6", + "expo-image": "^2.4.0", "expo-image-manipulator": "^13.1.5", "fast-equals": "^5.2.2", "focus-trap-react": "^11.0.3", @@ -76,7 +76,7 @@ "lodash-es": "4.17.21", "lottie-react-native": "6.5.1", "mapbox-gl": "^2.15.0", - "onfido-sdk-ui": "14.42.0", + "onfido-sdk-ui": "^14.53.0", "pako": "^2.1.0", "process": "^0.11.10", "pusher-js": "8.3.0", @@ -111,7 +111,7 @@ "react-native-nitro-sqlite": "9.1.10", "react-native-onyx": "2.0.132", "react-native-pager-view": "6.5.3", - "react-native-pdf": "6.7.5", + "react-native-pdf": "^6.7.7", "react-native-performance": "^5.1.4", "react-native-permissions": "^5.4.0", "react-native-picker-select": "git+https://github.com/Expensify/react-native-picker-select.git#07d60d78d4772d47afd7a744940fc6b6d1881806", @@ -8154,13 +8154,15 @@ "license": "MIT" }, "node_modules/@onfido/react-native-sdk": { - "version": "10.6.0", + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/@onfido/react-native-sdk/-/react-native-sdk-15.0.0.tgz", + "integrity": "sha512-+U+G+cIIehiZBTbnoryz7KFgivXYZR8A8/YBZ1C3F3P9j4vRl5dgGS7gQjSxS5Jam+T1Z90dRAVBDq4ydfqzcQ==", "license": "MIT", "dependencies": { "js-base64": "3.7.5" }, "engines": { - "node": ">=16" + "node": ">=18" }, "peerDependencies": { "react": ">=17.0.0", @@ -11623,9 +11625,9 @@ } }, "node_modules/@rnmapbox/maps": { - "version": "10.1.39", - "resolved": "https://registry.npmjs.org/@rnmapbox/maps/-/maps-10.1.39.tgz", - "integrity": "sha512-h96h/wPwmuJ6Je/qDL8KTh3QSVvlX41SNVAZpEUtPpIos/n/3eDzERvBxNd/8FGZYZVR/3FcZnv4razaNCFksg==", + "version": "10.1.41-rc.2", + "resolved": "https://registry.npmjs.org/@rnmapbox/maps/-/maps-10.1.41-rc.2.tgz", + "integrity": "sha512-+uEsubxET2UY3a0rG6JsvYcVbj+PAkI2LJqxRQMqx9dpRpiRoM442wCvfkfAusamqUSFWAVLkefbEB8jHe26oQ==", "license": "MIT", "dependencies": { "@turf/along": "6.5.0", @@ -21551,7 +21553,9 @@ } }, "node_modules/expo-image": { - "version": "2.1.6", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/expo-image/-/expo-image-2.4.0.tgz", + "integrity": "sha512-TQ/LvrtJ9JBr+Tf198CAqflxcvdhuj7P24n0LQ1jHaWIVA7Z+zYKbYHnSMPSDMul/y0U46Z5bFLbiZiSidgcNw==", "license": "MIT", "peerDependencies": { "expo": "*", @@ -29529,7 +29533,9 @@ } }, "node_modules/onfido-sdk-ui": { - "version": "14.42.0", + "version": "14.53.0", + "resolved": "https://registry.npmjs.org/onfido-sdk-ui/-/onfido-sdk-ui-14.53.0.tgz", + "integrity": "sha512-vtsMlgf6uC1Ut8pC8K3jp26ikQriqVKZx13VCp2JPZ8JOLZjIJdOk8D5bfwwlRFLySxmVIC6Jd5DJQY0LTLx0A==", "license": "SEE LICENSE in LICENSE" }, "node_modules/open": { @@ -31821,9 +31827,9 @@ } }, "node_modules/react-native-pdf": { - "version": "6.7.5", - "resolved": "https://registry.npmjs.org/react-native-pdf/-/react-native-pdf-6.7.5.tgz", - "integrity": "sha512-d1S76p2Vwax2iG+kTnjINiUMvpjtJJvtMiYwHRbgGczT8GJjtXH49YCWOd+HfnUAU29cB+knzsKGYoZBMQM8Ow==", + "version": "6.7.7", + "resolved": "https://registry.npmjs.org/react-native-pdf/-/react-native-pdf-6.7.7.tgz", + "integrity": "sha512-D0ga/eyPsVWSPEBm622sGVZLl3gibxPmfm2cxsLcUrZ4WDSGR5HyGmvvWaR/m9wXEyIbD4J6q9qzuG6yObcSXw==", "license": "MIT", "dependencies": { "crypto-js": "4.2.0", diff --git a/package.json b/package.json index dca6a228da195..b100b42b41481 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,7 @@ "@fullstory/react-native": "^1.7.6", "@gorhom/portal": "^1.0.14", "@invertase/react-native-apple-authentication": "^2.2.2", - "@onfido/react-native-sdk": "10.6.0", + "@onfido/react-native-sdk": "^15.0.0", "@pusher/pusher-websocket-react-native": "^1.3.1", "@react-native-camera-roll/camera-roll": "7.4.0", "@react-native-clipboard/clipboard": "^1.15.0", @@ -118,7 +118,7 @@ "@react-navigation/native-stack": "7.3.14", "@react-navigation/stack": "7.3.3", "@react-ng/bounds-observer": "^0.2.1", - "@rnmapbox/maps": "10.1.39", + "@rnmapbox/maps": "^10.1.41-rc.2", "@shopify/flash-list": "1.8.2", "@ua/react-native-airship": "~24.4.0", "awesome-phonenumber": "^5.4.0", @@ -134,7 +134,7 @@ "expo-asset": "^11.1.2", "expo-av": "^15.1.5", "expo-font": "^13.0.4", - "expo-image": "^2.1.6", + "expo-image": "^2.4.0", "expo-image-manipulator": "^13.1.5", "fast-equals": "^5.2.2", "focus-trap-react": "^11.0.3", @@ -146,7 +146,7 @@ "lodash-es": "4.17.21", "lottie-react-native": "6.5.1", "mapbox-gl": "^2.15.0", - "onfido-sdk-ui": "14.42.0", + "onfido-sdk-ui": "^14.53.0", "pako": "^2.1.0", "process": "^0.11.10", "pusher-js": "8.3.0", @@ -181,7 +181,7 @@ "react-native-nitro-sqlite": "9.1.10", "react-native-onyx": "2.0.132", "react-native-pager-view": "6.5.3", - "react-native-pdf": "6.7.5", + "react-native-pdf": "^6.7.7", "react-native-performance": "^5.1.4", "react-native-permissions": "^5.4.0", "react-native-picker-select": "git+https://github.com/Expensify/react-native-picker-select.git#07d60d78d4772d47afd7a744940fc6b6d1881806", diff --git a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+android-enable-16kb-memory-page-size.patch b/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+android-enable-16kb-memory-page-size.patch deleted file mode 100644 index 7341f3a128d75..0000000000000 --- a/patches/@rnmapbox/maps/@rnmapbox+maps+10.1.39+001+android-enable-16kb-memory-page-size.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/node_modules/@rnmapbox/maps/android/build.gradle b/node_modules/@rnmapbox/maps/android/build.gradle -index 09cee53..40ee8c7 100644 ---- a/node_modules/@rnmapbox/maps/android/build.gradle -+++ b/node_modules/@rnmapbox/maps/android/build.gradle -@@ -123,6 +123,12 @@ android { - versionCode 1 - versionName "1.0" - buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() -+ -+ externalNativeBuild { -+ cmake { -+ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" -+ } -+ } - } - - compileOptions { \ No newline at end of file diff --git a/patches/@rnmapbox/maps/details.md b/patches/@rnmapbox/maps/details.md deleted file mode 100644 index 0a1798db712ad..0000000000000 --- a/patches/@rnmapbox/maps/details.md +++ /dev/null @@ -1,8 +0,0 @@ -# `@rnmapbox/maps` patches - -### [@rnmapbox+maps+10.1.39+001+android-jni-packaging-for-16kb-memory-page-size.patch](@rnmapbox+maps+10.1.39+001+android-jni-packaging-for-16kb-memory-page-size.patch) - -- Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. -- Upstream PR/issue: TODO -- E/App issue: [#63871](https://github.com/Expensify/App/issues/63871) -- PR Introducing Patch: [#64640](https://github.com/Expensify/App/pull/64640) diff --git a/patches/react-native-pdf+6.7.7.patch b/patches/react-native-pdf+6.7.7.patch new file mode 100644 index 0000000000000..0ccd050158a70 --- /dev/null +++ b/patches/react-native-pdf+6.7.7.patch @@ -0,0 +1,13 @@ +diff --git a/node_modules/react-native-pdf/android/build.gradle b/node_modules/react-native-pdf/android/build.gradle +index 3dfe1dc..db111c8 100644 +--- a/node_modules/react-native-pdf/android/build.gradle ++++ b/node_modules/react-native-pdf/android/build.gradle +@@ -126,6 +126,6 @@ dependencies { + // The repo from zacharee is based on PdfiumAndroidKt, a much newer fork of PdfiumAndroid, with better maintenance and updated native libraries. + implementation 'com.github.zacharee:AndroidPdfViewer:4.0.1' + // Depend on PdfiumAndroidKt directly so this can be updated independently of AndroidPdfViewer as updates are provided. +- implementation 'io.legere:pdfiumandroid:1.0.24' +- implementation 'com.google.code.gson:gson:2.8.5' ++ implementation 'io.legere:pdfiumandroid:1.0.32' ++ implementation 'com.google.code.gson:gson:2.11.0' + } diff --git a/scripts/check-16kb-android.sh b/scripts/check-16kb-android.sh new file mode 100644 index 0000000000000..24203234afb8f --- /dev/null +++ b/scripts/check-16kb-android.sh @@ -0,0 +1,13 @@ +APK=./build/outputs/apk/debug/Expensify-debug.apk +READELF=/opt/homebrew/opt/llvm/bin/llvm-readelf # или /opt/homebrew/opt/binutils/bin/readelf + +unzip -Z1 "$APK" "lib/*/*.so" | while read -r so; do + abi=$(echo "$so" | cut -d/ -f2) + name=$(basename "$so") + align=$( + unzip -p "$APK" "$so" \ + | $READELF -W -l - \ + | awk '/LOAD/{for(i=1;i<=NF;i++){if($i ~ /^0x/){a=$i}}} END{print a}' + ) + printf "[%s] %-30s align=%s\n" "$abi" "$name" "$align" +done \ No newline at end of file From 5fbc4d5324a35e7006a4cff2e704b364dd20f75a Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Mon, 25 Aug 2025 17:00:09 +0200 Subject: [PATCH 37/50] fix(63871): remove legacy react-native-vision-camera patch --- patches/react-native-vision-camera/details.md | 9 - .../react-native-vision-camera+4.6.1.patch | 5530 ----------------- 2 files changed, 5539 deletions(-) delete mode 100644 patches/react-native-vision-camera/details.md delete mode 100644 patches/react-native-vision-camera/react-native-vision-camera+4.6.1.patch diff --git a/patches/react-native-vision-camera/details.md b/patches/react-native-vision-camera/details.md deleted file mode 100644 index b8042f3613701..0000000000000 --- a/patches/react-native-vision-camera/details.md +++ /dev/null @@ -1,9 +0,0 @@ -# `react-native-vision-camera` patches - -### [react-native-vision-camera+4.6.1.patch](react-native-vision-camera+4.6.1.patch) - -- Reason: Fixes an issue in VisionCamera where the `CameraSession` doesn't get de-initialized and recycled when the screen gets popped/unmounted from the Navigation stack in `@react-navigation/native-stack`. -- Upstream PR/issue: N/A (This will be fixed once VisionCamera is migrated to Nitro Views) -- E/App issue: [#49988](https://github.com/Expensify/App/issues/49988) | [#37891](https://github.com/Expensify/App/pull/37891) -- PR Introducing Patch: [#49936](https://github.com/Expensify/App/pull/49936) -- PR Updating Patch: [#52880](https://github.com/Expensify/App/pull/52880) | [#55861](https://github.com/Expensify/App/pull/55861) diff --git a/patches/react-native-vision-camera/react-native-vision-camera+4.6.1.patch b/patches/react-native-vision-camera/react-native-vision-camera+4.6.1.patch deleted file mode 100644 index 455e1a1bd0913..0000000000000 --- a/patches/react-native-vision-camera/react-native-vision-camera+4.6.1.patch +++ /dev/null @@ -1,5530 +0,0 @@ -diff --git a/node_modules/react-native-vision-camera/android/.editorconfig b/node_modules/react-native-vision-camera/android/.editorconfig -new file mode 100644 -index 0000000..2f08d6d ---- /dev/null -+++ b/node_modules/react-native-vision-camera/android/.editorconfig -@@ -0,0 +1,15 @@ -+[*.{kt,kts}] -+indent_style=space -+indent_size=2 -+continuation_indent_size=4 -+insert_final_newline=true -+max_line_length=140 -+ktlint_code_style=android_studio -+ktlint_standard=enabled -+ktlint_experimental=enabled -+ktlint_standard_filename=disabled # dont require PascalCase filenames -+ktlint_standard_no-wildcard-imports=disabled # allow .* imports -+ktlint_function_signature_rule_force_multiline_when_parameter_count_greater_or_equal_than=5 -+ktlint_function_signature_body_expression_wrapping=multiline -+ij_kotlin_allow_trailing_comma_on_call_site=false -+ij_kotlin_allow_trailing_comma=false -diff --git a/node_modules/react-native-vision-camera/android/.project b/node_modules/react-native-vision-camera/android/.project -new file mode 100644 -index 0000000..0e0a1ba ---- /dev/null -+++ b/node_modules/react-native-vision-camera/android/.project -@@ -0,0 +1,17 @@ -+ -+ -+ android_ -+ Project android_ created by Buildship. -+ -+ -+ -+ -+ org.eclipse.buildship.core.gradleprojectbuilder -+ -+ -+ -+ -+ -+ org.eclipse.buildship.core.gradleprojectnature -+ -+ -diff --git a/node_modules/react-native-vision-camera/android/gradlew b/node_modules/react-native-vision-camera/android/gradlew -new file mode 100644 -index 0000000..1b6c787 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/android/gradlew -@@ -0,0 +1,234 @@ -+#!/bin/sh -+ -+# -+# Copyright © 2015-2021 the original authors. -+# -+# Licensed under the Apache License, Version 2.0 (the "License"); -+# you may not use this file except in compliance with the License. -+# You may obtain a copy of the License at -+# -+# https://www.apache.org/licenses/LICENSE-2.0 -+# -+# Unless required by applicable law or agreed to in writing, software -+# distributed under the License is distributed on an "AS IS" BASIS, -+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -+# See the License for the specific language governing permissions and -+# limitations under the License. -+# -+ -+############################################################################## -+# -+# Gradle start up script for POSIX generated by Gradle. -+# -+# Important for running: -+# -+# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is -+# noncompliant, but you have some other compliant shell such as ksh or -+# bash, then to run this script, type that shell name before the whole -+# command line, like: -+# -+# ksh Gradle -+# -+# Busybox and similar reduced shells will NOT work, because this script -+# requires all of these POSIX shell features: -+# * functions; -+# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», -+# «${var#prefix}», «${var%suffix}», and «$( cmd )»; -+# * compound commands having a testable exit status, especially «case»; -+# * various built-in commands including «command», «set», and «ulimit». -+# -+# Important for patching: -+# -+# (2) This script targets any POSIX shell, so it avoids extensions provided -+# by Bash, Ksh, etc; in particular arrays are avoided. -+# -+# The "traditional" practice of packing multiple parameters into a -+# space-separated string is a well documented source of bugs and security -+# problems, so this is (mostly) avoided, by progressively accumulating -+# options in "$@", and eventually passing that to Java. -+# -+# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, -+# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; -+# see the in-line comments for details. -+# -+# There are tweaks for specific operating systems such as AIX, CygWin, -+# Darwin, MinGW, and NonStop. -+# -+# (3) This script is generated from the Groovy template -+# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt -+# within the Gradle project. -+# -+# You can find Gradle at https://github.com/gradle/gradle/. -+# -+############################################################################## -+ -+# Attempt to set APP_HOME -+ -+# Resolve links: $0 may be a link -+app_path=$0 -+ -+# Need this for daisy-chained symlinks. -+while -+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path -+ [ -h "$app_path" ] -+do -+ ls=$( ls -ld "$app_path" ) -+ link=${ls#*' -> '} -+ case $link in #( -+ /*) app_path=$link ;; #( -+ *) app_path=$APP_HOME$link ;; -+ esac -+done -+ -+APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit -+ -+APP_NAME="Gradle" -+APP_BASE_NAME=${0##*/} -+ -+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' -+ -+# Use the maximum available, or set MAX_FD != -1 to use that value. -+MAX_FD=maximum -+ -+warn () { -+ echo "$*" -+} >&2 -+ -+die () { -+ echo -+ echo "$*" -+ echo -+ exit 1 -+} >&2 -+ -+# OS specific support (must be 'true' or 'false'). -+cygwin=false -+msys=false -+darwin=false -+nonstop=false -+case "$( uname )" in #( -+ CYGWIN* ) cygwin=true ;; #( -+ Darwin* ) darwin=true ;; #( -+ MSYS* | MINGW* ) msys=true ;; #( -+ NONSTOP* ) nonstop=true ;; -+esac -+ -+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar -+ -+ -+# Determine the Java command to use to start the JVM. -+if [ -n "$JAVA_HOME" ] ; then -+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then -+ # IBM's JDK on AIX uses strange locations for the executables -+ JAVACMD=$JAVA_HOME/jre/sh/java -+ else -+ JAVACMD=$JAVA_HOME/bin/java -+ fi -+ if [ ! -x "$JAVACMD" ] ; then -+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME -+ -+Please set the JAVA_HOME variable in your environment to match the -+location of your Java installation." -+ fi -+else -+ JAVACMD=java -+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -+ -+Please set the JAVA_HOME variable in your environment to match the -+location of your Java installation." -+fi -+ -+# Increase the maximum file descriptors if we can. -+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then -+ case $MAX_FD in #( -+ max*) -+ MAX_FD=$( ulimit -H -n ) || -+ warn "Could not query maximum file descriptor limit" -+ esac -+ case $MAX_FD in #( -+ '' | soft) :;; #( -+ *) -+ ulimit -n "$MAX_FD" || -+ warn "Could not set maximum file descriptor limit to $MAX_FD" -+ esac -+fi -+ -+# Collect all arguments for the java command, stacking in reverse order: -+# * args from the command line -+# * the main class name -+# * -classpath -+# * -D...appname settings -+# * --module-path (only if needed) -+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. -+ -+# For Cygwin or MSYS, switch paths to Windows format before running java -+if "$cygwin" || "$msys" ; then -+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) -+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) -+ -+ JAVACMD=$( cygpath --unix "$JAVACMD" ) -+ -+ # Now convert the arguments - kludge to limit ourselves to /bin/sh -+ for arg do -+ if -+ case $arg in #( -+ -*) false ;; # don't mess with options #( -+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath -+ [ -e "$t" ] ;; #( -+ *) false ;; -+ esac -+ then -+ arg=$( cygpath --path --ignore --mixed "$arg" ) -+ fi -+ # Roll the args list around exactly as many times as the number of -+ # args, so each arg winds up back in the position where it started, but -+ # possibly modified. -+ # -+ # NB: a `for` loop captures its iteration list before it begins, so -+ # changing the positional parameters here affects neither the number of -+ # iterations, nor the values presented in `arg`. -+ shift # remove old arg -+ set -- "$@" "$arg" # push replacement arg -+ done -+fi -+ -+# Collect all arguments for the java command; -+# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -+# shell script including quotes and variable substitutions, so put them in -+# double quotes to make sure that they get re-expanded; and -+# * put everything else in single quotes, so that it's not re-expanded. -+ -+set -- \ -+ "-Dorg.gradle.appname=$APP_BASE_NAME" \ -+ -classpath "$CLASSPATH" \ -+ org.gradle.wrapper.GradleWrapperMain \ -+ "$@" -+ -+# Use "xargs" to parse quoted args. -+# -+# With -n1 it outputs one arg per line, with the quotes and backslashes removed. -+# -+# In Bash we could simply go: -+# -+# readarray ARGS < <( xargs -n1 <<<"$var" ) && -+# set -- "${ARGS[@]}" "$@" -+# -+# but POSIX shell has neither arrays nor command substitution, so instead we -+# post-process each arg (as a line of input to sed) to backslash-escape any -+# character that might be a shell metacharacter, then use eval to reverse -+# that process (while maintaining the separation between arguments), and wrap -+# the whole thing up as a single "set" statement. -+# -+# This will of course break if any of these variables contains a newline or -+# an unmatched quote. -+# -+ -+eval "set -- $( -+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | -+ xargs -n1 | -+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | -+ tr '\n' ' ' -+ )" '"$@"' -+ -+exec "$JAVACMD" "$@" -diff --git a/node_modules/react-native-vision-camera/android/gradlew.bat b/node_modules/react-native-vision-camera/android/gradlew.bat -new file mode 100644 -index 0000000..107acd3 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/android/gradlew.bat -@@ -0,0 +1,89 @@ -+@rem -+@rem Copyright 2015 the original author or authors. -+@rem -+@rem Licensed under the Apache License, Version 2.0 (the "License"); -+@rem you may not use this file except in compliance with the License. -+@rem You may obtain a copy of the License at -+@rem -+@rem https://www.apache.org/licenses/LICENSE-2.0 -+@rem -+@rem Unless required by applicable law or agreed to in writing, software -+@rem distributed under the License is distributed on an "AS IS" BASIS, -+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -+@rem See the License for the specific language governing permissions and -+@rem limitations under the License. -+@rem -+ -+@if "%DEBUG%" == "" @echo off -+@rem ########################################################################## -+@rem -+@rem Gradle startup script for Windows -+@rem -+@rem ########################################################################## -+ -+@rem Set local scope for the variables with windows NT shell -+if "%OS%"=="Windows_NT" setlocal -+ -+set DIRNAME=%~dp0 -+if "%DIRNAME%" == "" set DIRNAME=. -+set APP_BASE_NAME=%~n0 -+set APP_HOME=%DIRNAME% -+ -+@rem Resolve any "." and ".." in APP_HOME to make it shorter. -+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi -+ -+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" -+ -+@rem Find java.exe -+if defined JAVA_HOME goto findJavaFromJavaHome -+ -+set JAVA_EXE=java.exe -+%JAVA_EXE% -version >NUL 2>&1 -+if "%ERRORLEVEL%" == "0" goto execute -+ -+echo. -+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -+echo. -+echo Please set the JAVA_HOME variable in your environment to match the -+echo location of your Java installation. -+ -+goto fail -+ -+:findJavaFromJavaHome -+set JAVA_HOME=%JAVA_HOME:"=% -+set JAVA_EXE=%JAVA_HOME%/bin/java.exe -+ -+if exist "%JAVA_EXE%" goto execute -+ -+echo. -+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -+echo. -+echo Please set the JAVA_HOME variable in your environment to match the -+echo location of your Java installation. -+ -+goto fail -+ -+:execute -+@rem Setup the command line -+ -+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar -+ -+ -+@rem Execute Gradle -+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* -+ -+:end -+@rem End local scope for the variables with windows NT shell -+if "%ERRORLEVEL%"=="0" goto mainEnd -+ -+:fail -+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -+rem the _cmd.exe /c_ return code! -+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -+exit /b 1 -+ -+:mainEnd -+if "%OS%"=="Windows_NT" endlocal -+ -+:omega -diff --git a/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerDelegate.java b/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerDelegate.java -new file mode 100644 -index 0000000..a1bed79 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerDelegate.java -@@ -0,0 +1,113 @@ -+/** -+* 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.ReadableMap; -+import com.facebook.react.uimanager.BaseViewManagerDelegate; -+import com.facebook.react.uimanager.BaseViewManagerInterface; -+ -+public class CameraViewManagerDelegate & CameraViewManagerInterface> extends aseViewManagerDelegate { -+ public CameraViewManagerDelegate(U viewManager) { -+ super(viewManager); -+ } -+ @Override -+ public void setProperty(T view, String propName, @Nullable Object value) { -+ switch (propName) { -+ case "enableGpuBuffers": -+ mViewManager.setEnableGpuBuffers(view, value == null ? false : (boolean) value); -+ break; -+ case "androidPreviewViewType": -+ mViewManager.setAndroidPreviewViewType(view, value == null ? null : (String) value); -+ break; -+ case "codeScannerOptions": -+ mViewManager.setCodeScannerOptions(view, (ReadableMap) value); -+ break; -+ case "cameraId": -+ mViewManager.setCameraId(view, value == null ? null : (String) value); -+ break; -+ case "enableFrameProcessor": -+ mViewManager.setEnableFrameProcessor(view, value == null ? false : (boolean) value); -+ break; -+ case "enableLocation": -+ mViewManager.setEnableLocation(view, value == null ? false : (boolean) value); -+ break; -+ case "enableBufferCompression": -+ mViewManager.setEnableBufferCompression(view, value == null ? false : (boolean) value); -+ break; -+ case "photoQualityBalance": -+ mViewManager.setPhotoQualityBalance(view, value == null ? null : (String) value); -+ break; -+ case "isActive": -+ mViewManager.setIsActive(view, value == null ? false : (boolean) value); -+ break; -+ case "photo": -+ mViewManager.setPhoto(view, value == null ? false : (boolean) value); -+ break; -+ case "video": -+ mViewManager.setVideo(view, value == null ? false : (boolean) value); -+ break; -+ case "audio": -+ mViewManager.setAudio(view, value == null ? false : (boolean) value); -+ break; -+ case "torch": -+ mViewManager.setTorch(view, value == null ? null : (String) value); -+ break; -+ case "zoom": -+ mViewManager.setZoom(view, value == null ? 0f : ((Double) value).doubleValue()); -+ break; -+ case "exposure": -+ mViewManager.setExposure(view, value == null ? 0f : ((Double) value).doubleValue()); -+ break; -+ case "enableZoomGesture": -+ mViewManager.setEnableZoomGesture(view, value == null ? false : (boolean) value); -+ break; -+ case "enableFpsGraph": -+ mViewManager.setEnableFpsGraph(view, value == null ? false : (boolean) value); -+ break; -+ case "resizeMode": -+ mViewManager.setResizeMode(view, value == null ? null : (String) value); -+ break; -+ case "format": -+ mViewManager.setFormat(view, (ReadableMap) value); -+ break; -+ case "pixelFormat": -+ mViewManager.setPixelFormat(view, value == null ? null : (String) value); -+ break; -+ case "fps": -+ mViewManager.setFps(view, value == null ? 0 : ((Double) value).intValue()); -+ break; -+ case "videoHdr": -+ mViewManager.setVideoHdr(view, value == null ? false : (boolean) value); -+ break; -+ case "photoHdr": -+ mViewManager.setPhotoHdr(view, value == null ? false : (boolean) value); -+ break; -+ case "lowLightBoost": -+ mViewManager.setLowLightBoost(view, value == null ? false : (boolean) value); -+ break; -+ case "videoStabilizationMode": -+ mViewManager.setVideoStabilizationMode(view, value == null ? null : (String) value); -+ break; -+ case "enableDepthData": -+ mViewManager.setEnableDepthData(view, value == null ? false : (boolean) value); -+ break; -+ case "enablePortraitEffectsMatteDelivery": -+ mViewManager.setEnablePortraitEffectsMatteDelivery(view, value == null ? false : (boolean) value); -+ break; -+ case "orientation": -+ mViewManager.setOrientation(view, value == null ? null : (String) value); -+ break; -+ default: -+ super.setProperty(view, propName, value); -+ } -+ } -+} -diff --git a/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerInterface.java b/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerInterface.java -new file mode 100644 -index 0000000..94079b2 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/android/oldarch/src/main/java/com/facebook/react/viewmanagers/CameraViewManagerInterface.java -@@ -0,0 +1,45 @@ -+/** -+* 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.bridge.ReadableMap; -+ -+public interface CameraViewManagerInterface { -+ void setEnableGpuBuffers(T view, boolean value); -+ void setAndroidPreviewViewType(T view, @Nullable String value); -+ void setCodeScannerOptions(T view, @Nullable ReadableMap value); -+ void setCameraId(T view, @Nullable String value); -+ void setEnableFrameProcessor(T view, boolean value); -+ void setEnableLocation(T view, boolean value); -+ void setEnableBufferCompression(T view, boolean value); -+ void setPhotoQualityBalance(T view, @Nullable String value); -+ void setIsActive(T view, boolean value); -+ void setPhoto(T view, boolean value); -+ void setVideo(T view, boolean value); -+ void setAudio(T view, boolean value); -+ void setTorch(T view, @Nullable String value); -+ void setZoom(T view, double value); -+ void setExposure(T view, double value); -+ void setEnableZoomGesture(T view, boolean value); -+ void setEnableFpsGraph(T view, boolean value); -+ void setResizeMode(T view, @Nullable String value); -+ void setFormat(T view, @Nullable ReadableMap value); -+ void setPixelFormat(T view, @Nullable String value); -+ void setFps(T view, int value); -+ void setVideoHdr(T view, boolean value); -+ void setPhotoHdr(T view, boolean value); -+ void setLowLightBoost(T view, boolean value); -+ void setVideoStabilizationMode(T view, @Nullable String value); -+ void setEnableDepthData(T view, boolean value); -+ void setEnablePortraitEffectsMatteDelivery(T view, boolean value); -+ void setOrientation(T view, @Nullable String value); -+} -diff --git a/node_modules/react-native-vision-camera/android/settings.gradle b/node_modules/react-native-vision-camera/android/settings.gradle -new file mode 100644 -index 0000000..56a6c3d ---- /dev/null -+++ b/node_modules/react-native-vision-camera/android/settings.gradle -@@ -0,0 +1,3 @@ -+rootProject.name = 'VisionCamera' -+ -+include ':VisionCamera' -diff --git a/node_modules/react-native-vision-camera/android/src/main/.DS_Store b/node_modules/react-native-vision-camera/android/src/main/.DS_Store -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/react-native-vision-camera/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt b/node_modules/react-native-vision-camera/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt -index 862c03a..f892ab7 100644 ---- a/node_modules/react-native-vision-camera/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt -+++ b/node_modules/react-native-vision-camera/android/src/main/java/com/mrousavy/camera/core/CameraSession.kt -@@ -90,7 +90,9 @@ class CameraSession(internal val context: Context, internal val callback: Callba - } - } - -- override fun getLifecycle(): Lifecycle = lifecycleRegistry -+ override val lifecycle: Lifecycle -+ get() = lifecycleRegistry -+// override fun getLifecycle(): Lifecycle = lifecycleRegistry - - /** - * Configures the [CameraSession] with new values in one batch. -diff --git a/node_modules/react-native-vision-camera/ios/.swiftformat b/node_modules/react-native-vision-camera/ios/.swiftformat -new file mode 100644 -index 0000000..95e71c1 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/ios/.swiftformat -@@ -0,0 +1,12 @@ -+--allman false -+--indent 2 -+--exclude Pods,Generated -+ -+--disable andOperator -+--disable redundantReturn -+--disable wrapMultilineStatementBraces -+--disable organizeDeclarations -+ -+--enable markTypes -+ -+--enable isEmpty -diff --git a/node_modules/react-native-vision-camera/ios/.swiftlint.yml b/node_modules/react-native-vision-camera/ios/.swiftlint.yml -new file mode 100644 -index 0000000..1a72686 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/ios/.swiftlint.yml -@@ -0,0 +1,52 @@ -+disabled_rules: -+ - identifier_name -+ - trailing_comma -+ - todo -+ - type_body_length -+ - cyclomatic_complexity -+ - function_body_length -+ - for_where -+opt_in_rules: -+ - contains_over_filter_count -+ - contains_over_filter_is_empty -+ - contains_over_first_not_nil -+ - contains_over_range_nil_comparison -+ - empty_collection_literal -+ - empty_count -+ - empty_string -+ - first_where -+ - flatmap_over_map_reduce -+ - last_where -+ - reduce_boolean -+ - reduce_into -+ - yoda_condition -+ - vertical_whitespace_opening_braces -+ - vertical_whitespace_closing_braces -+ - vertical_parameter_alignment_on_call -+ - untyped_error_in_catch -+ - unowned_variable_capture -+ - unavailable_function -+ - switch_case_on_newline -+ - static_operator -+ - strict_fileprivate -+ - sorted_imports -+ - sorted_first_last -+ - required_enum_case -+ - redundant_type_annotation -+ - redundant_nil_coalescing -+ - attributes -+ - convenience_type -+analyzer_rules: -+ - explicit_self -+ - unused_declaration -+ - unused_import -+ -+excluded: # paths to ignore during linting. Takes precedence over `included`. -+ - Pods -+ -+# Adjust rule numbers -+line_length: 160 -+file_length: 500 -+ -+# reporter type (xcode, json, csv, checkstyle, codeclimate, junit, html, emoji, sonarqube, markdown, github-actions-logging) -+reporter: 'xcode' -diff --git a/node_modules/react-native-vision-camera/ios/RNCameraView.h b/node_modules/react-native-vision-camera/ios/RNCameraView.h -new file mode 100644 -index 0000000..46c2c2c ---- /dev/null -+++ b/node_modules/react-native-vision-camera/ios/RNCameraView.h -@@ -0,0 +1,14 @@ -+// This guard prevent this file to be compiled in the old architecture. -+#ifdef RCT_NEW_ARCH_ENABLED -+#import -+#import -+ -+ -+NS_ASSUME_NONNULL_BEGIN -+ -+@interface RNCameraView : RCTViewComponentView -+@end -+ -+NS_ASSUME_NONNULL_END -+ -+#endif /* RCT_NEW_ARCH_ENABLED */ -diff --git a/node_modules/react-native-vision-camera/ios/RNCameraView.mm b/node_modules/react-native-vision-camera/ios/RNCameraView.mm -new file mode 100644 -index 0000000..20f4996 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/ios/RNCameraView.mm -@@ -0,0 +1,394 @@ -+// This guard prevent the code from being compiled in the old architecture -+#ifdef RCT_NEW_ARCH_ENABLED -+#import -+ -+#import -+#import -+#import -+#import -+ -+#import "RCTFabricComponentsPlugins.h" -+#import -+#import -+#import -+#import -+ -+#ifdef USE_FRAMEWORKS -+#import -+#else -+#import "VisionCamera-Swift.h" -+#endif -+ -+@interface RNCameraView : RCTViewComponentView -+@end -+ -+ -+using namespace facebook::react; -+ -+@implementation RNCameraView { -+ CameraView * _view; -+} -+ -++ (ComponentDescriptorProvider)componentDescriptorProvider -+{ -+ return concreteComponentDescriptorProvider(); -+} -+ -+- (void) initCamera { -+ static const auto defaultProps = std::make_shared(); -+ _props = defaultProps; -+ -+ // The remaining part of the initializer is standard bjective-C code to create views and layout them with utoLayout. Here we can change whatever we want to. -+ _view = [[CameraView alloc] init]; -+ _view.delegate = self; -+ -+ self.contentView = _view; -+} -+ -+- (instancetype)initWithFrame:(CGRect)frame -+{ -+ self = [super initWithFrame:frame]; -+ if (self) { -+ [self initCamera]; -+ } -+ -+ return self; -+} -+ -+- (void) prepareForRecycle { -+ [super prepareForRecycle]; -+ -+ self.contentView = _view; -+ _view.delegate = nil; -+ _view = nil; -+ self.contentView = nil; -+} -+ -+// why we need this func -> https://reactnative.dev/docs/next/the-new-architecture/pillars-fabric-components#write-the-native-ios-code -+- (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps -+{ -+ if (_view == nil) { -+ [self initCamera]; -+ } -+ -+ const auto &newViewProps = *std::static_pointer_cast(props); -+ const auto &oldViewProps = *std::static_pointer_cast(_props); -+ -+ NSMutableArray* changedProps = [[NSMutableArray alloc] init]; -+ -+ if(oldViewProps.isActive != newViewProps.isActive){ -+ _view.isActive = newViewProps.isActive; -+ [changedProps addObject:@"isActive"]; -+ } -+ if(oldViewProps.cameraId != newViewProps.cameraId){ -+ _view.cameraId = RCTNSStringFromString(newViewProps.cameraId); -+ [changedProps addObject:@"cameraId"]; -+ } -+ if(oldViewProps.photoQualityBalance != newViewProps.photoQualityBalance){ -+ _view.photoQualityBalance = RCTNSStringFromString(newViewProps.photoQualityBalance); -+ [changedProps addObject:@"photoQualityBalance"]; -+ } -+ if(oldViewProps.enableDepthData != newViewProps.enableDepthData){ -+ _view.enableDepthData = newViewProps.enableDepthData; -+ [changedProps addObject:@"enableDepthData"]; -+ } -+ if(oldViewProps.enablePortraitEffectsMatteDelivery != newViewProps.enablePortraitEffectsMatteDelivery){ -+ _view.enablePortraitEffectsMatteDelivery = newViewProps.enablePortraitEffectsMatteDelivery; -+ [changedProps addObject:@"enablePortraitEffectsMatteDelivery"]; -+ } -+ if(oldViewProps.photo != newViewProps.photo){ -+ _view.photo = [NSNumber numberWithBool:newViewProps.photo]; -+ [changedProps addObject:@"photo"]; -+ } -+ if(oldViewProps.video != newViewProps.video){ -+ _view.video = [NSNumber numberWithBool:newViewProps.video]; -+ [changedProps addObject:@"video"]; -+ } -+ if(oldViewProps.audio != newViewProps.audio){ -+ _view.audio = [NSNumber numberWithBool:newViewProps.audio]; -+ [changedProps addObject:@"audio"]; -+ } -+ if(oldViewProps.enableFrameProcessor != newViewProps.enableFrameProcessor){ -+ _view.enableFrameProcessor = newViewProps.enableFrameProcessor; -+ [changedProps addObject:@"enableFrameProcessor"]; -+ } -+ if(oldViewProps.enableLocation != newViewProps.enableLocation){ -+ _view.enableLocation = newViewProps.enableLocation; -+ [changedProps addObject:@"enableLocation"]; -+ } -+ if(oldViewProps.enableBufferCompression != newViewProps.enableBufferCompression){ -+ _view.enableBufferCompression = newViewProps.enableBufferCompression; -+ [changedProps addObject:@"enableBufferCompression"]; -+ } -+ if(oldViewProps.fps != newViewProps.fps){ -+ _view.fps = [NSNumber numberWithInt:newViewProps.fps]; -+ [changedProps addObject:@"fps"]; -+ } -+ if(oldViewProps.videoHdr != newViewProps.videoHdr){ -+ _view.videoHdr = newViewProps.videoHdr; -+ [changedProps addObject:@"videoHdr"]; -+ } -+ if(oldViewProps.photoHdr != newViewProps.photoHdr){ -+ _view.photoHdr = newViewProps.photoHdr; -+ [changedProps addObject:@"photoHdr"]; -+ } -+ if(oldViewProps.lowLightBoost != newViewProps.lowLightBoost){ -+ _view.lowLightBoost = newViewProps.lowLightBoost; -+ [changedProps addObject:@"lowLightBoost"]; -+ } -+ if(oldViewProps.videoStabilizationMode != newViewProps.videoStabilizationMode){ -+ _view.videoStabilizationMode = RCTNSStringFromString(newViewProps.videoStabilizationMode); -+ [changedProps addObject:@"videoStabilizationMode"]; -+ } -+ if(oldViewProps.torch != newViewProps.torch){ -+ _view.torch = RCTNSStringFromString(newViewProps.torch); -+ [changedProps addObject:@"torch"]; -+ } -+ if(oldViewProps.orientation != newViewProps.orientation){ -+ _view.orientation = RCTNSStringFromString(newViewProps.orientation); -+ [changedProps addObject:@"orientation"]; -+ } -+ if(oldViewProps.resizeMode != newViewProps.resizeMode){ -+ _view.resizeMode = RCTNSStringFromString(newViewProps.resizeMode); -+ [changedProps addObject:@"resizeMode"]; -+ } -+ if(oldViewProps.pixelFormat != newViewProps.pixelFormat){ -+ _view.pixelFormat = RCTNSStringFromString(newViewProps.pixelFormat); -+ [changedProps addObject:@"pixelFormat"]; -+ } -+ if(oldViewProps.zoom != newViewProps.zoom){ -+ _view.zoom = [NSNumber numberWithDouble:newViewProps.zoom]; -+ [changedProps addObject:@"zoom"]; -+ } -+ if(oldViewProps.exposure != newViewProps.exposure){ -+ _view.exposure = [NSNumber numberWithDouble:newViewProps.exposure]; -+ [changedProps addObject:@"exposure"]; -+ } -+ if(oldViewProps.enableZoomGesture != newViewProps.enableZoomGesture){ -+ _view.enableZoomGesture = newViewProps.enableZoomGesture; -+ [changedProps addObject:@"enableZoomGesture"]; -+ } -+ if(oldViewProps.enableFpsGraph != newViewProps.enableFpsGraph){ -+ _view.enableFpsGraph = newViewProps.enableFpsGraph; -+ [changedProps addObject:@"enableFpsGraph"]; -+ } -+ -+ -+ if(_view.format == nil){ -+ _view.format =[ [NSMutableDictionary alloc] init]; -+ } -+ -+ -+ //Checking format props, TODO: find cleaner way to do it -+ if(oldViewProps.format.supportsDepthCapture != newViewProps.format.supportsDepthCapture){ -+ NSNumber* supportsDepthCapture = newViewProps.format.supportsDepthCapture ? @1 : @0; -+ [_view.format setValue:supportsDepthCapture forKey:@"supportsDepthCapture"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.autoFocusSystem != newViewProps.format.autoFocusSystem){ -+ [_view.format setValue:RCTNSStringFromString(newViewProps.format.autoFocusSystem) forKey:@"autoFocusSystem"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.pixelFormats.size() != newViewProps.format.pixelFormats.size()){ -+ NSMutableArray* newPixelFormats = [[NSMutableArray alloc] init]; -+ for(int i = 0; i < newViewProps.format.pixelFormats.size(); i++){ -+ [newPixelFormats addObject:RCTNSStringFromString(newViewProps.format.pixelFormats.at(i))]; -+ } -+ [_view.format setValue:newPixelFormats forKey:@"pixelFormats"]; -+ [changedProps addObject:@"format"]; -+ } -+ -+ if(oldViewProps.format.videoStabilizationModes.size() != newViewProps.format.videoStabilizationModes.size()){ -+ NSMutableArray* newVideoStabilizationModes = [[NSMutableArray alloc] init]; -+ for(int i = 0; i < newViewProps.format.videoStabilizationModes.size(); i++){ -+ [newVideoStabilizationModes addObject:RCTNSStringFromString(newViewProps.format.videoStabilizationModes.at(i))]; -+ } -+ [_view.format setValue:newVideoStabilizationModes forKey:@"videoStabilizationModes"]; -+ [changedProps addObject:@"format"]; -+ } -+ -+ if(oldViewProps.format.photoHeight != newViewProps.format.photoHeight){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.photoHeight] forKey:@"photoHeight"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.photoWidth != newViewProps.format.photoWidth){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.photoWidth] forKey:@"photoWidth"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.videoHeight != newViewProps.format.videoHeight){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.videoHeight] forKey:@"videoHeight"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.videoWidth != newViewProps.format.videoWidth){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.videoWidth] forKey:@"videoWidth"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.maxISO != newViewProps.format.maxISO){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.maxISO] forKey:@"maxISO"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.minISO != newViewProps.format.minISO){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.minISO] forKey:@"minISO"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.maxFps != newViewProps.format.maxFps){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.maxFps] forKey:@"maxFps"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.minFps != newViewProps.format.minFps){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.minFps] forKey:@"minFps"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.fieldOfView != newViewProps.format.fieldOfView){ -+ [_view.format setValue:[NSNumber numberWithDouble:newViewProps.format.fieldOfView] forKey:@"fieldOfView"]; -+ [changedProps addObject:@"format"]; -+ } -+ -+ if(oldViewProps.format.supportsVideoHDR != newViewProps.format.supportsVideoHDR){ -+ NSNumber* supportsVideoHDR = newViewProps.format.supportsVideoHDR ? @1 : @0; -+ [_view.format setValue:supportsVideoHDR forKey:@"supportsVideoHDR"]; -+ [changedProps addObject:@"format"]; -+ } -+ if(oldViewProps.format.supportsPhotoHDR != newViewProps.format.supportsPhotoHDR){ -+ NSNumber* supportsPhotoHDR = newViewProps.format.supportsPhotoHDR ? @1 : @0; -+ [_view.format setValue:supportsPhotoHDR forKey:@"supportsPhotoHDR"]; -+ [changedProps addObject:@"format"]; -+ } -+ -+ if (_view.format.count == 0) { -+ _view.format = nil; -+ } -+ -+ if(_view.codeScannerOptions == nil){ -+ _view.codeScannerOptions =[[NSMutableDictionary alloc] init]; -+ } -+ -+ if(oldViewProps.codeScannerOptions.codeTypes.size() != newViewProps.codeScannerOptions.codeTypes.size()){ -+ NSMutableArray* newCodeTypes = [[NSMutableArray alloc] init]; -+ for(int i = 0; i < newViewProps.codeScannerOptions.codeTypes.size(); i++){ -+ [newCodeTypes addObject:RCTNSStringFromString(newViewProps.codeScannerOptions.codeTypes.at(i))]; -+ } -+ [_view.codeScannerOptions setValue:newCodeTypes forKey:@"codeTypes"]; -+ [changedProps addObject:@"codeScannerOptions"]; -+ } -+ -+ if(oldViewProps.codeScannerOptions.interval != newViewProps.codeScannerOptions.interval){ -+ [_view.codeScannerOptions setValue:[NSNumber numberWithDouble:newViewProps.codeScannerOptions.interval] forKey:@"interval"]; -+ [changedProps addObject:@"codeScannerOptions"]; -+ } -+ -+ if( -+ oldViewProps.codeScannerOptions.regionOfInterest.x != newViewProps.codeScannerOptions.regionOfInterest.x || -+ oldViewProps.codeScannerOptions.regionOfInterest.y != newViewProps.codeScannerOptions.regionOfInterest.y || -+ oldViewProps.codeScannerOptions.regionOfInterest.width != newViewProps.codeScannerOptions.regionOfInterest.width || -+ oldViewProps.codeScannerOptions.regionOfInterest.height != newViewProps.codeScannerOptions.regionOfInterest.height -+ ){ -+ NSDictionary *newRegionOfInterest = @{ -+ @"x": @(newViewProps.codeScannerOptions.regionOfInterest.x), -+ @"y": @(newViewProps.codeScannerOptions.regionOfInterest.y), -+ @"width": @(newViewProps.codeScannerOptions.regionOfInterest.width), -+ @"height": @(newViewProps.codeScannerOptions.regionOfInterest.height), -+ }; -+ [_view.codeScannerOptions setValue:newRegionOfInterest forKey:@"regionOfInterest"]; -+ [changedProps addObject:@"codeScannerOptions"]; -+ } -+ -+ if (_view.codeScannerOptions.count == 0) { -+ _view.codeScannerOptions = nil; -+ } -+ -+ [_view didSetProps:changedProps]; -+ -+ [super updateProps:props oldProps:oldProps]; -+} -+ -+- (void)onViewReady{ -+ if(_eventEmitter){ -+ std::dynamic_pointer_cast(_eventEmitter) -+ ->onViewReady( CameraViewEventEmitter::OnViewReady{}); -+ } -+} -+ -+- (void)onErrorWithError:(NSDictionary *)error{ -+ if(_eventEmitter){ -+ std::dynamic_pointer_cast(_eventEmitter) -+ ->onError( CameraViewEventEmitter::OnError{ -+ .code = std::string([(error != nil ? [error objectForKey:@"code"] : @"") UTF8String]), -+ .message = std::string([(error != nil ? [error objectForKey:@"message"] : @"") UTF8String]), -+ .cause = { -+ .code = std::string([(error != nil ? [[error objectForKey:@"cause"] objectForKey:@"code"] : @"") UTF8String]), // TODO: Further ecure type safety to prevent crashes -+ .domain = std::string([(error != nil ? [[error objectForKey:@"cause"] objectForKey:@"domain"] : @"") UTF8String]), -+ .message = std::string([(error != nil ? [[error objectForKey:@"cause"] objectForKey:@"message"] : @"") UTF8String]), -+ .details = std::string([(error != nil ? [[error objectForKey:@"cause"] objectForKey:@"details"] : @"") UTF8String]) -+ } -+ }); -+ } -+} -+ -+- (void)onInitialized{ -+ if(_eventEmitter){ -+ std::dynamic_pointer_cast(_eventEmitter) -+ ->onInitialized( CameraViewEventEmitter::OnInitialized{}); -+ } -+} -+ -+- (void)onCodeScannedWithMessage:(NSDictionary *)message { -+ if(_eventEmitter){ -+ std::dynamic_pointer_cast(_eventEmitter) -+ ->onCodeScanned( CameraViewEventEmitter::OnCodeScanned{ -+ .codes = { -+ .type = std::string([(message != nil ? [[message objectForKey:@"codes"] objectForKey:@"type"] : @"") UTF8String]), -+ .value = std::string([(message != nil ? [[message objectForKey:@"codes"] objectForKey:@"value"] : @"") UTF8String]), -+ .frame = { -+ .x = [(message != nil ? [[[message objectForKey:@"codes"] objectForKey:@"frame"] objectForKey:@"x"] : @0) doubleValue], -+ .y = [(message != nil ? [[[message objectForKey:@"codes"] objectForKey:@"frame"] objectForKey:@"y"] : @0) doubleValue], -+ .width = [(message != nil ? [[[message objectForKey:@"codes"] objectForKey:@"frame"] objectForKey:@"width"] : @0) doubleValue], -+ .height = [(message != nil ? [[[message objectForKey:@"codes"] objectForKey:@"frame"] objectForKey:@"height"] : @0) oubleValue], -+ }, -+ }, -+ .frame = { -+ .width = [(message != nil ? [[message objectForKey:@"frame"] objectForKey:@"width"] : @0) intValue], -+ .height = [(message != nil ? [[message objectForKey:@"frame"] objectForKey:@"height"] : @0) intValue], -+ }, -+ // nothing is sent here from CameraView -+ .corners = { -+ .x = [(message != nil ? [[message objectForKey:@"corners"] objectForKey:@"x"] : @0) doubleValue], -+ .y = [(message != nil ? [[message objectForKey:@"corners"] objectForKey:@"y"] : @0) doubleValue], -+ } -+ }); -+ } -+} -+ -+ -+- (void)onShutterWithMessage:(NSDictionary *)message { -+ if(_eventEmitter){ -+ std::dynamic_pointer_cast(_eventEmitter) -+ ->onShutter( CameraViewEventEmitter::OnShutter{ -+ .type = std::string([(message != nil ? [message objectForKey:@"type"] : @"") UTF8String]), -+ }); -+ } -+} -+ -+ -+- (void)onStarted { -+ if(_eventEmitter){ -+ std::dynamic_pointer_cast(_eventEmitter) -+ ->onStarted( CameraViewEventEmitter::OnStarted{}); -+ } -+} -+ -+ -+- (void)onStopped { -+ if(_eventEmitter){ -+ std::dynamic_pointer_cast(_eventEmitter) -+ ->onViewReady( CameraViewEventEmitter::OnViewReady{}); -+ } -+} -+ -+Class CameraViewCls(void) -+{ -+ return RNCameraView.class; -+} -+ -+@end -+#endif -diff --git a/node_modules/react-native-vision-camera/lib/commonjs/Camera.js b/node_modules/react-native-vision-camera/lib/commonjs/Camera.js -index 4c04727..9628241 100644 ---- a/node_modules/react-native-vision-camera/lib/commonjs/Camera.js -+++ b/node_modules/react-native-vision-camera/lib/commonjs/Camera.js -@@ -1,27 +1,42 @@ --"use strict"; -+'use strict'; - --Object.defineProperty(exports, "__esModule", { -- value: true -+Object.defineProperty(exports, '__esModule', { -+ value: true, - }); - exports.Camera = void 0; --var _react = _interopRequireDefault(require("react")); --var _reactNative = require("react-native"); --var _CameraError = require("./CameraError"); --var _NativeCameraModule = require("./NativeCameraModule"); --var _VisionCameraProxy = require("./frame-processors/VisionCameraProxy"); --var _CameraDevices = require("./CameraDevices"); --var _SkiaCameraCanvas = require("./skia/SkiaCameraCanvas"); --var _FpsGraph = require("./FpsGraph"); --var _NativeCameraView = require("./NativeCameraView"); --var _RotationHelper = require("./RotationHelper"); --function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } --function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } -+var _react = _interopRequireDefault(require('react')); -+var _reactNative = require('react-native'); -+var _CameraError = require('./CameraError'); -+var _NativeCameraModule = require('./NativeCameraModule'); -+var _VisionCameraProxy = require('./frame-processors/VisionCameraProxy'); -+var _CameraDevices = require('./CameraDevices'); -+var _SkiaCameraCanvas = require('./skia/SkiaCameraCanvas'); -+var _FpsGraph = require('./FpsGraph'); -+var _NativeCameraView = require('./NativeCameraView'); -+var _RotationHelper = require('./RotationHelper'); -+function _interopRequireDefault(e) { -+ return e && e.__esModule ? e : {default: e}; -+} -+function _extends() { -+ return ( -+ (_extends = Object.assign -+ ? Object.assign.bind() -+ : function (n) { -+ for (var e = 1; e < arguments.length; e++) { -+ var t = arguments[e]; -+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); -+ } -+ return n; -+ }), -+ _extends.apply(null, arguments) -+ ); -+} - //#region Types - - //#endregion - - function isSkiaFrameProcessor(frameProcessor) { -- return frameProcessor?.type === 'drawable-skia'; -+ return frameProcessor?.type === 'drawable-skia'; - } - - //#region Camera Component -@@ -58,609 +73,597 @@ function isSkiaFrameProcessor(frameProcessor) { - * @component - */ - class Camera extends _react.default.PureComponent { -- /** @internal */ -- static displayName = 'Camera'; -- /** @internal */ -- displayName = Camera.displayName; -- isNativeViewMounted = false; -- lastUIRotation = undefined; -- rotationHelper = new _RotationHelper.RotationHelper(); -- /** @internal */ -- constructor(props) { -- super(props); -- this.onViewReady = this.onViewReady.bind(this); -- this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); -- this.onInitialized = this.onInitialized.bind(this); -- this.onStarted = this.onStarted.bind(this); -- this.onStopped = this.onStopped.bind(this); -- this.onPreviewStarted = this.onPreviewStarted.bind(this); -- this.onPreviewStopped = this.onPreviewStopped.bind(this); -- this.onShutter = this.onShutter.bind(this); -- this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); -- this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); -- this.onError = this.onError.bind(this); -- this.onCodeScanned = this.onCodeScanned.bind(this); -- this.ref = /*#__PURE__*/_react.default.createRef(); -- this.lastFrameProcessor = undefined; -- this.state = { -- isRecordingWithFlash: false, -- averageFpsSamples: [] -- }; -- } -- get handle() { -- const nodeHandle = (0, _reactNative.findNodeHandle)(this.ref.current); -- if (nodeHandle == null || nodeHandle === -1) { -- throw new _CameraError.CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); -- } -- return nodeHandle; -- } -+ /** @internal */ -+ static displayName = 'Camera'; -+ /** @internal */ -+ displayName = Camera.displayName; -+ isNativeViewMounted = false; -+ lastUIRotation = undefined; -+ rotationHelper = new _RotationHelper.RotationHelper(); -+ /** @internal */ -+ constructor(props) { -+ super(props); -+ this.onViewReady = this.onViewReady.bind(this); -+ this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); -+ this.onInitialized = this.onInitialized.bind(this); -+ this.onStarted = this.onStarted.bind(this); -+ this.onStopped = this.onStopped.bind(this); -+ this.onPreviewStarted = this.onPreviewStarted.bind(this); -+ this.onPreviewStopped = this.onPreviewStopped.bind(this); -+ this.onShutter = this.onShutter.bind(this); -+ this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); -+ this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); -+ this.onError = this.onError.bind(this); -+ this.onCodeScanned = this.onCodeScanned.bind(this); -+ this.ref = /*#__PURE__*/ _react.default.createRef(); -+ this.lastFrameProcessor = undefined; -+ this.state = { -+ isRecordingWithFlash: false, -+ averageFpsSamples: [], -+ }; -+ } -+ get handle() { -+ const nodeHandle = (0, _reactNative.findNodeHandle)(this.ref.current); -+ if (nodeHandle == null || nodeHandle === -1) { -+ throw new _CameraError.CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); -+ } -+ return nodeHandle; -+ } - -- //#region View-specific functions (UIViewManager) -- /** -- * Take a single photo and write it's content to a temporary file. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * @example -- * ```ts -- * const photo = await camera.current.takePhoto({ -- * flash: 'on', -- * enableAutoRedEyeReduction: true -- * }) -- * ``` -- */ -- async takePhoto(options) { -- try { -- return await _NativeCameraModule.CameraModule.takePhoto(this.handle, options ?? {}); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -+ //#region View-specific functions (UIViewManager) -+ /** -+ * Take a single photo and write it's content to a temporary file. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * const photo = await camera.current.takePhoto({ -+ * flash: 'on', -+ * enableAutoRedEyeReduction: true -+ * }) -+ * ``` -+ */ -+ async takePhoto(options) { -+ try { -+ return await _NativeCameraModule.CameraModule.takePhoto(this.handle, options ?? {}); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } - -- /** -- * Captures a snapshot of the Camera view and write it's content to a temporary file. -- * -- * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. -- * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * @example -- * ```ts -- * const snapshot = await camera.current.takeSnapshot({ -- * quality: 100 -- * }) -- * ``` -- */ -- async takeSnapshot(options) { -- try { -- return await _NativeCameraModule.CameraModule.takeSnapshot(this.handle, options ?? {}); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -- getBitRateMultiplier(bitRate) { -- if (typeof bitRate === 'number' || bitRate == null) return 1; -- switch (bitRate) { -- case 'extra-low': -- return 0.6; -- case 'low': -- return 0.8; -- case 'normal': -- return 1; -- case 'high': -- return 1.2; -- case 'extra-high': -- return 1.4; -- } -- } -+ /** -+ * Captures a snapshot of the Camera view and write it's content to a temporary file. -+ * -+ * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. -+ * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * const snapshot = await camera.current.takeSnapshot({ -+ * quality: 100 -+ * }) -+ * ``` -+ */ -+ async takeSnapshot(options) { -+ try { -+ return await _NativeCameraModule.CameraModule.takeSnapshot(this.handle, options ?? {}); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } -+ getBitRateMultiplier(bitRate) { -+ if (typeof bitRate === 'number' || bitRate == null) return 1; -+ switch (bitRate) { -+ case 'extra-low': -+ return 0.6; -+ case 'low': -+ return 0.8; -+ case 'normal': -+ return 1; -+ case 'high': -+ return 1.2; -+ case 'extra-high': -+ return 1.4; -+ } -+ } - -- /** -- * Start a new video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * setTimeout(() => { -- * camera.current.stopRecording() -- * }, 5000) -- * ``` -- */ -- startRecording(options) { -- const { -- onRecordingError, -- onRecordingFinished, -- ...passThruOptions -- } = options; -- if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') throw new _CameraError.CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); -- if (options.flash === 'on') { -- // Enable torch for video recording -- this.setState({ -- isRecordingWithFlash: true -- }); -- } -- const onRecordCallback = (video, error) => { -- if (this.state.isRecordingWithFlash) { -- // disable torch again if it was enabled -- this.setState({ -- isRecordingWithFlash: false -- }); -- } -- if (error != null) return onRecordingError(error); -- if (video != null) return onRecordingFinished(video); -- }; -- const nativeRecordVideoOptions = passThruOptions; -- try { -- // TODO: Use TurboModules to make this awaitable. -- _NativeCameraModule.CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -+ /** -+ * Start a new video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * setTimeout(() => { -+ * camera.current.stopRecording() -+ * }, 5000) -+ * ``` -+ */ -+ startRecording(options) { -+ const {onRecordingError, onRecordingFinished, ...passThruOptions} = options; -+ if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') -+ throw new _CameraError.CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); -+ if (options.flash === 'on') { -+ // Enable torch for video recording -+ this.setState({ -+ isRecordingWithFlash: true, -+ }); -+ } -+ const onRecordCallback = (video, error) => { -+ if (this.state.isRecordingWithFlash) { -+ // disable torch again if it was enabled -+ this.setState({ -+ isRecordingWithFlash: false, -+ }); -+ } -+ if (error != null) return onRecordingError(error); -+ if (video != null) return onRecordingFinished(video); -+ }; -+ const nativeRecordVideoOptions = passThruOptions; -+ try { -+ // TODO: Use TurboModules to make this awaitable. -+ _NativeCameraModule.CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } - -- /** -- * Pauses the current video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * // Start -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * await timeout(1000) -- * // Pause -- * await camera.current.pauseRecording() -- * await timeout(500) -- * // Resume -- * await camera.current.resumeRecording() -- * await timeout(2000) -- * // Stop -- * await camera.current.stopRecording() -- * ``` -- */ -- async pauseRecording() { -- try { -- return await _NativeCameraModule.CameraModule.pauseRecording(this.handle); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -+ /** -+ * Pauses the current video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * // Start -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * await timeout(1000) -+ * // Pause -+ * await camera.current.pauseRecording() -+ * await timeout(500) -+ * // Resume -+ * await camera.current.resumeRecording() -+ * await timeout(2000) -+ * // Stop -+ * await camera.current.stopRecording() -+ * ``` -+ */ -+ async pauseRecording() { -+ try { -+ return await _NativeCameraModule.CameraModule.pauseRecording(this.handle); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } - -- /** -- * Resumes a currently paused video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * // Start -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * await timeout(1000) -- * // Pause -- * await camera.current.pauseRecording() -- * await timeout(500) -- * // Resume -- * await camera.current.resumeRecording() -- * await timeout(2000) -- * // Stop -- * await camera.current.stopRecording() -- * ``` -- */ -- async resumeRecording() { -- try { -- return await _NativeCameraModule.CameraModule.resumeRecording(this.handle); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -+ /** -+ * Resumes a currently paused video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * // Start -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * await timeout(1000) -+ * // Pause -+ * await camera.current.pauseRecording() -+ * await timeout(500) -+ * // Resume -+ * await camera.current.resumeRecording() -+ * await timeout(2000) -+ * // Stop -+ * await camera.current.stopRecording() -+ * ``` -+ */ -+ async resumeRecording() { -+ try { -+ return await _NativeCameraModule.CameraModule.resumeRecording(this.handle); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } - -- /** -- * Stop the current video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * setTimeout(async () => { -- * await camera.current.stopRecording() -- * }, 5000) -- * ``` -- */ -- async stopRecording() { -- try { -- return await _NativeCameraModule.CameraModule.stopRecording(this.handle); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -+ /** -+ * Stop the current video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * setTimeout(async () => { -+ * await camera.current.stopRecording() -+ * }, 5000) -+ * ``` -+ */ -+ async stopRecording() { -+ try { -+ return await _NativeCameraModule.CameraModule.stopRecording(this.handle); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } - -- /** -- * Cancel the current video recording. The temporary video file will be deleted, -- * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => { -- * if (error.code === 'capture/recording-canceled') { -- * // recording was canceled. -- * } else { -- * console.error(error) -- * } -- * }, -- * }) -- * setTimeout(async () => { -- * await camera.current.cancelRecording() -- * }, 5000) -- * ``` -- */ -- async cancelRecording() { -- try { -- return await _NativeCameraModule.CameraModule.cancelRecording(this.handle); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -+ /** -+ * Cancel the current video recording. The temporary video file will be deleted, -+ * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => { -+ * if (error.code === 'capture/recording-canceled') { -+ * // recording was canceled. -+ * } else { -+ * console.error(error) -+ * } -+ * }, -+ * }) -+ * setTimeout(async () => { -+ * await camera.current.cancelRecording() -+ * }, 5000) -+ * ``` -+ */ -+ async cancelRecording() { -+ try { -+ return await _NativeCameraModule.CameraModule.cancelRecording(this.handle); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } - -- /** -- * Focus the camera to a specific point in the coordinate system. -- * @param {Point} point The point to focus to. This should be relative -- * to the Camera view's coordinate system and is expressed in points. -- * * `(0, 0)` means **top left**. -- * * `(CameraView.width, CameraView.height)` means **bottom right**. -- * -- * Make sure the value doesn't exceed the CameraView's dimensions. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- * @example -- * ```ts -- * await camera.current.focus({ -- * x: tapEvent.x, -- * y: tapEvent.y -- * }) -- * ``` -- */ -- async focus(point) { -- try { -- return await _NativeCameraModule.CameraModule.focus(this.handle, point); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -- //#endregion -+ /** -+ * Focus the camera to a specific point in the coordinate system. -+ * @param {Point} point The point to focus to. This should be relative -+ * to the Camera view's coordinate system and is expressed in points. -+ * * `(0, 0)` means **top left**. -+ * * `(CameraView.width, CameraView.height)` means **bottom right**. -+ * -+ * Make sure the value doesn't exceed the CameraView's dimensions. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * await camera.current.focus({ -+ * x: tapEvent.x, -+ * y: tapEvent.y -+ * }) -+ * ``` -+ */ -+ async focus(point) { -+ try { -+ return await _NativeCameraModule.CameraModule.focus(this.handle, point); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } -+ //#endregion - -- //#region Static Functions (NativeModule) -- /** -- * Get a list of all available camera devices on the current phone. -- * -- * If you use Hooks, use the `useCameraDevices(..)` hook instead. -- * -- * * For Camera Devices attached to the phone, it is safe to assume that this will never change. -- * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices -- * could change over time when the external Camera device gets plugged in or plugged out, so -- * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. -- * -- * @example -- * ```ts -- * const devices = Camera.getAvailableCameraDevices() -- * const backCameras = devices.filter((d) => d.position === "back") -- * const frontCameras = devices.filter((d) => d.position === "front") -- * ``` -- */ -- static getAvailableCameraDevices() { -- return _CameraDevices.CameraDevices.getAvailableCameraDevices(); -- } -- /** -- * Adds a listener that gets called everytime the Camera Devices change, for example -- * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. -- * -- * If you use Hooks, use the `useCameraDevices()` hook instead. -- */ -- static addCameraDevicesChangedListener(listener) { -- return _CameraDevices.CameraDevices.addCameraDevicesChangedListener(listener); -- } -- /** -- * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure -- * the user has permitted the app to use the camera. -- * -- * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. -- */ -- static getCameraPermissionStatus() { -- return _NativeCameraModule.CameraModule.getCameraPermissionStatus(); -- } -- /** -- * Gets the current Microphone-Recording Permission Status. -- * Check this before enabling the `audio={...}` property to make sure the -- * user has permitted the app to use the microphone. -- * -- * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. -- */ -- static getMicrophonePermissionStatus() { -- return _NativeCameraModule.CameraModule.getMicrophonePermissionStatus(); -- } -- /** -- * Gets the current Location Permission Status. -- * Check this before enabling the `location={...}` property to make sure the -- * the user has permitted the app to use the location. -- * -- * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. -- * -- * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. -- * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. -- */ -- static getLocationPermissionStatus() { -- return _NativeCameraModule.CameraModule.getLocationPermissionStatus(); -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new camera permission status. -- * -- * If the user has previously blocked the app from using the camera, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- static async requestCameraPermission() { -- try { -- return await _NativeCameraModule.CameraModule.requestCameraPermission(); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. -- * -- * If the user has previously blocked the app from using the microphone, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- static async requestMicrophonePermission() { -- try { -- return await _NativeCameraModule.CameraModule.requestMicrophonePermission(); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new location permission status. -- * -- * If the user has previously blocked the app from using the location, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- static async requestLocationPermission() { -- try { -- return await _NativeCameraModule.CameraModule.requestLocationPermission(); -- } catch (e) { -- throw (0, _CameraError.tryParseNativeCameraError)(e); -- } -- } -- //#endregion -+ //#region Static Functions (NativeModule) -+ /** -+ * Get a list of all available camera devices on the current phone. -+ * -+ * If you use Hooks, use the `useCameraDevices(..)` hook instead. -+ * -+ * * For Camera Devices attached to the phone, it is safe to assume that this will never change. -+ * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices -+ * could change over time when the external Camera device gets plugged in or plugged out, so -+ * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. -+ * -+ * @example -+ * ```ts -+ * const devices = Camera.getAvailableCameraDevices() -+ * const backCameras = devices.filter((d) => d.position === "back") -+ * const frontCameras = devices.filter((d) => d.position === "front") -+ * ``` -+ */ -+ static getAvailableCameraDevices() { -+ return _CameraDevices.CameraDevices.getAvailableCameraDevices(); -+ } -+ /** -+ * Adds a listener that gets called everytime the Camera Devices change, for example -+ * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. -+ * -+ * If you use Hooks, use the `useCameraDevices()` hook instead. -+ */ -+ static addCameraDevicesChangedListener(listener) { -+ return _CameraDevices.CameraDevices.addCameraDevicesChangedListener(listener); -+ } -+ /** -+ * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure -+ * the user has permitted the app to use the camera. -+ * -+ * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. -+ */ -+ static getCameraPermissionStatus() { -+ return _NativeCameraModule.CameraModule.getCameraPermissionStatus(); -+ } -+ /** -+ * Gets the current Microphone-Recording Permission Status. -+ * Check this before enabling the `audio={...}` property to make sure the -+ * user has permitted the app to use the microphone. -+ * -+ * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. -+ */ -+ static getMicrophonePermissionStatus() { -+ return _NativeCameraModule.CameraModule.getMicrophonePermissionStatus(); -+ } -+ /** -+ * Gets the current Location Permission Status. -+ * Check this before enabling the `location={...}` property to make sure the -+ * the user has permitted the app to use the location. -+ * -+ * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. -+ * -+ * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. -+ * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. -+ */ -+ static getLocationPermissionStatus() { -+ return _NativeCameraModule.CameraModule.getLocationPermissionStatus(); -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new camera permission status. -+ * -+ * If the user has previously blocked the app from using the camera, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ static async requestCameraPermission() { -+ try { -+ return await _NativeCameraModule.CameraModule.requestCameraPermission(); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. -+ * -+ * If the user has previously blocked the app from using the microphone, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ static async requestMicrophonePermission() { -+ try { -+ return await _NativeCameraModule.CameraModule.requestMicrophonePermission(); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new location permission status. -+ * -+ * If the user has previously blocked the app from using the location, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ static async requestLocationPermission() { -+ try { -+ return await _NativeCameraModule.CameraModule.requestLocationPermission(); -+ } catch (e) { -+ throw (0, _CameraError.tryParseNativeCameraError)(e); -+ } -+ } -+ //#endregion - -- //#region Events (Wrapped to maintain reference equality) -- onError(event) { -- const error = event.nativeEvent; -- const cause = (0, _CameraError.isErrorWithCause)(error.cause) ? error.cause : undefined; -- // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work -- const cameraError = new _CameraError.CameraRuntimeError(error.code, error.message, cause); -- if (this.props.onError != null) { -- this.props.onError(cameraError); -- } else { -- // User didn't pass an `onError` handler, so just log it to console -- console.error(cameraError); -- } -- } -- onInitialized() { -- this.props.onInitialized?.(); -- } -- onStarted() { -- this.props.onStarted?.(); -- } -- onStopped() { -- this.props.onStopped?.(); -- } -- onPreviewStarted() { -- this.props.onPreviewStarted?.(); -- } -- onPreviewStopped() { -- this.props.onPreviewStopped?.(); -- } -- onShutter(event) { -- this.props.onShutter?.(event.nativeEvent); -- } -- onOutputOrientationChanged({ -- nativeEvent: { -- outputOrientation -- } -- }) { -- this.rotationHelper.outputOrientation = outputOrientation; -- this.props.onOutputOrientationChanged?.(outputOrientation); -- this.maybeUpdateUIRotation(); -- } -- onPreviewOrientationChanged({ -- nativeEvent: { -- previewOrientation -- } -- }) { -- this.rotationHelper.previewOrientation = previewOrientation; -- this.props.onPreviewOrientationChanged?.(previewOrientation); -- this.maybeUpdateUIRotation(); -- if (isSkiaFrameProcessor(this.props.frameProcessor)) { -- // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. -- this.props.frameProcessor.previewOrientation.value = previewOrientation; -- } -- } -- maybeUpdateUIRotation() { -- const uiRotation = this.rotationHelper.uiRotation; -- if (uiRotation !== this.lastUIRotation) { -- this.props.onUIRotationChanged?.(uiRotation); -- this.lastUIRotation = uiRotation; -- } -- } -- //#endregion -+ //#region Events (Wrapped to maintain reference equality) -+ onError(event) { -+ const error = event.nativeEvent; -+ const cause = (0, _CameraError.isErrorWithCause)(error.cause) ? error.cause : undefined; -+ // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work -+ const cameraError = new _CameraError.CameraRuntimeError(error.code, error.message, cause); -+ if (this.props.onError != null) { -+ this.props.onError(cameraError); -+ } else { -+ // User didn't pass an `onError` handler, so just log it to console -+ console.error(cameraError); -+ } -+ } -+ onInitialized() { -+ this.props.onInitialized?.(); -+ } -+ onStarted() { -+ this.props.onStarted?.(); -+ } -+ onStopped() { -+ this.props.onStopped?.(); -+ } -+ onPreviewStarted() { -+ this.props.onPreviewStarted?.(); -+ } -+ onPreviewStopped() { -+ this.props.onPreviewStopped?.(); -+ } -+ onShutter(event) { -+ this.props.onShutter?.(event.nativeEvent); -+ } -+ onOutputOrientationChanged({nativeEvent: {outputOrientation}}) { -+ this.rotationHelper.outputOrientation = outputOrientation; -+ this.props.onOutputOrientationChanged?.(outputOrientation); -+ this.maybeUpdateUIRotation(); -+ } -+ onPreviewOrientationChanged({nativeEvent: {previewOrientation}}) { -+ this.rotationHelper.previewOrientation = previewOrientation; -+ this.props.onPreviewOrientationChanged?.(previewOrientation); -+ this.maybeUpdateUIRotation(); -+ if (isSkiaFrameProcessor(this.props.frameProcessor)) { -+ // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. -+ this.props.frameProcessor.previewOrientation.value = previewOrientation; -+ } -+ } -+ maybeUpdateUIRotation() { -+ const uiRotation = this.rotationHelper.uiRotation; -+ if (uiRotation !== this.lastUIRotation) { -+ this.props.onUIRotationChanged?.(uiRotation); -+ this.lastUIRotation = uiRotation; -+ } -+ } -+ //#endregion - -- onCodeScanned(event) { -- const codeScanner = this.props.codeScanner; -- if (codeScanner == null) return; -- codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); -- } -+ onCodeScanned(event) { -+ const codeScanner = this.props.codeScanner; -+ if (codeScanner == null) return; -+ codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); -+ } - -- //#region Lifecycle -- setFrameProcessor(frameProcessor) { -- _VisionCameraProxy.VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); -- } -- unsetFrameProcessor() { -- _VisionCameraProxy.VisionCameraProxy.removeFrameProcessor(this.handle); -- } -- onViewReady() { -- this.isNativeViewMounted = true; -- if (this.props.frameProcessor != null) { -- // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. -- this.setFrameProcessor(this.props.frameProcessor.frameProcessor); -- this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; -- } -- } -- onAverageFpsChanged({ -- nativeEvent: { -- averageFps -- } -- }) { -- this.setState(state => { -- const averageFpsSamples = [...state.averageFpsSamples, averageFps]; -- while (averageFpsSamples.length >= _FpsGraph.MAX_BARS + 1) { -- // we keep a maximum of 30 FPS samples in our history -- averageFpsSamples.shift(); -- } -- return { -- ...state, -- averageFpsSamples: averageFpsSamples -- }; -- }); -- } -+ //#region Lifecycle -+ setFrameProcessor(frameProcessor) { -+ _VisionCameraProxy.VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); -+ } -+ unsetFrameProcessor() { -+ _VisionCameraProxy.VisionCameraProxy.removeFrameProcessor(this.handle); -+ } -+ onViewReady() { -+ this.isNativeViewMounted = true; -+ if (this.props.frameProcessor != null) { -+ // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. -+ this.setFrameProcessor(this.props.frameProcessor.frameProcessor); -+ this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; -+ } -+ } -+ onAverageFpsChanged({nativeEvent: {averageFps}}) { -+ this.setState((state) => { -+ const averageFpsSamples = [...state.averageFpsSamples, averageFps]; -+ while (averageFpsSamples.length >= _FpsGraph.MAX_BARS + 1) { -+ // we keep a maximum of 30 FPS samples in our history -+ averageFpsSamples.shift(); -+ } -+ return { -+ ...state, -+ averageFpsSamples: averageFpsSamples, -+ }; -+ }); -+ } - -- /** @internal */ -- componentDidUpdate() { -- if (!this.isNativeViewMounted) return; -- const frameProcessor = this.props.frameProcessor; -- if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { -- // frameProcessor argument identity changed. Update native to reflect the change. -- if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor);else this.unsetFrameProcessor(); -- this.lastFrameProcessor = frameProcessor?.frameProcessor; -- } -- } -- //#endregion -+ /** @internal */ -+ componentDidUpdate() { -+ if (!this.isNativeViewMounted) return; -+ const frameProcessor = this.props.frameProcessor; -+ if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { -+ // frameProcessor argument identity changed. Update native to reflect the change. -+ if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor); -+ else this.unsetFrameProcessor(); -+ this.lastFrameProcessor = frameProcessor?.frameProcessor; -+ } -+ } -+ //#endregion - -- /** @internal */ -- render() { -- // We remove the big `device` object from the props because we only need to pass `cameraId` to native. -- const { -- device, -- frameProcessor, -- codeScanner, -- enableFpsGraph, -- fps, -- videoBitRate, -- ...props -- } = this.props; -+ /** @internal */ -+ render() { -+ // We remove the big `device` object from the props because we only need to pass `cameraId` to native. -+ const {device, frameProcessor, codeScanner, enableFpsGraph, fps, videoBitRate, ...props} = this.props; - -- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- if (device == null) { -- throw new _CameraError.CameraRuntimeError('device/no-device', 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices'); -- } -- const shouldEnableBufferCompression = props.video === true && frameProcessor == null; -- const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; -- const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); -- const shouldBeMirrored = device.position === 'front'; -+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -+ if (device == null) { -+ throw new _CameraError.CameraRuntimeError( -+ 'device/no-device', -+ 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices', -+ ); -+ } -+ const shouldEnableBufferCompression = props.video === true && frameProcessor == null; -+ const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; -+ const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); -+ const shouldBeMirrored = device.position === 'front'; - -- // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple -- const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; -- const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; -+ // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple -+ const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; -+ const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; - -- // bitrate is number (override) or string (multiplier) -- let bitRateMultiplier; -- let bitRateOverride; -- if (typeof videoBitRate === 'number') { -- // If the user passed an absolute number as a bit-rate, we just use this as a full override. -- bitRateOverride = videoBitRate; -- } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { -- // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it -- bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); -- } -- return /*#__PURE__*/_react.default.createElement(_NativeCameraView.NativeCameraView, _extends({}, props, { -- cameraId: device.id, -- ref: this.ref, -- torch: torch, -- minFps: minFps, -- maxFps: maxFps, -- isMirrored: props.isMirrored ?? shouldBeMirrored, -- onViewReady: this.onViewReady, -- onAverageFpsChanged: enableFpsGraph ? this.onAverageFpsChanged : undefined, -- onInitialized: this.onInitialized, -- onCodeScanned: this.onCodeScanned, -- onStarted: this.onStarted, -- onStopped: this.onStopped, -- onPreviewStarted: this.onPreviewStarted, -- onPreviewStopped: this.onPreviewStopped, -- onShutter: this.onShutter, -- videoBitRateMultiplier: bitRateMultiplier, -- videoBitRateOverride: bitRateOverride, -- onOutputOrientationChanged: this.onOutputOrientationChanged, -- onPreviewOrientationChanged: this.onPreviewOrientationChanged, -- onError: this.onError, -- codeScannerOptions: codeScanner, -- enableFrameProcessor: frameProcessor != null, -- enableBufferCompression: props.enableBufferCompression ?? shouldEnableBufferCompression, -- preview: isRenderingWithSkia ? false : props.preview ?? true -- }), isRenderingWithSkia && /*#__PURE__*/_react.default.createElement(_SkiaCameraCanvas.SkiaCameraCanvas, { -- style: styles.customPreviewView, -- offscreenTextures: frameProcessor.offscreenTextures, -- resizeMode: props.resizeMode -- }), enableFpsGraph && /*#__PURE__*/_react.default.createElement(_FpsGraph.FpsGraph, { -- style: styles.fpsGraph, -- averageFpsSamples: this.state.averageFpsSamples, -- targetMaxFps: props.format?.maxFps ?? 60 -- })); -- } -+ // bitrate is number (override) or string (multiplier) -+ let bitRateMultiplier; -+ let bitRateOverride; -+ if (typeof videoBitRate === 'number') { -+ // If the user passed an absolute number as a bit-rate, we just use this as a full override. -+ bitRateOverride = videoBitRate; -+ } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { -+ // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it -+ bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); -+ } -+ return /*#__PURE__*/ _react.default.createElement( -+ _NativeCameraView.NativeCameraView, -+ _extends({}, props, { -+ cameraId: device.id, -+ ref: this.ref, -+ torch: torch, -+ minFps: minFps, -+ maxFps: maxFps, -+ isMirrored: props.isMirrored ?? shouldBeMirrored, -+ onViewReady: this.onViewReady, -+ onAverageFpsChanged: enableFpsGraph ? this.onAverageFpsChanged : undefined, -+ onInitialized: this.onInitialized, -+ onCodeScanned: this.onCodeScanned, -+ onStarted: this.onStarted, -+ onStopped: this.onStopped, -+ onPreviewStarted: this.onPreviewStarted, -+ onPreviewStopped: this.onPreviewStopped, -+ onShutter: this.onShutter, -+ videoBitRateMultiplier: bitRateMultiplier, -+ videoBitRateOverride: bitRateOverride, -+ onOutputOrientationChanged: this.onOutputOrientationChanged, -+ onPreviewOrientationChanged: this.onPreviewOrientationChanged, -+ onError: this.onError, -+ codeScannerOptions: codeScanner, -+ enableFrameProcessor: frameProcessor != null, -+ enableBufferCompression: props.enableBufferCompression ?? shouldEnableBufferCompression, -+ preview: isRenderingWithSkia ? false : props.preview ?? true, -+ }), -+ isRenderingWithSkia && -+ /*#__PURE__*/ _react.default.createElement(_SkiaCameraCanvas.SkiaCameraCanvas, { -+ style: styles.customPreviewView, -+ offscreenTextures: frameProcessor.offscreenTextures, -+ resizeMode: props.resizeMode, -+ }), -+ enableFpsGraph && -+ /*#__PURE__*/ _react.default.createElement(_FpsGraph.FpsGraph, { -+ style: styles.fpsGraph, -+ averageFpsSamples: this.state.averageFpsSamples, -+ targetMaxFps: props.format?.maxFps ?? 60, -+ }), -+ ); -+ } - } - //#endregion - exports.Camera = Camera; - const styles = _reactNative.StyleSheet.create({ -- customPreviewView: { -- flex: 1 -- }, -- fpsGraph: { -- elevation: 1, -- position: 'absolute', -- left: 15, -- top: 30 -- } -+ customPreviewView: { -+ flex: 1, -+ }, -+ fpsGraph: { -+ elevation: 1, -+ position: 'absolute', -+ left: 15, -+ top: 30, -+ }, - }); - //# sourceMappingURL=Camera.js.map -\ No newline at end of file -diff --git a/node_modules/react-native-vision-camera/lib/commonjs/Camera.js.map b/node_modules/react-native-vision-camera/lib/commonjs/Camera.js.map -index a21019c..667d46b 100644 ---- a/node_modules/react-native-vision-camera/lib/commonjs/Camera.js.map -+++ b/node_modules/react-native-vision-camera/lib/commonjs/Camera.js.map -@@ -1 +1,175 @@ --{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_CameraError","_NativeCameraModule","_VisionCameraProxy","_CameraDevices","_SkiaCameraCanvas","_FpsGraph","_NativeCameraView","_RotationHelper","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","isSkiaFrameProcessor","frameProcessor","type","Camera","React","PureComponent","displayName","isNativeViewMounted","lastUIRotation","undefined","rotationHelper","RotationHelper","constructor","props","onViewReady","onAverageFpsChanged","onInitialized","onStarted","onStopped","onPreviewStarted","onPreviewStopped","onShutter","onOutputOrientationChanged","onPreviewOrientationChanged","onError","onCodeScanned","ref","createRef","lastFrameProcessor","state","isRecordingWithFlash","averageFpsSamples","handle","nodeHandle","findNodeHandle","current","CameraRuntimeError","takePhoto","options","CameraModule","tryParseNativeCameraError","takeSnapshot","getBitRateMultiplier","bitRate","startRecording","onRecordingError","onRecordingFinished","passThruOptions","flash","setState","onRecordCallback","video","error","nativeRecordVideoOptions","pauseRecording","resumeRecording","stopRecording","cancelRecording","focus","point","getAvailableCameraDevices","CameraDevices","addCameraDevicesChangedListener","listener","getCameraPermissionStatus","getMicrophonePermissionStatus","getLocationPermissionStatus","requestCameraPermission","requestMicrophonePermission","requestLocationPermission","event","nativeEvent","cause","isErrorWithCause","cameraError","code","message","console","outputOrientation","maybeUpdateUIRotation","previewOrientation","value","uiRotation","onUIRotationChanged","codeScanner","codes","frame","setFrameProcessor","VisionCameraProxy","unsetFrameProcessor","removeFrameProcessor","averageFps","MAX_BARS","shift","componentDidUpdate","render","device","enableFpsGraph","fps","videoBitRate","shouldEnableBufferCompression","torch","isRenderingWithSkia","shouldBeMirrored","position","minFps","maxFps","bitRateMultiplier","bitRateOverride","createElement","NativeCameraView","cameraId","id","isMirrored","videoBitRateMultiplier","videoBitRateOverride","codeScannerOptions","enableFrameProcessor","enableBufferCompression","preview","SkiaCameraCanvas","style","styles","customPreviewView","offscreenTextures","resizeMode","FpsGraph","fpsGraph","targetMaxFps","format","exports","StyleSheet","create","flex","elevation","left","top"],"sourceRoot":"../../src","sources":["Camera.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAGA,IAAAE,YAAA,GAAAF,OAAA;AAEA,IAAAG,mBAAA,GAAAH,OAAA;AAIA,IAAAI,kBAAA,GAAAJ,OAAA;AACA,IAAAK,cAAA,GAAAL,OAAA;AAGA,IAAAM,iBAAA,GAAAN,OAAA;AAEA,IAAAO,SAAA,GAAAP,OAAA;AASA,IAAAQ,iBAAA,GAAAR,OAAA;AACA,IAAAS,eAAA,GAAAT,OAAA;AAAiD,SAAAD,uBAAAW,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,SAAA,WAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,CAAA,aAAAP,CAAA,MAAAA,CAAA,GAAAQ,SAAA,CAAAC,MAAA,EAAAT,CAAA,UAAAU,CAAA,GAAAF,SAAA,CAAAR,CAAA,YAAAW,CAAA,IAAAD,CAAA,OAAAE,cAAA,CAAAC,IAAA,CAAAH,CAAA,EAAAC,CAAA,MAAAJ,CAAA,CAAAI,CAAA,IAAAD,CAAA,CAAAC,CAAA,aAAAJ,CAAA,KAAAJ,QAAA,CAAAW,KAAA,OAAAN,SAAA;AAEjD;;AAUA;;AAEA,SAASO,oBAAoBA,CAACC,cAAgE,EAA4C;EACxI,OAAOA,cAAc,EAAEC,IAAI,KAAK,eAAe;AACjD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAMC,MAAM,SAASC,cAAK,CAACC,aAAa,CAA2B;EACxE;EACA,OAAOC,WAAW,GAAG,QAAQ;EAC7B;EACAA,WAAW,GAAGH,MAAM,CAACG,WAAW;EAExBC,mBAAmB,GAAG,KAAK;EAC3BC,cAAc,GAAuBC,SAAS;EAC9CC,cAAc,GAAG,IAAIC,8BAAc,CAAC,CAAC;EAI7C;EACAC,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,CAAC;IACZ,IAAI,CAACC,WAAW,GAAG,IAAI,CAACA,WAAW,CAACvB,IAAI,CAAC,IAAI,CAAC;IAC9C,IAAI,CAACwB,mBAAmB,GAAG,IAAI,CAACA,mBAAmB,CAACxB,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,CAACyB,aAAa,GAAG,IAAI,CAACA,aAAa,CAACzB,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAAC0B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC1B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC2B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC3B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC4B,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAAC5B,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAAC6B,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAAC7B,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAAC8B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC9B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC+B,0BAA0B,GAAG,IAAI,CAACA,0BAA0B,CAAC/B,IAAI,CAAC,IAAI,CAAC;IAC5E,IAAI,CAACgC,2BAA2B,GAAG,IAAI,CAACA,2BAA2B,CAAChC,IAAI,CAAC,IAAI,CAAC;IAC9E,IAAI,CAACiC,OAAO,GAAG,IAAI,CAACA,OAAO,CAACjC,IAAI,CAAC,IAAI,CAAC;IACtC,IAAI,CAACkC,aAAa,GAAG,IAAI,CAACA,aAAa,CAAClC,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACmC,GAAG,gBAAGtB,cAAK,CAACuB,SAAS,CAAU,CAAC;IACrC,IAAI,CAACC,kBAAkB,GAAGnB,SAAS;IACnC,IAAI,CAACoB,KAAK,GAAG;MACXC,oBAAoB,EAAE,KAAK;MAC3BC,iBAAiB,EAAE;IACrB,CAAC;EACH;EAEA,IAAYC,MAAMA,CAAA,EAAW;IAC3B,MAAMC,UAAU,GAAG,IAAAC,2BAAc,EAAC,IAAI,CAACR,GAAG,CAACS,OAAO,CAAC;IACnD,IAAIF,UAAU,IAAI,IAAI,IAAIA,UAAU,KAAK,CAAC,CAAC,EAAE;MAC3C,MAAM,IAAIG,+BAAkB,CAC1B,uBAAuB,EACvB,iGACF,CAAC;IACH;IAEA,OAAOH,UAAU;EACnB;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaI,SAASA,CAACC,OAA0B,EAAsB;IACrE,IAAI;MACF,OAAO,MAAMC,gCAAY,CAACF,SAAS,CAAC,IAAI,CAACL,MAAM,EAAEM,OAAO,IAAI,CAAC,CAAC,CAAC;IACjE,CAAC,CAAC,OAAOrD,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAawD,YAAYA,CAACH,OAA6B,EAAsB;IAC3E,IAAI;MACF,OAAO,MAAMC,gCAAY,CAACE,YAAY,CAAC,IAAI,CAACT,MAAM,EAAEM,OAAO,IAAI,CAAC,CAAC,CAAC;IACpE,CAAC,CAAC,OAAOrD,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EAEQyD,oBAAoBA,CAACC,OAAoC,EAAU;IACzE,IAAI,OAAOA,OAAO,KAAK,QAAQ,IAAIA,OAAO,IAAI,IAAI,EAAE,OAAO,CAAC;IAC5D,QAAQA,OAAO;MACb,KAAK,WAAW;QACd,OAAO,GAAG;MACZ,KAAK,KAAK;QACR,OAAO,GAAG;MACZ,KAAK,QAAQ;QACX,OAAO,CAAC;MACV,KAAK,MAAM;QACT,OAAO,GAAG;MACZ,KAAK,YAAY;QACf,OAAO,GAAG;IACd;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,cAAcA,CAACN,OAA2B,EAAQ;IACvD,MAAM;MAAEO,gBAAgB;MAAEC,mBAAmB;MAAE,GAAGC;IAAgB,CAAC,GAAGT,OAAO;IAC7E,IAAI,OAAOO,gBAAgB,KAAK,UAAU,IAAI,OAAOC,mBAAmB,KAAK,UAAU,EACrF,MAAM,IAAIV,+BAAkB,CAAC,6BAA6B,EAAE,qEAAqE,CAAC;IAEpI,IAAIE,OAAO,CAACU,KAAK,KAAK,IAAI,EAAE;MAC1B;MACA,IAAI,CAACC,QAAQ,CAAC;QACZnB,oBAAoB,EAAE;MACxB,CAAC,CAAC;IACJ;IAEA,MAAMoB,gBAAgB,GAAGA,CAACC,KAAiB,EAAEC,KAA0B,KAAW;MAChF,IAAI,IAAI,CAACvB,KAAK,CAACC,oBAAoB,EAAE;QACnC;QACA,IAAI,CAACmB,QAAQ,CAAC;UACZnB,oBAAoB,EAAE;QACxB,CAAC,CAAC;MACJ;MAEA,IAAIsB,KAAK,IAAI,IAAI,EAAE,OAAOP,gBAAgB,CAACO,KAAK,CAAC;MACjD,IAAID,KAAK,IAAI,IAAI,EAAE,OAAOL,mBAAmB,CAACK,KAAK,CAAC;IACtD,CAAC;IAED,MAAME,wBAAkD,GAAGN,eAAe;IAC1E,IAAI;MACF;MACAR,gCAAY,CAACK,cAAc,CAAC,IAAI,CAACZ,MAAM,EAAEqB,wBAAwB,EAAEH,gBAAgB,CAAC;IACtF,CAAC,CAAC,OAAOjE,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaqE,cAAcA,CAAA,EAAkB;IAC3C,IAAI;MACF,OAAO,MAAMf,gCAAY,CAACe,cAAc,CAAC,IAAI,CAACtB,MAAM,CAAC;IACvD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAasE,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAMhB,gCAAY,CAACgB,eAAe,CAAC,IAAI,CAACvB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAauE,aAAaA,CAAA,EAAkB;IAC1C,IAAI;MACF,OAAO,MAAMjB,gCAAY,CAACiB,aAAa,CAAC,IAAI,CAACxB,MAAM,CAAC;IACtD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAawE,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAMlB,gCAAY,CAACkB,eAAe,CAAC,IAAI,CAACzB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAayE,KAAKA,CAACC,KAAY,EAAiB;IAC9C,IAAI;MACF,OAAO,MAAMpB,gCAAY,CAACmB,KAAK,CAAC,IAAI,CAAC1B,MAAM,EAAE2B,KAAK,CAAC;IACrD,CAAC,CAAC,OAAO1E,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAc2E,yBAAyBA,CAAA,EAAmB;IACxD,OAAOC,4BAAa,CAACD,yBAAyB,CAAC,CAAC;EAClD;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcE,+BAA+BA,CAACC,QAA8C,EAAuB;IACjH,OAAOF,4BAAa,CAACC,+BAA+B,CAACC,QAAQ,CAAC;EAChE;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,yBAAyBA,CAAA,EAA2B;IAChE,OAAOzB,gCAAY,CAACyB,yBAAyB,CAAC,CAAC;EACjD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,6BAA6BA,CAAA,EAA2B;IACpE,OAAO1B,gCAAY,CAAC0B,6BAA6B,CAAC,CAAC;EACrD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,2BAA2BA,CAAA,EAA2B;IAClE,OAAO3B,gCAAY,CAAC2B,2BAA2B,CAAC,CAAC;EACnD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBC,uBAAuBA,CAAA,EAA2C;IACpF,IAAI;MACF,OAAO,MAAM5B,gCAAY,CAAC4B,uBAAuB,CAAC,CAAC;IACrD,CAAC,CAAC,OAAOlF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBmF,2BAA2BA,CAAA,EAA2C;IACxF,IAAI;MACF,OAAO,MAAM7B,gCAAY,CAAC6B,2BAA2B,CAAC,CAAC;IACzD,CAAC,CAAC,OAAOnF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBoF,yBAAyBA,CAAA,EAA2C;IACtF,IAAI;MACF,OAAO,MAAM9B,gCAAY,CAAC8B,yBAAyB,CAAC,CAAC;IACvD,CAAC,CAAC,OAAOpF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACQuC,OAAOA,CAAC8C,KAAyC,EAAQ;IAC/D,MAAMlB,KAAK,GAAGkB,KAAK,CAACC,WAAW;IAC/B,MAAMC,KAAK,GAAG,IAAAC,6BAAgB,EAACrB,KAAK,CAACoB,KAAK,CAAC,GAAGpB,KAAK,CAACoB,KAAK,GAAG/D,SAAS;IACrE;IACA,MAAMiE,WAAW,GAAG,IAAItC,+BAAkB,CAACgB,KAAK,CAACuB,IAAI,EAAEvB,KAAK,CAACwB,OAAO,EAAEJ,KAAK,CAAC;IAE5E,IAAI,IAAI,CAAC3D,KAAK,CAACW,OAAO,IAAI,IAAI,EAAE;MAC9B,IAAI,CAACX,KAAK,CAACW,OAAO,CAACkD,WAAW,CAAC;IACjC,CAAC,MAAM;MACL;MACAG,OAAO,CAACzB,KAAK,CAACsB,WAAW,CAAC;IAC5B;EACF;EAEQ1D,aAAaA,CAAA,EAAS;IAC5B,IAAI,CAACH,KAAK,CAACG,aAAa,GAAG,CAAC;EAC9B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACJ,KAAK,CAACI,SAAS,GAAG,CAAC;EAC1B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACL,KAAK,CAACK,SAAS,GAAG,CAAC;EAC1B;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACN,KAAK,CAACM,gBAAgB,GAAG,CAAC;EACjC;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACP,KAAK,CAACO,gBAAgB,GAAG,CAAC;EACjC;EAEQC,SAASA,CAACiD,KAA2C,EAAQ;IACnE,IAAI,CAACzD,KAAK,CAACQ,SAAS,GAAGiD,KAAK,CAACC,WAAW,CAAC;EAC3C;EAEQjD,0BAA0BA,CAAC;IAAEiD,WAAW,EAAE;MAAEO;IAAkB;EAAuD,CAAC,EAAQ;IACpI,IAAI,CAACpE,cAAc,CAACoE,iBAAiB,GAAGA,iBAAiB;IACzD,IAAI,CAACjE,KAAK,CAACS,0BAA0B,GAAGwD,iBAAiB,CAAC;IAC1D,IAAI,CAACC,qBAAqB,CAAC,CAAC;EAC9B;EAEQxD,2BAA2BA,CAAC;IAAEgD,WAAW,EAAE;MAAES;IAAmB;EAAwD,CAAC,EAAQ;IACvI,IAAI,CAACtE,cAAc,CAACsE,kBAAkB,GAAGA,kBAAkB;IAC3D,IAAI,CAACnE,KAAK,CAACU,2BAA2B,GAAGyD,kBAAkB,CAAC;IAC5D,IAAI,CAACD,qBAAqB,CAAC,CAAC;IAE5B,IAAI/E,oBAAoB,CAAC,IAAI,CAACa,KAAK,CAACZ,cAAc,CAAC,EAAE;MACnD;MACA,IAAI,CAACY,KAAK,CAACZ,cAAc,CAAC+E,kBAAkB,CAACC,KAAK,GAAGD,kBAAkB;IACzE;EACF;EAEQD,qBAAqBA,CAAA,EAAS;IACpC,MAAMG,UAAU,GAAG,IAAI,CAACxE,cAAc,CAACwE,UAAU;IACjD,IAAIA,UAAU,KAAK,IAAI,CAAC1E,cAAc,EAAE;MACtC,IAAI,CAACK,KAAK,CAACsE,mBAAmB,GAAGD,UAAU,CAAC;MAC5C,IAAI,CAAC1E,cAAc,GAAG0E,UAAU;IAClC;EACF;EACA;;EAEQzD,aAAaA,CAAC6C,KAA+C,EAAQ;IAC3E,MAAMc,WAAW,GAAG,IAAI,CAACvE,KAAK,CAACuE,WAAW;IAC1C,IAAIA,WAAW,IAAI,IAAI,EAAE;IAEzBA,WAAW,CAAC3D,aAAa,CAAC6C,KAAK,CAACC,WAAW,CAACc,KAAK,EAAEf,KAAK,CAACC,WAAW,CAACe,KAAK,CAAC;EAC7E;;EAEA;EACQC,iBAAiBA,CAACtF,cAAsC,EAAQ;IACtEuF,oCAAiB,CAACD,iBAAiB,CAAC,IAAI,CAACvD,MAAM,EAAE/B,cAAc,CAAC;EAClE;EAEQwF,mBAAmBA,CAAA,EAAS;IAClCD,oCAAiB,CAACE,oBAAoB,CAAC,IAAI,CAAC1D,MAAM,CAAC;EACrD;EAEQlB,WAAWA,CAAA,EAAS;IAC1B,IAAI,CAACP,mBAAmB,GAAG,IAAI;IAC/B,IAAI,IAAI,CAACM,KAAK,CAACZ,cAAc,IAAI,IAAI,EAAE;MACrC;MACA,IAAI,CAACsF,iBAAiB,CAAC,IAAI,CAAC1E,KAAK,CAACZ,cAAc,CAACA,cAAc,CAAC;MAChE,IAAI,CAAC2B,kBAAkB,GAAG,IAAI,CAACf,KAAK,CAACZ,cAAc,CAACA,cAAc;IACpE;EACF;EAEQc,mBAAmBA,CAAC;IAAEwD,WAAW,EAAE;MAAEoB;IAAW;EAAgD,CAAC,EAAQ;IAC/G,IAAI,CAAC1C,QAAQ,CAAEpB,KAAK,IAAK;MACvB,MAAME,iBAAiB,GAAG,CAAC,GAAGF,KAAK,CAACE,iBAAiB,EAAE4D,UAAU,CAAC;MAClE,OAAO5D,iBAAiB,CAACrC,MAAM,IAAIkG,kBAAQ,GAAG,CAAC,EAAE;QAC/C;QACA7D,iBAAiB,CAAC8D,KAAK,CAAC,CAAC;MAC3B;MAEA,OAAO;QACL,GAAGhE,KAAK;QACRE,iBAAiB,EAAEA;MACrB,CAAC;IACH,CAAC,CAAC;EACJ;;EAEA;EACA+D,kBAAkBA,CAAA,EAAS;IACzB,IAAI,CAAC,IAAI,CAACvF,mBAAmB,EAAE;IAC/B,MAAMN,cAAc,GAAG,IAAI,CAACY,KAAK,CAACZ,cAAc;IAChD,IAAIA,cAAc,EAAEA,cAAc,KAAK,IAAI,CAAC2B,kBAAkB,EAAE;MAC9D;MACA,IAAI3B,cAAc,IAAI,IAAI,EAAE,IAAI,CAACsF,iBAAiB,CAACtF,cAAc,CAACA,cAAc,CAAC,MAC5E,IAAI,CAACwF,mBAAmB,CAAC,CAAC;MAE/B,IAAI,CAAC7D,kBAAkB,GAAG3B,cAAc,EAAEA,cAAc;IAC1D;EACF;EACA;;EAEA;EACO8F,MAAMA,CAAA,EAAoB;IAC/B;IACA,MAAM;MAAEC,MAAM;MAAE/F,cAAc;MAAEmF,WAAW;MAAEa,cAAc;MAAEC,GAAG;MAAEC,YAAY;MAAE,GAAGtF;IAAM,CAAC,GAAG,IAAI,CAACA,KAAK;;IAEvG;IACA,IAAImF,MAAM,IAAI,IAAI,EAAE;MAClB,MAAM,IAAI5D,+BAAkB,CAC1B,kBAAkB,EAClB,kIACF,CAAC;IACH;IAEA,MAAMgE,6BAA6B,GAAGvF,KAAK,CAACsC,KAAK,KAAK,IAAI,IAAIlD,cAAc,IAAI,IAAI;IACpF,MAAMoG,KAAK,GAAG,IAAI,CAACxE,KAAK,CAACC,oBAAoB,GAAG,IAAI,GAAGjB,KAAK,CAACwF,KAAK;IAClE,MAAMC,mBAAmB,GAAGtG,oBAAoB,CAACC,cAAc,CAAC;IAChE,MAAMsG,gBAAgB,GAAGP,MAAM,CAACQ,QAAQ,KAAK,OAAO;;IAEpD;IACA,MAAMC,MAAM,GAAGP,GAAG,IAAI,IAAI,GAAGzF,SAAS,GAAG,OAAOyF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;IAC/E,MAAMQ,MAAM,GAAGR,GAAG,IAAI,IAAI,GAAGzF,SAAS,GAAG,OAAOyF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;;IAE/E;IACA,IAAIS,iBAAqC;IACzC,IAAIC,eAAmC;IACvC,IAAI,OAAOT,YAAY,KAAK,QAAQ,EAAE;MACpC;MACAS,eAAe,GAAGT,YAAY;IAChC,CAAC,MAAM,IAAI,OAAOA,YAAY,KAAK,QAAQ,IAAIA,YAAY,KAAK,QAAQ,EAAE;MACxE;MACAQ,iBAAiB,GAAG,IAAI,CAACjE,oBAAoB,CAACyD,YAAY,CAAC;IAC7D;IAEA,oBACE9H,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAC9H,iBAAA,CAAA+H,gBAAgB,EAAA1H,QAAA,KACXyB,KAAK;MACTkG,QAAQ,EAAEf,MAAM,CAACgB,EAAG;MACpBtF,GAAG,EAAE,IAAI,CAACA,GAAI;MACd2E,KAAK,EAAEA,KAAM;MACbI,MAAM,EAAEA,MAAO;MACfC,MAAM,EAAEA,MAAO;MACfO,UAAU,EAAEpG,KAAK,CAACoG,UAAU,IAAIV,gBAAiB;MACjDzF,WAAW,EAAE,IAAI,CAACA,WAAY;MAC9BC,mBAAmB,EAAEkF,cAAc,GAAG,IAAI,CAAClF,mBAAmB,GAAGN,SAAU;MAC3EO,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCS,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCR,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1B6F,sBAAsB,EAAEP,iBAAkB;MAC1CQ,oBAAoB,EAAEP,eAAgB;MACtCtF,0BAA0B,EAAE,IAAI,CAACA,0BAA2B;MAC5DC,2BAA2B,EAAE,IAAI,CAACA,2BAA4B;MAC9DC,OAAO,EAAE,IAAI,CAACA,OAAQ;MACtB4F,kBAAkB,EAAEhC,WAAY;MAChCiC,oBAAoB,EAAEpH,cAAc,IAAI,IAAK;MAC7CqH,uBAAuB,EAAEzG,KAAK,CAACyG,uBAAuB,IAAIlB,6BAA8B;MACxFmB,OAAO,EAAEjB,mBAAmB,GAAG,KAAK,GAAIzF,KAAK,CAAC0G,OAAO,IAAI;IAAM,IAC9DjB,mBAAmB,iBAClBjI,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAChI,iBAAA,CAAA2I,gBAAgB;MACfC,KAAK,EAAEC,MAAM,CAACC,iBAAkB;MAChCC,iBAAiB,EAAE3H,cAAc,CAAC2H,iBAAkB;MACpDC,UAAU,EAAEhH,KAAK,CAACgH;IAAW,CAC9B,CACF,EACA5B,cAAc,iBACb5H,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAC/H,SAAA,CAAAgJ,QAAQ;MAACL,KAAK,EAAEC,MAAM,CAACK,QAAS;MAAChG,iBAAiB,EAAE,IAAI,CAACF,KAAK,CAACE,iBAAkB;MAACiG,YAAY,EAAEnH,KAAK,CAACoH,MAAM,EAAEvB,MAAM,IAAI;IAAG,CAAE,CAEhH,CAAC;EAEvB;AACF;AACA;AAAAwB,OAAA,CAAA/H,MAAA,GAAAA,MAAA;AAEA,MAAMuH,MAAM,GAAGS,uBAAU,CAACC,MAAM,CAAC;EAC/BT,iBAAiB,EAAE;IACjBU,IAAI,EAAE;EACR,CAAC;EACDN,QAAQ,EAAE;IACRO,SAAS,EAAE,CAAC;IACZ9B,QAAQ,EAAE,UAAU;IACpB+B,IAAI,EAAE,EAAE;IACRC,GAAG,EAAE;EACP;AACF,CAAC,CAAC","ignoreList":[]} -+{ -+ "version": 3, -+ "names": [ -+ "_react", -+ "_interopRequireDefault", -+ "require", -+ "_reactNative", -+ "_CameraError", -+ "_NativeCameraModule", -+ "_VisionCameraProxy", -+ "_CameraDevices", -+ "_SkiaCameraCanvas", -+ "_FpsGraph", -+ "_NativeCameraView", -+ "_RotationHelper", -+ "e", -+ "__esModule", -+ "default", -+ "_extends", -+ "Object", -+ "assign", -+ "bind", -+ "n", -+ "arguments", -+ "length", -+ "t", -+ "r", -+ "hasOwnProperty", -+ "call", -+ "apply", -+ "isSkiaFrameProcessor", -+ "frameProcessor", -+ "type", -+ "Camera", -+ "React", -+ "PureComponent", -+ "displayName", -+ "isNativeViewMounted", -+ "lastUIRotation", -+ "undefined", -+ "rotationHelper", -+ "RotationHelper", -+ "constructor", -+ "props", -+ "onViewReady", -+ "onAverageFpsChanged", -+ "onInitialized", -+ "onStarted", -+ "onStopped", -+ "onPreviewStarted", -+ "onPreviewStopped", -+ "onShutter", -+ "onOutputOrientationChanged", -+ "onPreviewOrientationChanged", -+ "onError", -+ "onCodeScanned", -+ "ref", -+ "createRef", -+ "lastFrameProcessor", -+ "state", -+ "isRecordingWithFlash", -+ "averageFpsSamples", -+ "handle", -+ "nodeHandle", -+ "findNodeHandle", -+ "current", -+ "CameraRuntimeError", -+ "takePhoto", -+ "options", -+ "CameraModule", -+ "tryParseNativeCameraError", -+ "takeSnapshot", -+ "getBitRateMultiplier", -+ "bitRate", -+ "startRecording", -+ "onRecordingError", -+ "onRecordingFinished", -+ "passThruOptions", -+ "flash", -+ "setState", -+ "onRecordCallback", -+ "video", -+ "error", -+ "nativeRecordVideoOptions", -+ "pauseRecording", -+ "resumeRecording", -+ "stopRecording", -+ "cancelRecording", -+ "focus", -+ "point", -+ "getAvailableCameraDevices", -+ "CameraDevices", -+ "addCameraDevicesChangedListener", -+ "listener", -+ "getCameraPermissionStatus", -+ "getMicrophonePermissionStatus", -+ "getLocationPermissionStatus", -+ "requestCameraPermission", -+ "requestMicrophonePermission", -+ "requestLocationPermission", -+ "event", -+ "nativeEvent", -+ "cause", -+ "isErrorWithCause", -+ "cameraError", -+ "code", -+ "message", -+ "console", -+ "outputOrientation", -+ "maybeUpdateUIRotation", -+ "previewOrientation", -+ "value", -+ "uiRotation", -+ "onUIRotationChanged", -+ "codeScanner", -+ "codes", -+ "frame", -+ "setFrameProcessor", -+ "VisionCameraProxy", -+ "unsetFrameProcessor", -+ "removeFrameProcessor", -+ "averageFps", -+ "MAX_BARS", -+ "shift", -+ "componentDidUpdate", -+ "render", -+ "device", -+ "enableFpsGraph", -+ "fps", -+ "videoBitRate", -+ "shouldEnableBufferCompression", -+ "torch", -+ "isRenderingWithSkia", -+ "shouldBeMirrored", -+ "position", -+ "minFps", -+ "maxFps", -+ "bitRateMultiplier", -+ "bitRateOverride", -+ "createElement", -+ "NativeCameraView", -+ "cameraId", -+ "id", -+ "isMirrored", -+ "videoBitRateMultiplier", -+ "videoBitRateOverride", -+ "codeScannerOptions", -+ "enableFrameProcessor", -+ "enableBufferCompression", -+ "preview", -+ "SkiaCameraCanvas", -+ "style", -+ "styles", -+ "customPreviewView", -+ "offscreenTextures", -+ "resizeMode", -+ "FpsGraph", -+ "fpsGraph", -+ "targetMaxFps", -+ "format", -+ "exports", -+ "StyleSheet", -+ "create", -+ "flex", -+ "elevation", -+ "left", -+ "top" -+ ], -+ "sourceRoot": "../../src", -+ "sources": [ -+ "Camera.tsx" -+ ], -+ "mappings": ";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAGA,IAAAE,YAAA,GAAAF,OAAA;AAEA,IAAAG,mBAAA,GAAAH,OAAA;AAIA,IAAAI,kBAAA,GAAAJ,OAAA;AACA,IAAAK,cAAA,GAAAL,OAAA;AAGA,IAAAM,iBAAA,GAAAN,OAAA;AAEA,IAAAO,SAAA,GAAAP,OAAA;AASA,IAAAQ,iBAAA,GAAAR,OAAA;AACA,IAAAS,eAAA,GAAAT,OAAA;AAAiD,SAAAD,uBAAAW,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,SAAA,WAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,CAAA,aAAAP,CAAA,MAAAA,CAAA,GAAAQ,SAAA,CAAAC,MAAA,EAAAT,CAAA,UAAAU,CAAA,GAAAF,SAAA,CAAAR,CAAA,YAAAW,CAAA,IAAAD,CAAA,OAAAE,cAAA,CAAAC,IAAA,CAAAH,CAAA,EAAAC,CAAA,MAAAJ,CAAA,CAAAI,CAAA,IAAAD,CAAA,CAAAC,CAAA,aAAAJ,CAAA,KAAAJ,QAAA,CAAAW,KAAA,OAAAN,SAAA;AAEjD;;AAUA;;AAEA,SAASO,oBAAoBA,CAACC,cAAgE,EAA4C;EACxI,OAAOA,cAAc,EAAEC,IAAI,KAAK,eAAe;AACjD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAMC,MAAM,SAASC,cAAK,CAACC,aAAa,CAA2B;EACxE;EACA,OAAOC,WAAW,GAAG,QAAQ;EAC7B;EACAA,WAAW,GAAGH,MAAM,CAACG,WAAW;EAExBC,mBAAmB,GAAG,KAAK;EAC3BC,cAAc,GAAuBC,SAAS;EAC9CC,cAAc,GAAG,IAAIC,8BAAc,CAAC,CAAC;EAI7C;EACAC,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,CAAC;IACZ,IAAI,CAACC,WAAW,GAAG,IAAI,CAACA,WAAW,CAACvB,IAAI,CAAC,IAAI,CAAC;IAC9C,IAAI,CAACwB,mBAAmB,GAAG,IAAI,CAACA,mBAAmB,CAACxB,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,CAACyB,aAAa,GAAG,IAAI,CAACA,aAAa,CAACzB,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAAC0B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC1B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC2B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC3B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC4B,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAAC5B,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAAC6B,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAAC7B,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAAC8B,SAAS,GAAG,IAAI,CAACA,SAAS,CAAC9B,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAAC+B,0BAA0B,GAAG,IAAI,CAACA,0BAA0B,CAAC/B,IAAI,CAAC,IAAI,CAAC;IAC5E,IAAI,CAACgC,2BAA2B,GAAG,IAAI,CAACA,2BAA2B,CAAChC,IAAI,CAAC,IAAI,CAAC;IAC9E,IAAI,CAACiC,OAAO,GAAG,IAAI,CAACA,OAAO,CAACjC,IAAI,CAAC,IAAI,CAAC;IACtC,IAAI,CAACkC,aAAa,GAAG,IAAI,CAACA,aAAa,CAAClC,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACmC,GAAG,gBAAGtB,cAAK,CAACuB,SAAS,CAAU,CAAC;IACrC,IAAI,CAACC,kBAAkB,GAAGnB,SAAS;IACnC,IAAI,CAACoB,KAAK,GAAG;MACXC,oBAAoB,EAAE,KAAK;MAC3BC,iBAAiB,EAAE;IACrB,CAAC;EACH;EAEA,IAAYC,MAAMA,CAAA,EAAW;IAC3B,MAAMC,UAAU,GAAG,IAAAC,2BAAc,EAAC,IAAI,CAACR,GAAG,CAACS,OAAO,CAAC;IACnD,IAAIF,UAAU,IAAI,IAAI,IAAIA,UAAU,KAAK,CAAC,CAAC,EAAE;MAC3C,MAAM,IAAIG,+BAAkB,CAC1B,uBAAuB,EACvB,iGACF,CAAC;IACH;IAEA,OAAOH,UAAU;EACnB;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaI,SAASA,CAACC,OAA0B,EAAsB;IACrE,IAAI;MACF,OAAO,MAAMC,gCAAY,CAACF,SAAS,CAAC,IAAI,CAACL,MAAM,EAAEM,OAAO,IAAI,CAAC,CAAC,CAAC;IACjE,CAAC,CAAC,OAAOrD,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAawD,YAAYA,CAACH,OAA6B,EAAsB;IAC3E,IAAI;MACF,OAAO,MAAMC,gCAAY,CAACE,YAAY,CAAC,IAAI,CAACT,MAAM,EAAEM,OAAO,IAAI,CAAC,CAAC,CAAC;IACpE,CAAC,CAAC,OAAOrD,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EAEQyD,oBAAoBA,CAACC,OAAoC,EAAU;IACzE,IAAI,OAAOA,OAAO,KAAK,QAAQ,IAAIA,OAAO,IAAI,IAAI,EAAE,OAAO,CAAC;IAC5D,QAAQA,OAAO;MACb,KAAK,WAAW;QACd,OAAO,GAAG;MACZ,KAAK,KAAK;QACR,OAAO,GAAG;MACZ,KAAK,QAAQ;QACX,OAAO,CAAC;MACV,KAAK,MAAM;QACT,OAAO,GAAG;MACZ,KAAK,YAAY;QACf,OAAO,GAAG;IACd;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,cAAcA,CAACN,OAA2B,EAAQ;IACvD,MAAM;MAAEO,gBAAgB;MAAEC,mBAAmB;MAAE,GAAGC;IAAgB,CAAC,GAAGT,OAAO;IAC7E,IAAI,OAAOO,gBAAgB,KAAK,UAAU,IAAI,OAAOC,mBAAmB,KAAK,UAAU,EACrF,MAAM,IAAIV,+BAAkB,CAAC,6BAA6B,EAAE,qEAAqE,CAAC;IAEpI,IAAIE,OAAO,CAACU,KAAK,KAAK,IAAI,EAAE;MAC1B;MACA,IAAI,CAACC,QAAQ,CAAC;QACZnB,oBAAoB,EAAE;MACxB,CAAC,CAAC;IACJ;IAEA,MAAMoB,gBAAgB,GAAGA,CAACC,KAAiB,EAAEC,KAA0B,KAAW;MAChF,IAAI,IAAI,CAACvB,KAAK,CAACC,oBAAoB,EAAE;QACnC;QACA,IAAI,CAACmB,QAAQ,CAAC;UACZnB,oBAAoB,EAAE;QACxB,CAAC,CAAC;MACJ;MAEA,IAAIsB,KAAK,IAAI,IAAI,EAAE,OAAOP,gBAAgB,CAACO,KAAK,CAAC;MACjD,IAAID,KAAK,IAAI,IAAI,EAAE,OAAOL,mBAAmB,CAACK,KAAK,CAAC;IACtD,CAAC;IAED,MAAME,wBAAkD,GAAGN,eAAe;IAC1E,IAAI;MACF;MACAR,gCAAY,CAACK,cAAc,CAAC,IAAI,CAACZ,MAAM,EAAEqB,wBAAwB,EAAEH,gBAAgB,CAAC;IACtF,CAAC,CAAC,OAAOjE,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaqE,cAAcA,CAAA,EAAkB;IAC3C,IAAI;MACF,OAAO,MAAMf,gCAAY,CAACe,cAAc,CAAC,IAAI,CAACtB,MAAM,CAAC;IACvD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAasE,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAMhB,gCAAY,CAACgB,eAAe,CAAC,IAAI,CAACvB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAauE,aAAaA,CAAA,EAAkB;IAC1C,IAAI;MACF,OAAO,MAAMjB,gCAAY,CAACiB,aAAa,CAAC,IAAI,CAACxB,MAAM,CAAC;IACtD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAawE,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAMlB,gCAAY,CAACkB,eAAe,CAAC,IAAI,CAACzB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAO/C,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAayE,KAAKA,CAACC,KAAY,EAAiB;IAC9C,IAAI;MACF,OAAO,MAAMpB,gCAAY,CAACmB,KAAK,CAAC,IAAI,CAAC1B,MAAM,EAAE2B,KAAK,CAAC;IACrD,CAAC,CAAC,OAAO1E,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAc2E,yBAAyBA,CAAA,EAAmB;IACxD,OAAOC,4BAAa,CAACD,yBAAyB,CAAC,CAAC;EAClD;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcE,+BAA+BA,CAACC,QAA8C,EAAuB;IACjH,OAAOF,4BAAa,CAACC,+BAA+B,CAACC,QAAQ,CAAC;EAChE;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,yBAAyBA,CAAA,EAA2B;IAChE,OAAOzB,gCAAY,CAACyB,yBAAyB,CAAC,CAAC;EACjD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,6BAA6BA,CAAA,EAA2B;IACpE,OAAO1B,gCAAY,CAAC0B,6BAA6B,CAAC,CAAC;EACrD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,2BAA2BA,CAAA,EAA2B;IAClE,OAAO3B,gCAAY,CAAC2B,2BAA2B,CAAC,CAAC;EACnD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBC,uBAAuBA,CAAA,EAA2C;IACpF,IAAI;MACF,OAAO,MAAM5B,gCAAY,CAAC4B,uBAAuB,CAAC,CAAC;IACrD,CAAC,CAAC,OAAOlF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBmF,2BAA2BA,CAAA,EAA2C;IACxF,IAAI;MACF,OAAO,MAAM7B,gCAAY,CAAC6B,2BAA2B,CAAC,CAAC;IACzD,CAAC,CAAC,OAAOnF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBoF,yBAAyBA,CAAA,EAA2C;IACtF,IAAI;MACF,OAAO,MAAM9B,gCAAY,CAAC8B,yBAAyB,CAAC,CAAC;IACvD,CAAC,CAAC,OAAOpF,CAAC,EAAE;MACV,MAAM,IAAAuD,sCAAyB,EAACvD,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACQuC,OAAOA,CAAC8C,KAAyC,EAAQ;IAC/D,MAAMlB,KAAK,GAAGkB,KAAK,CAACC,WAAW;IAC/B,MAAMC,KAAK,GAAG,IAAAC,6BAAgB,EAACrB,KAAK,CAACoB,KAAK,CAAC,GAAGpB,KAAK,CAACoB,KAAK,GAAG/D,SAAS;IACrE;IACA,MAAMiE,WAAW,GAAG,IAAItC,+BAAkB,CAACgB,KAAK,CAACuB,IAAI,EAAEvB,KAAK,CAACwB,OAAO,EAAEJ,KAAK,CAAC;IAE5E,IAAI,IAAI,CAAC3D,KAAK,CAACW,OAAO,IAAI,IAAI,EAAE;MAC9B,IAAI,CAACX,KAAK,CAACW,OAAO,CAACkD,WAAW,CAAC;IACjC,CAAC,MAAM;MACL;MACAG,OAAO,CAACzB,KAAK,CAACsB,WAAW,CAAC;IAC5B;EACF;EAEQ1D,aAAaA,CAAA,EAAS;IAC5B,IAAI,CAACH,KAAK,CAACG,aAAa,GAAG,CAAC;EAC9B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACJ,KAAK,CAACI,SAAS,GAAG,CAAC;EAC1B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACL,KAAK,CAACK,SAAS,GAAG,CAAC;EAC1B;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACN,KAAK,CAACM,gBAAgB,GAAG,CAAC;EACjC;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACP,KAAK,CAACO,gBAAgB,GAAG,CAAC;EACjC;EAEQC,SAASA,CAACiD,KAA2C,EAAQ;IACnE,IAAI,CAACzD,KAAK,CAACQ,SAAS,GAAGiD,KAAK,CAACC,WAAW,CAAC;EAC3C;EAEQjD,0BAA0BA,CAAC;IAAEiD,WAAW,EAAE;MAAEO;IAAkB;EAAuD,CAAC,EAAQ;IACpI,IAAI,CAACpE,cAAc,CAACoE,iBAAiB,GAAGA,iBAAiB;IACzD,IAAI,CAACjE,KAAK,CAACS,0BAA0B,GAAGwD,iBAAiB,CAAC;IAC1D,IAAI,CAACC,qBAAqB,CAAC,CAAC;EAC9B;EAEQxD,2BAA2BA,CAAC;IAAEgD,WAAW,EAAE;MAAES;IAAmB;EAAwD,CAAC,EAAQ;IACvI,IAAI,CAACtE,cAAc,CAACsE,kBAAkB,GAAGA,kBAAkB;IAC3D,IAAI,CAACnE,KAAK,CAACU,2BAA2B,GAAGyD,kBAAkB,CAAC;IAC5D,IAAI,CAACD,qBAAqB,CAAC,CAAC;IAE5B,IAAI/E,oBAAoB,CAAC,IAAI,CAACa,KAAK,CAACZ,cAAc,CAAC,EAAE;MACnD;MACA,IAAI,CAACY,KAAK,CAACZ,cAAc,CAAC+E,kBAAkB,CAACC,KAAK,GAAGD,kBAAkB;IACzE;EACF;EAEQD,qBAAqBA,CAAA,EAAS;IACpC,MAAMG,UAAU,GAAG,IAAI,CAACxE,cAAc,CAACwE,UAAU;IACjD,IAAIA,UAAU,KAAK,IAAI,CAAC1E,cAAc,EAAE;MACtC,IAAI,CAACK,KAAK,CAACsE,mBAAmB,GAAGD,UAAU,CAAC;MAC5C,IAAI,CAAC1E,cAAc,GAAG0E,UAAU;IAClC;EACF;EACA;;EAEQzD,aAAaA,CAAC6C,KAA+C,EAAQ;IAC3E,MAAMc,WAAW,GAAG,IAAI,CAACvE,KAAK,CAACuE,WAAW;IAC1C,IAAIA,WAAW,IAAI,IAAI,EAAE;IAEzBA,WAAW,CAAC3D,aAAa,CAAC6C,KAAK,CAACC,WAAW,CAACc,KAAK,EAAEf,KAAK,CAACC,WAAW,CAACe,KAAK,CAAC;EAC7E;;EAEA;EACQC,iBAAiBA,CAACtF,cAAsC,EAAQ;IACtEuF,oCAAiB,CAACD,iBAAiB,CAAC,IAAI,CAACvD,MAAM,EAAE/B,cAAc,CAAC;EAClE;EAEQwF,mBAAmBA,CAAA,EAAS;IAClCD,oCAAiB,CAACE,oBAAoB,CAAC,IAAI,CAAC1D,MAAM,CAAC;EACrD;EAEQlB,WAAWA,CAAA,EAAS;IAC1B,IAAI,CAACP,mBAAmB,GAAG,IAAI;IAC/B,IAAI,IAAI,CAACM,KAAK,CAACZ,cAAc,IAAI,IAAI,EAAE;MACrC;MACA,IAAI,CAACsF,iBAAiB,CAAC,IAAI,CAAC1E,KAAK,CAACZ,cAAc,CAACA,cAAc,CAAC;MAChE,IAAI,CAAC2B,kBAAkB,GAAG,IAAI,CAACf,KAAK,CAACZ,cAAc,CAACA,cAAc;IACpE;EACF;EAEQc,mBAAmBA,CAAC;IAAEwD,WAAW,EAAE;MAAEoB;IAAW;EAAgD,CAAC,EAAQ;IAC/G,IAAI,CAAC1C,QAAQ,CAAEpB,KAAK,IAAK;MACvB,MAAME,iBAAiB,GAAG,CAAC,GAAGF,KAAK,CAACE,iBAAiB,EAAE4D,UAAU,CAAC;MAClE,OAAO5D,iBAAiB,CAACrC,MAAM,IAAIkG,kBAAQ,GAAG,CAAC,EAAE;QAC/C;QACA7D,iBAAiB,CAAC8D,KAAK,CAAC,CAAC;MAC3B;MAEA,OAAO;QACL,GAAGhE,KAAK;QACRE,iBAAiB,EAAEA;MACrB,CAAC;IACH,CAAC,CAAC;EACJ;;EAEA;EACA+D,kBAAkBA,CAAA,EAAS;IACzB,IAAI,CAAC,IAAI,CAACvF,mBAAmB,EAAE;IAC/B,MAAMN,cAAc,GAAG,IAAI,CAACY,KAAK,CAACZ,cAAc;IAChD,IAAIA,cAAc,EAAEA,cAAc,KAAK,IAAI,CAAC2B,kBAAkB,EAAE;MAC9D;MACA,IAAI3B,cAAc,IAAI,IAAI,EAAE,IAAI,CAACsF,iBAAiB,CAACtF,cAAc,CAACA,cAAc,CAAC,MAC5E,IAAI,CAACwF,mBAAmB,CAAC,CAAC;MAE/B,IAAI,CAAC7D,kBAAkB,GAAG3B,cAAc,EAAEA,cAAc;IAC1D;EACF;EACA;;EAEA;EACO8F,MAAMA,CAAA,EAAoB;IAC/B;IACA,MAAM;MAAEC,MAAM;MAAE/F,cAAc;MAAEmF,WAAW;MAAEa,cAAc;MAAEC,GAAG;MAAEC,YAAY;MAAE,GAAGtF;IAAM,CAAC,GAAG,IAAI,CAACA,KAAK;;IAEvG;IACA,IAAImF,MAAM,IAAI,IAAI,EAAE;MAClB,MAAM,IAAI5D,+BAAkB,CAC1B,kBAAkB,EAClB,kIACF,CAAC;IACH;IAEA,MAAMgE,6BAA6B,GAAGvF,KAAK,CAACsC,KAAK,KAAK,IAAI,IAAIlD,cAAc,IAAI,IAAI;IACpF,MAAMoG,KAAK,GAAG,IAAI,CAACxE,KAAK,CAACC,oBAAoB,GAAG,IAAI,GAAGjB,KAAK,CAACwF,KAAK;IAClE,MAAMC,mBAAmB,GAAGtG,oBAAoB,CAACC,cAAc,CAAC;IAChE,MAAMsG,gBAAgB,GAAGP,MAAM,CAACQ,QAAQ,KAAK,OAAO;;IAEpD;IACA,MAAMC,MAAM,GAAGP,GAAG,IAAI,IAAI,GAAGzF,SAAS,GAAG,OAAOyF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;IAC/E,MAAMQ,MAAM,GAAGR,GAAG,IAAI,IAAI,GAAGzF,SAAS,GAAG,OAAOyF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;;IAE/E;IACA,IAAIS,iBAAqC;IACzC,IAAIC,eAAmC;IACvC,IAAI,OAAOT,YAAY,KAAK,QAAQ,EAAE;MACpC;MACAS,eAAe,GAAGT,YAAY;IAChC,CAAC,MAAM,IAAI,OAAOA,YAAY,KAAK,QAAQ,IAAIA,YAAY,KAAK,QAAQ,EAAE;MACxE;MACAQ,iBAAiB,GAAG,IAAI,CAACjE,oBAAoB,CAACyD,YAAY,CAAC;IAC7D;IAEA,oBACE9H,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAC9H,iBAAA,CAAA+H,gBAAgB,EAAA1H,QAAA,KACXyB,KAAK;MACTkG,QAAQ,EAAEf,MAAM,CAACgB,EAAG;MACpBtF,GAAG,EAAE,IAAI,CAACA,GAAI;MACd2E,KAAK,EAAEA,KAAM;MACbI,MAAM,EAAEA,MAAO;MACfC,MAAM,EAAEA,MAAO;MACfO,UAAU,EAAEpG,KAAK,CAACoG,UAAU,IAAIV,gBAAiB;MACjDzF,WAAW,EAAE,IAAI,CAACA,WAAY;MAC9BC,mBAAmB,EAAEkF,cAAc,GAAG,IAAI,CAAClF,mBAAmB,GAAGN,SAAU;MAC3EO,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCS,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCR,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1B6F,sBAAsB,EAAEP,iBAAkB;MAC1CQ,oBAAoB,EAAEP,eAAgB;MACtCtF,0BAA0B,EAAE,IAAI,CAACA,0BAA2B;MAC5DC,2BAA2B,EAAE,IAAI,CAACA,2BAA4B;MAC9DC,OAAO,EAAE,IAAI,CAACA,OAAQ;MACtB4F,kBAAkB,EAAEhC,WAAY;MAChCiC,oBAAoB,EAAEpH,cAAc,IAAI,IAAK;MAC7CqH,uBAAuB,EAAEzG,KAAK,CAACyG,uBAAuB,IAAIlB,6BAA8B;MACxFmB,OAAO,EAAEjB,mBAAmB,GAAG,KAAK,GAAIzF,KAAK,CAAC0G,OAAO,IAAI;IAAM,IAC9DjB,mBAAmB,iBAClBjI,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAChI,iBAAA,CAAA2I,gBAAgB;MACfC,KAAK,EAAEC,MAAM,CAACC,iBAAkB;MAChCC,iBAAiB,EAAE3H,cAAc,CAAC2H,iBAAkB;MACpDC,UAAU,EAAEhH,KAAK,CAACgH;IAAW,CAC9B,CACF,EACA5B,cAAc,iBACb5H,MAAA,CAAAc,OAAA,CAAA0H,aAAA,CAAC/H,SAAA,CAAAgJ,QAAQ;MAACL,KAAK,EAAEC,MAAM,CAACK,QAAS;MAAChG,iBAAiB,EAAE,IAAI,CAACF,KAAK,CAACE,iBAAkB;MAACiG,YAAY,EAAEnH,KAAK,CAACoH,MAAM,EAAEvB,MAAM,IAAI;IAAG,CAAE,CAEhH,CAAC;EAEvB;AACF;AACA;AAAAwB,OAAA,CAAA/H,MAAA,GAAAA,MAAA;AAEA,MAAMuH,MAAM,GAAGS,uBAAU,CAACC,MAAM,CAAC;EAC/BT,iBAAiB,EAAE;IACjBU,IAAI,EAAE;EACR,CAAC;EACDN,QAAQ,EAAE;IACRO,SAAS,EAAE,CAAC;IACZ9B,QAAQ,EAAE,UAAU;IACpB+B,IAAI,EAAE,EAAE;IACRC,GAAG,EAAE;EACP;AACF,CAAC,CAAC", -+ "ignoreList": [] -+} -diff --git a/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js b/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js -new file mode 100644 -index 0000000..9e627bc ---- /dev/null -+++ b/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js -@@ -0,0 +1,13 @@ -+'use strict'; -+ -+Object.defineProperty(exports, '__esModule', { -+ value: true, -+}); -+exports.default = void 0; -+var _codegenNativeComponent = _interopRequireDefault(require('react-native/Libraries/Utilities/codegenNativeComponent')); -+function _interopRequireDefault(obj) { -+ return obj && obj.__esModule ? obj : {default: obj}; -+} -+/* eslint-disable @typescript-eslint/ban-types */ -+var _default = (exports.default = (0, _codegenNativeComponent.default)('CameraView')); -+//# sourceMappingURL=CameraViewNativeComponent.js.map -diff --git a/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js.map b/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js.map -new file mode 100644 -index 0000000..f3c7b03 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/lib/commonjs/specs/CameraViewNativeComponent.js.map -@@ -0,0 +1,19 @@ -+{ -+ "version": 3, -+ "names": [ -+ "_codegenNativeComponent", -+ "_interopRequireDefault", -+ "require", -+ "obj", -+ "__esModule", -+ "default", -+ "_default", -+ "exports", -+ "codegenNativeComponent" -+ ], -+ "sourceRoot": "../../../src", -+ "sources": [ -+ "specs/CameraViewNativeComponent.ts" -+ ], -+ "mappings": ";;;;;;AAGA,IAAAA,uBAAA,GAAAC,sBAAA,CAAAC,OAAA;AAA6F,SAAAD,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAH7F;AAAA,IAAAG,QAAA,GAAAC,OAAA,CAAAF,OAAA,GA0Fe,IAAAG,+BAAsB,EAAc,YAAY,CAAC" -+} -diff --git a/node_modules/react-native-vision-camera/lib/module/Camera.js b/node_modules/react-native-vision-camera/lib/module/Camera.js -index e97f27c..95a2328 100644 ---- a/node_modules/react-native-vision-camera/lib/module/Camera.js -+++ b/node_modules/react-native-vision-camera/lib/module/Camera.js -@@ -1,21 +1,35 @@ --function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } - import React from 'react'; --import { findNodeHandle, StyleSheet } from 'react-native'; --import { CameraRuntimeError, tryParseNativeCameraError, isErrorWithCause } from './CameraError'; --import { CameraModule } from './NativeCameraModule'; --import { VisionCameraProxy } from './frame-processors/VisionCameraProxy'; --import { CameraDevices } from './CameraDevices'; --import { SkiaCameraCanvas } from './skia/SkiaCameraCanvas'; --import { FpsGraph, MAX_BARS } from './FpsGraph'; --import { NativeCameraView } from './NativeCameraView'; --import { RotationHelper } from './RotationHelper'; -+import {findNodeHandle, StyleSheet} from 'react-native'; -+import {CameraDevices} from './CameraDevices'; -+import {CameraRuntimeError, isErrorWithCause, tryParseNativeCameraError} from './CameraError'; -+import {FpsGraph, MAX_BARS} from './FpsGraph'; -+import {VisionCameraProxy} from './frame-processors/VisionCameraProxy'; -+import {CameraModule} from './NativeCameraModule'; -+import {NativeCameraView} from './NativeCameraView'; -+import {RotationHelper} from './RotationHelper'; -+import {SkiaCameraCanvas} from './skia/SkiaCameraCanvas'; -+ -+function _extends() { -+ return ( -+ (_extends = Object.assign -+ ? Object.assign.bind() -+ : function (n) { -+ for (var e = 1; e < arguments.length; e++) { -+ var t = arguments[e]; -+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); -+ } -+ return n; -+ }), -+ _extends.apply(null, arguments) -+ ); -+} - - //#region Types - - //#endregion - - function isSkiaFrameProcessor(frameProcessor) { -- return frameProcessor?.type === 'drawable-skia'; -+ return frameProcessor?.type === 'drawable-skia'; - } - - //#region Camera Component -@@ -52,609 +66,597 @@ function isSkiaFrameProcessor(frameProcessor) { - * @component - */ - export class Camera extends React.PureComponent { -- /** @internal */ -- static displayName = 'Camera'; -- /** @internal */ -- displayName = Camera.displayName; -- isNativeViewMounted = false; -- lastUIRotation = undefined; -- rotationHelper = new RotationHelper(); -- /** @internal */ -- constructor(props) { -- super(props); -- this.onViewReady = this.onViewReady.bind(this); -- this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); -- this.onInitialized = this.onInitialized.bind(this); -- this.onStarted = this.onStarted.bind(this); -- this.onStopped = this.onStopped.bind(this); -- this.onPreviewStarted = this.onPreviewStarted.bind(this); -- this.onPreviewStopped = this.onPreviewStopped.bind(this); -- this.onShutter = this.onShutter.bind(this); -- this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); -- this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); -- this.onError = this.onError.bind(this); -- this.onCodeScanned = this.onCodeScanned.bind(this); -- this.ref = /*#__PURE__*/React.createRef(); -- this.lastFrameProcessor = undefined; -- this.state = { -- isRecordingWithFlash: false, -- averageFpsSamples: [] -- }; -- } -- get handle() { -- const nodeHandle = findNodeHandle(this.ref.current); -- if (nodeHandle == null || nodeHandle === -1) { -- throw new CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); -- } -- return nodeHandle; -- } -+ /** @internal */ -+ static displayName = 'Camera'; -+ /** @internal */ -+ displayName = Camera.displayName; -+ isNativeViewMounted = false; -+ lastUIRotation = undefined; -+ rotationHelper = new RotationHelper(); -+ /** @internal */ -+ constructor(props) { -+ super(props); -+ this.onViewReady = this.onViewReady.bind(this); -+ this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); -+ this.onInitialized = this.onInitialized.bind(this); -+ this.onStarted = this.onStarted.bind(this); -+ this.onStopped = this.onStopped.bind(this); -+ this.onPreviewStarted = this.onPreviewStarted.bind(this); -+ this.onPreviewStopped = this.onPreviewStopped.bind(this); -+ this.onShutter = this.onShutter.bind(this); -+ this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); -+ this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); -+ this.onError = this.onError.bind(this); -+ this.onCodeScanned = this.onCodeScanned.bind(this); -+ this.ref = /*#__PURE__*/ React.createRef(); -+ this.lastFrameProcessor = undefined; -+ this.state = { -+ isRecordingWithFlash: false, -+ averageFpsSamples: [], -+ }; -+ } -+ get handle() { -+ const nodeHandle = findNodeHandle(this.ref.current); -+ if (nodeHandle == null || nodeHandle === -1) { -+ throw new CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); -+ } -+ return nodeHandle; -+ } - -- //#region View-specific functions (UIViewManager) -- /** -- * Take a single photo and write it's content to a temporary file. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * @example -- * ```ts -- * const photo = await camera.current.takePhoto({ -- * flash: 'on', -- * enableAutoRedEyeReduction: true -- * }) -- * ``` -- */ -- async takePhoto(options) { -- try { -- return await CameraModule.takePhoto(this.handle, options ?? {}); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -+ //#region View-specific functions (UIViewManager) -+ /** -+ * Take a single photo and write it's content to a temporary file. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * const photo = await camera.current.takePhoto({ -+ * flash: 'on', -+ * enableAutoRedEyeReduction: true -+ * }) -+ * ``` -+ */ -+ async takePhoto(options) { -+ try { -+ return await CameraModule.takePhoto(this.handle, options ?? {}); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } - -- /** -- * Captures a snapshot of the Camera view and write it's content to a temporary file. -- * -- * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. -- * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * @example -- * ```ts -- * const snapshot = await camera.current.takeSnapshot({ -- * quality: 100 -- * }) -- * ``` -- */ -- async takeSnapshot(options) { -- try { -- return await CameraModule.takeSnapshot(this.handle, options ?? {}); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -- getBitRateMultiplier(bitRate) { -- if (typeof bitRate === 'number' || bitRate == null) return 1; -- switch (bitRate) { -- case 'extra-low': -- return 0.6; -- case 'low': -- return 0.8; -- case 'normal': -- return 1; -- case 'high': -- return 1.2; -- case 'extra-high': -- return 1.4; -- } -- } -+ /** -+ * Captures a snapshot of the Camera view and write it's content to a temporary file. -+ * -+ * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. -+ * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * const snapshot = await camera.current.takeSnapshot({ -+ * quality: 100 -+ * }) -+ * ``` -+ */ -+ async takeSnapshot(options) { -+ try { -+ return await CameraModule.takeSnapshot(this.handle, options ?? {}); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ getBitRateMultiplier(bitRate) { -+ if (typeof bitRate === 'number' || bitRate == null) return 1; -+ switch (bitRate) { -+ case 'extra-low': -+ return 0.6; -+ case 'low': -+ return 0.8; -+ case 'normal': -+ return 1; -+ case 'high': -+ return 1.2; -+ case 'extra-high': -+ return 1.4; -+ } -+ } - -- /** -- * Start a new video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * setTimeout(() => { -- * camera.current.stopRecording() -- * }, 5000) -- * ``` -- */ -- startRecording(options) { -- const { -- onRecordingError, -- onRecordingFinished, -- ...passThruOptions -- } = options; -- if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') throw new CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); -- if (options.flash === 'on') { -- // Enable torch for video recording -- this.setState({ -- isRecordingWithFlash: true -- }); -- } -- const onRecordCallback = (video, error) => { -- if (this.state.isRecordingWithFlash) { -- // disable torch again if it was enabled -- this.setState({ -- isRecordingWithFlash: false -- }); -- } -- if (error != null) return onRecordingError(error); -- if (video != null) return onRecordingFinished(video); -- }; -- const nativeRecordVideoOptions = passThruOptions; -- try { -- // TODO: Use TurboModules to make this awaitable. -- CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -+ /** -+ * Start a new video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * setTimeout(() => { -+ * camera.current.stopRecording() -+ * }, 5000) -+ * ``` -+ */ -+ startRecording(options) { -+ const {onRecordingError, onRecordingFinished, ...passThruOptions} = options; -+ if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') -+ throw new CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); -+ if (options.flash === 'on') { -+ // Enable torch for video recording -+ this.setState({ -+ isRecordingWithFlash: true, -+ }); -+ } -+ const onRecordCallback = (video, error) => { -+ if (this.state.isRecordingWithFlash) { -+ // disable torch again if it was enabled -+ this.setState({ -+ isRecordingWithFlash: false, -+ }); -+ } -+ if (error != null) return onRecordingError(error); -+ if (video != null) return onRecordingFinished(video); -+ }; -+ const nativeRecordVideoOptions = passThruOptions; -+ try { -+ // TODO: Use TurboModules to make this awaitable. -+ CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } - -- /** -- * Pauses the current video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * // Start -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * await timeout(1000) -- * // Pause -- * await camera.current.pauseRecording() -- * await timeout(500) -- * // Resume -- * await camera.current.resumeRecording() -- * await timeout(2000) -- * // Stop -- * await camera.current.stopRecording() -- * ``` -- */ -- async pauseRecording() { -- try { -- return await CameraModule.pauseRecording(this.handle); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -+ /** -+ * Pauses the current video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * // Start -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * await timeout(1000) -+ * // Pause -+ * await camera.current.pauseRecording() -+ * await timeout(500) -+ * // Resume -+ * await camera.current.resumeRecording() -+ * await timeout(2000) -+ * // Stop -+ * await camera.current.stopRecording() -+ * ``` -+ */ -+ async pauseRecording() { -+ try { -+ return await CameraModule.pauseRecording(this.handle); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } - -- /** -- * Resumes a currently paused video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * // Start -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * await timeout(1000) -- * // Pause -- * await camera.current.pauseRecording() -- * await timeout(500) -- * // Resume -- * await camera.current.resumeRecording() -- * await timeout(2000) -- * // Stop -- * await camera.current.stopRecording() -- * ``` -- */ -- async resumeRecording() { -- try { -- return await CameraModule.resumeRecording(this.handle); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -+ /** -+ * Resumes a currently paused video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * // Start -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * await timeout(1000) -+ * // Pause -+ * await camera.current.pauseRecording() -+ * await timeout(500) -+ * // Resume -+ * await camera.current.resumeRecording() -+ * await timeout(2000) -+ * // Stop -+ * await camera.current.stopRecording() -+ * ``` -+ */ -+ async resumeRecording() { -+ try { -+ return await CameraModule.resumeRecording(this.handle); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } - -- /** -- * Stop the current video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * setTimeout(async () => { -- * await camera.current.stopRecording() -- * }, 5000) -- * ``` -- */ -- async stopRecording() { -- try { -- return await CameraModule.stopRecording(this.handle); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -+ /** -+ * Stop the current video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * setTimeout(async () => { -+ * await camera.current.stopRecording() -+ * }, 5000) -+ * ``` -+ */ -+ async stopRecording() { -+ try { -+ return await CameraModule.stopRecording(this.handle); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } - -- /** -- * Cancel the current video recording. The temporary video file will be deleted, -- * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => { -- * if (error.code === 'capture/recording-canceled') { -- * // recording was canceled. -- * } else { -- * console.error(error) -- * } -- * }, -- * }) -- * setTimeout(async () => { -- * await camera.current.cancelRecording() -- * }, 5000) -- * ``` -- */ -- async cancelRecording() { -- try { -- return await CameraModule.cancelRecording(this.handle); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -+ /** -+ * Cancel the current video recording. The temporary video file will be deleted, -+ * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => { -+ * if (error.code === 'capture/recording-canceled') { -+ * // recording was canceled. -+ * } else { -+ * console.error(error) -+ * } -+ * }, -+ * }) -+ * setTimeout(async () => { -+ * await camera.current.cancelRecording() -+ * }, 5000) -+ * ``` -+ */ -+ async cancelRecording() { -+ try { -+ return await CameraModule.cancelRecording(this.handle); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } - -- /** -- * Focus the camera to a specific point in the coordinate system. -- * @param {Point} point The point to focus to. This should be relative -- * to the Camera view's coordinate system and is expressed in points. -- * * `(0, 0)` means **top left**. -- * * `(CameraView.width, CameraView.height)` means **bottom right**. -- * -- * Make sure the value doesn't exceed the CameraView's dimensions. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- * @example -- * ```ts -- * await camera.current.focus({ -- * x: tapEvent.x, -- * y: tapEvent.y -- * }) -- * ``` -- */ -- async focus(point) { -- try { -- return await CameraModule.focus(this.handle, point); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -- //#endregion -+ /** -+ * Focus the camera to a specific point in the coordinate system. -+ * @param {Point} point The point to focus to. This should be relative -+ * to the Camera view's coordinate system and is expressed in points. -+ * * `(0, 0)` means **top left**. -+ * * `(CameraView.width, CameraView.height)` means **bottom right**. -+ * -+ * Make sure the value doesn't exceed the CameraView's dimensions. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * await camera.current.focus({ -+ * x: tapEvent.x, -+ * y: tapEvent.y -+ * }) -+ * ``` -+ */ -+ async focus(point) { -+ try { -+ return await CameraModule.focus(this.handle, point); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ //#endregion - -- //#region Static Functions (NativeModule) -- /** -- * Get a list of all available camera devices on the current phone. -- * -- * If you use Hooks, use the `useCameraDevices(..)` hook instead. -- * -- * * For Camera Devices attached to the phone, it is safe to assume that this will never change. -- * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices -- * could change over time when the external Camera device gets plugged in or plugged out, so -- * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. -- * -- * @example -- * ```ts -- * const devices = Camera.getAvailableCameraDevices() -- * const backCameras = devices.filter((d) => d.position === "back") -- * const frontCameras = devices.filter((d) => d.position === "front") -- * ``` -- */ -- static getAvailableCameraDevices() { -- return CameraDevices.getAvailableCameraDevices(); -- } -- /** -- * Adds a listener that gets called everytime the Camera Devices change, for example -- * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. -- * -- * If you use Hooks, use the `useCameraDevices()` hook instead. -- */ -- static addCameraDevicesChangedListener(listener) { -- return CameraDevices.addCameraDevicesChangedListener(listener); -- } -- /** -- * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure -- * the user has permitted the app to use the camera. -- * -- * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. -- */ -- static getCameraPermissionStatus() { -- return CameraModule.getCameraPermissionStatus(); -- } -- /** -- * Gets the current Microphone-Recording Permission Status. -- * Check this before enabling the `audio={...}` property to make sure the -- * user has permitted the app to use the microphone. -- * -- * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. -- */ -- static getMicrophonePermissionStatus() { -- return CameraModule.getMicrophonePermissionStatus(); -- } -- /** -- * Gets the current Location Permission Status. -- * Check this before enabling the `location={...}` property to make sure the -- * the user has permitted the app to use the location. -- * -- * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. -- * -- * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. -- * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. -- */ -- static getLocationPermissionStatus() { -- return CameraModule.getLocationPermissionStatus(); -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new camera permission status. -- * -- * If the user has previously blocked the app from using the camera, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- static async requestCameraPermission() { -- try { -- return await CameraModule.requestCameraPermission(); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. -- * -- * If the user has previously blocked the app from using the microphone, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- static async requestMicrophonePermission() { -- try { -- return await CameraModule.requestMicrophonePermission(); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new location permission status. -- * -- * If the user has previously blocked the app from using the location, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- static async requestLocationPermission() { -- try { -- return await CameraModule.requestLocationPermission(); -- } catch (e) { -- throw tryParseNativeCameraError(e); -- } -- } -- //#endregion -+ //#region Static Functions (NativeModule) -+ /** -+ * Get a list of all available camera devices on the current phone. -+ * -+ * If you use Hooks, use the `useCameraDevices(..)` hook instead. -+ * -+ * * For Camera Devices attached to the phone, it is safe to assume that this will never change. -+ * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices -+ * could change over time when the external Camera device gets plugged in or plugged out, so -+ * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. -+ * -+ * @example -+ * ```ts -+ * const devices = Camera.getAvailableCameraDevices() -+ * const backCameras = devices.filter((d) => d.position === "back") -+ * const frontCameras = devices.filter((d) => d.position === "front") -+ * ``` -+ */ -+ static getAvailableCameraDevices() { -+ return CameraDevices.getAvailableCameraDevices(); -+ } -+ /** -+ * Adds a listener that gets called everytime the Camera Devices change, for example -+ * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. -+ * -+ * If you use Hooks, use the `useCameraDevices()` hook instead. -+ */ -+ static addCameraDevicesChangedListener(listener) { -+ return CameraDevices.addCameraDevicesChangedListener(listener); -+ } -+ /** -+ * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure -+ * the user has permitted the app to use the camera. -+ * -+ * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. -+ */ -+ static getCameraPermissionStatus() { -+ return CameraModule.getCameraPermissionStatus(); -+ } -+ /** -+ * Gets the current Microphone-Recording Permission Status. -+ * Check this before enabling the `audio={...}` property to make sure the -+ * user has permitted the app to use the microphone. -+ * -+ * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. -+ */ -+ static getMicrophonePermissionStatus() { -+ return CameraModule.getMicrophonePermissionStatus(); -+ } -+ /** -+ * Gets the current Location Permission Status. -+ * Check this before enabling the `location={...}` property to make sure the -+ * the user has permitted the app to use the location. -+ * -+ * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. -+ * -+ * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. -+ * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. -+ */ -+ static getLocationPermissionStatus() { -+ return CameraModule.getLocationPermissionStatus(); -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new camera permission status. -+ * -+ * If the user has previously blocked the app from using the camera, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ static async requestCameraPermission() { -+ try { -+ return await CameraModule.requestCameraPermission(); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. -+ * -+ * If the user has previously blocked the app from using the microphone, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ static async requestMicrophonePermission() { -+ try { -+ return await CameraModule.requestMicrophonePermission(); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new location permission status. -+ * -+ * If the user has previously blocked the app from using the location, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ static async requestLocationPermission() { -+ try { -+ return await CameraModule.requestLocationPermission(); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ //#endregion - -- //#region Events (Wrapped to maintain reference equality) -- onError(event) { -- const error = event.nativeEvent; -- const cause = isErrorWithCause(error.cause) ? error.cause : undefined; -- // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work -- const cameraError = new CameraRuntimeError(error.code, error.message, cause); -- if (this.props.onError != null) { -- this.props.onError(cameraError); -- } else { -- // User didn't pass an `onError` handler, so just log it to console -- console.error(cameraError); -- } -- } -- onInitialized() { -- this.props.onInitialized?.(); -- } -- onStarted() { -- this.props.onStarted?.(); -- } -- onStopped() { -- this.props.onStopped?.(); -- } -- onPreviewStarted() { -- this.props.onPreviewStarted?.(); -- } -- onPreviewStopped() { -- this.props.onPreviewStopped?.(); -- } -- onShutter(event) { -- this.props.onShutter?.(event.nativeEvent); -- } -- onOutputOrientationChanged({ -- nativeEvent: { -- outputOrientation -- } -- }) { -- this.rotationHelper.outputOrientation = outputOrientation; -- this.props.onOutputOrientationChanged?.(outputOrientation); -- this.maybeUpdateUIRotation(); -- } -- onPreviewOrientationChanged({ -- nativeEvent: { -- previewOrientation -- } -- }) { -- this.rotationHelper.previewOrientation = previewOrientation; -- this.props.onPreviewOrientationChanged?.(previewOrientation); -- this.maybeUpdateUIRotation(); -- if (isSkiaFrameProcessor(this.props.frameProcessor)) { -- // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. -- this.props.frameProcessor.previewOrientation.value = previewOrientation; -- } -- } -- maybeUpdateUIRotation() { -- const uiRotation = this.rotationHelper.uiRotation; -- if (uiRotation !== this.lastUIRotation) { -- this.props.onUIRotationChanged?.(uiRotation); -- this.lastUIRotation = uiRotation; -- } -- } -- //#endregion -+ //#region Events (Wrapped to maintain reference equality) -+ onError(event) { -+ const error = event.nativeEvent; -+ const cause = isErrorWithCause(error.cause) ? error.cause : undefined; -+ // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work -+ const cameraError = new CameraRuntimeError(error.code, error.message, cause); -+ if (this.props.onError != null) { -+ this.props.onError(cameraError); -+ } else { -+ // User didn't pass an `onError` handler, so just log it to console -+ console.error(cameraError); -+ } -+ } -+ onInitialized() { -+ this.props.onInitialized?.(); -+ } -+ onStarted() { -+ this.props.onStarted?.(); -+ } -+ onStopped() { -+ this.props.onStopped?.(); -+ } -+ onPreviewStarted() { -+ this.props.onPreviewStarted?.(); -+ } -+ onPreviewStopped() { -+ this.props.onPreviewStopped?.(); -+ } -+ onShutter(event) { -+ this.props.onShutter?.(event.nativeEvent); -+ } -+ onOutputOrientationChanged({nativeEvent: {outputOrientation}}) { -+ this.rotationHelper.outputOrientation = outputOrientation; -+ this.props.onOutputOrientationChanged?.(outputOrientation); -+ this.maybeUpdateUIRotation(); -+ } -+ onPreviewOrientationChanged({nativeEvent: {previewOrientation}}) { -+ this.rotationHelper.previewOrientation = previewOrientation; -+ this.props.onPreviewOrientationChanged?.(previewOrientation); -+ this.maybeUpdateUIRotation(); -+ if (isSkiaFrameProcessor(this.props.frameProcessor)) { -+ // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. -+ this.props.frameProcessor.previewOrientation.value = previewOrientation; -+ } -+ } -+ maybeUpdateUIRotation() { -+ const uiRotation = this.rotationHelper.uiRotation; -+ if (uiRotation !== this.lastUIRotation) { -+ this.props.onUIRotationChanged?.(uiRotation); -+ this.lastUIRotation = uiRotation; -+ } -+ } -+ //#endregion - -- onCodeScanned(event) { -- const codeScanner = this.props.codeScanner; -- if (codeScanner == null) return; -- codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); -- } -+ onCodeScanned(event) { -+ const codeScanner = this.props.codeScanner; -+ if (codeScanner == null) return; -+ codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); -+ } - -- //#region Lifecycle -- setFrameProcessor(frameProcessor) { -- VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); -- } -- unsetFrameProcessor() { -- VisionCameraProxy.removeFrameProcessor(this.handle); -- } -- onViewReady() { -- this.isNativeViewMounted = true; -- if (this.props.frameProcessor != null) { -- // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. -- this.setFrameProcessor(this.props.frameProcessor.frameProcessor); -- this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; -- } -- } -- onAverageFpsChanged({ -- nativeEvent: { -- averageFps -- } -- }) { -- this.setState(state => { -- const averageFpsSamples = [...state.averageFpsSamples, averageFps]; -- while (averageFpsSamples.length >= MAX_BARS + 1) { -- // we keep a maximum of 30 FPS samples in our history -- averageFpsSamples.shift(); -- } -- return { -- ...state, -- averageFpsSamples: averageFpsSamples -- }; -- }); -- } -+ //#region Lifecycle -+ setFrameProcessor(frameProcessor) { -+ VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); -+ } -+ unsetFrameProcessor() { -+ VisionCameraProxy.removeFrameProcessor(this.handle); -+ } -+ onViewReady() { -+ this.isNativeViewMounted = true; -+ if (this.props.frameProcessor != null) { -+ // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. -+ this.setFrameProcessor(this.props.frameProcessor.frameProcessor); -+ this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; -+ } -+ } -+ onAverageFpsChanged({nativeEvent: {averageFps}}) { -+ this.setState((state) => { -+ const averageFpsSamples = [...state.averageFpsSamples, averageFps]; -+ while (averageFpsSamples.length >= MAX_BARS + 1) { -+ // we keep a maximum of 30 FPS samples in our history -+ averageFpsSamples.shift(); -+ } -+ return { -+ ...state, -+ averageFpsSamples: averageFpsSamples, -+ }; -+ }); -+ } - -- /** @internal */ -- componentDidUpdate() { -- if (!this.isNativeViewMounted) return; -- const frameProcessor = this.props.frameProcessor; -- if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { -- // frameProcessor argument identity changed. Update native to reflect the change. -- if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor);else this.unsetFrameProcessor(); -- this.lastFrameProcessor = frameProcessor?.frameProcessor; -- } -- } -- //#endregion -+ /** @internal */ -+ componentDidUpdate() { -+ if (!this.isNativeViewMounted) return; -+ const frameProcessor = this.props.frameProcessor; -+ if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { -+ // frameProcessor argument identity changed. Update native to reflect the change. -+ if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor); -+ else this.unsetFrameProcessor(); -+ this.lastFrameProcessor = frameProcessor?.frameProcessor; -+ } -+ } -+ //#endregion - -- /** @internal */ -- render() { -- // We remove the big `device` object from the props because we only need to pass `cameraId` to native. -- const { -- device, -- frameProcessor, -- codeScanner, -- enableFpsGraph, -- fps, -- videoBitRate, -- ...props -- } = this.props; -+ /** @internal */ -+ render() { -+ // We remove the big `device` object from the props because we only need to pass `cameraId` to native. -+ const {device, frameProcessor, codeScanner, enableFpsGraph, fps, videoBitRate, ...props} = this.props; - -- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- if (device == null) { -- throw new CameraRuntimeError('device/no-device', 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices'); -- } -- const shouldEnableBufferCompression = props.video === true && frameProcessor == null; -- const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; -- const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); -- const shouldBeMirrored = device.position === 'front'; -+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -+ if (device == null) { -+ throw new CameraRuntimeError( -+ 'device/no-device', -+ 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices', -+ ); -+ } -+ const shouldEnableBufferCompression = props.video === true && frameProcessor == null; -+ const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; -+ const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); -+ const shouldBeMirrored = device.position === 'front'; - -- // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple -- const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; -- const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; -+ // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple -+ const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; -+ const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; - -- // bitrate is number (override) or string (multiplier) -- let bitRateMultiplier; -- let bitRateOverride; -- if (typeof videoBitRate === 'number') { -- // If the user passed an absolute number as a bit-rate, we just use this as a full override. -- bitRateOverride = videoBitRate; -- } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { -- // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it -- bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); -- } -- return /*#__PURE__*/React.createElement(NativeCameraView, _extends({}, props, { -- cameraId: device.id, -- ref: this.ref, -- torch: torch, -- minFps: minFps, -- maxFps: maxFps, -- isMirrored: props.isMirrored ?? shouldBeMirrored, -- onViewReady: this.onViewReady, -- onAverageFpsChanged: enableFpsGraph ? this.onAverageFpsChanged : undefined, -- onInitialized: this.onInitialized, -- onCodeScanned: this.onCodeScanned, -- onStarted: this.onStarted, -- onStopped: this.onStopped, -- onPreviewStarted: this.onPreviewStarted, -- onPreviewStopped: this.onPreviewStopped, -- onShutter: this.onShutter, -- videoBitRateMultiplier: bitRateMultiplier, -- videoBitRateOverride: bitRateOverride, -- onOutputOrientationChanged: this.onOutputOrientationChanged, -- onPreviewOrientationChanged: this.onPreviewOrientationChanged, -- onError: this.onError, -- codeScannerOptions: codeScanner, -- enableFrameProcessor: frameProcessor != null, -- enableBufferCompression: props.enableBufferCompression ?? shouldEnableBufferCompression, -- preview: isRenderingWithSkia ? false : props.preview ?? true -- }), isRenderingWithSkia && /*#__PURE__*/React.createElement(SkiaCameraCanvas, { -- style: styles.customPreviewView, -- offscreenTextures: frameProcessor.offscreenTextures, -- resizeMode: props.resizeMode -- }), enableFpsGraph && /*#__PURE__*/React.createElement(FpsGraph, { -- style: styles.fpsGraph, -- averageFpsSamples: this.state.averageFpsSamples, -- targetMaxFps: props.format?.maxFps ?? 60 -- })); -- } -+ // bitrate is number (override) or string (multiplier) -+ let bitRateMultiplier; -+ let bitRateOverride; -+ if (typeof videoBitRate === 'number') { -+ // If the user passed an absolute number as a bit-rate, we just use this as a full override. -+ bitRateOverride = videoBitRate; -+ } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { -+ // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it -+ bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); -+ } -+ return /*#__PURE__*/ React.createElement( -+ NativeCameraView, -+ _extends({}, props, { -+ cameraId: device.id, -+ ref: this.ref, -+ torch: torch, -+ minFps: minFps, -+ maxFps: maxFps, -+ isMirrored: props.isMirrored ?? shouldBeMirrored, -+ onViewReady: this.onViewReady, -+ onAverageFpsChanged: enableFpsGraph ? this.onAverageFpsChanged : undefined, -+ onInitialized: this.onInitialized, -+ onCodeScanned: this.onCodeScanned, -+ onStarted: this.onStarted, -+ onStopped: this.onStopped, -+ onPreviewStarted: this.onPreviewStarted, -+ onPreviewStopped: this.onPreviewStopped, -+ onShutter: this.onShutter, -+ videoBitRateMultiplier: bitRateMultiplier, -+ videoBitRateOverride: bitRateOverride, -+ onOutputOrientationChanged: this.onOutputOrientationChanged, -+ onPreviewOrientationChanged: this.onPreviewOrientationChanged, -+ onError: this.onError, -+ codeScannerOptions: codeScanner, -+ enableFrameProcessor: frameProcessor != null, -+ enableBufferCompression: props.enableBufferCompression ?? shouldEnableBufferCompression, -+ preview: isRenderingWithSkia ? false : props.preview ?? true, -+ }), -+ isRenderingWithSkia && -+ /*#__PURE__*/ React.createElement(SkiaCameraCanvas, { -+ style: styles.customPreviewView, -+ offscreenTextures: frameProcessor.offscreenTextures, -+ resizeMode: props.resizeMode, -+ }), -+ enableFpsGraph && -+ /*#__PURE__*/ React.createElement(FpsGraph, { -+ style: styles.fpsGraph, -+ averageFpsSamples: this.state.averageFpsSamples, -+ targetMaxFps: props.format?.maxFps ?? 60, -+ }), -+ ); -+ } - } - //#endregion - - const styles = StyleSheet.create({ -- customPreviewView: { -- flex: 1 -- }, -- fpsGraph: { -- elevation: 1, -- position: 'absolute', -- left: 15, -- top: 30 -- } -+ customPreviewView: { -+ flex: 1, -+ }, -+ fpsGraph: { -+ elevation: 1, -+ position: 'absolute', -+ left: 15, -+ top: 30, -+ }, - }); - //# sourceMappingURL=Camera.js.map -\ No newline at end of file -diff --git a/node_modules/react-native-vision-camera/lib/module/Camera.js.map b/node_modules/react-native-vision-camera/lib/module/Camera.js.map -index a1a484f..b45fa1d 100644 ---- a/node_modules/react-native-vision-camera/lib/module/Camera.js.map -+++ b/node_modules/react-native-vision-camera/lib/module/Camera.js.map -@@ -1 +1,151 @@ --{"version":3,"names":["React","findNodeHandle","StyleSheet","CameraRuntimeError","tryParseNativeCameraError","isErrorWithCause","CameraModule","VisionCameraProxy","CameraDevices","SkiaCameraCanvas","FpsGraph","MAX_BARS","NativeCameraView","RotationHelper","isSkiaFrameProcessor","frameProcessor","type","Camera","PureComponent","displayName","isNativeViewMounted","lastUIRotation","undefined","rotationHelper","constructor","props","onViewReady","bind","onAverageFpsChanged","onInitialized","onStarted","onStopped","onPreviewStarted","onPreviewStopped","onShutter","onOutputOrientationChanged","onPreviewOrientationChanged","onError","onCodeScanned","ref","createRef","lastFrameProcessor","state","isRecordingWithFlash","averageFpsSamples","handle","nodeHandle","current","takePhoto","options","e","takeSnapshot","getBitRateMultiplier","bitRate","startRecording","onRecordingError","onRecordingFinished","passThruOptions","flash","setState","onRecordCallback","video","error","nativeRecordVideoOptions","pauseRecording","resumeRecording","stopRecording","cancelRecording","focus","point","getAvailableCameraDevices","addCameraDevicesChangedListener","listener","getCameraPermissionStatus","getMicrophonePermissionStatus","getLocationPermissionStatus","requestCameraPermission","requestMicrophonePermission","requestLocationPermission","event","nativeEvent","cause","cameraError","code","message","console","outputOrientation","maybeUpdateUIRotation","previewOrientation","value","uiRotation","onUIRotationChanged","codeScanner","codes","frame","setFrameProcessor","unsetFrameProcessor","removeFrameProcessor","averageFps","length","shift","componentDidUpdate","render","device","enableFpsGraph","fps","videoBitRate","shouldEnableBufferCompression","torch","isRenderingWithSkia","shouldBeMirrored","position","minFps","maxFps","bitRateMultiplier","bitRateOverride","createElement","_extends","cameraId","id","isMirrored","videoBitRateMultiplier","videoBitRateOverride","codeScannerOptions","enableFrameProcessor","enableBufferCompression","preview","style","styles","customPreviewView","offscreenTextures","resizeMode","fpsGraph","targetMaxFps","format","create","flex","elevation","left","top"],"sourceRoot":"../../src","sources":["Camera.tsx"],"mappings":";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,cAAc,EAAEC,UAAU,QAAQ,cAAc;AAGzD,SAASC,kBAAkB,EAAEC,yBAAyB,EAAEC,gBAAgB,QAAQ,eAAe;AAE/F,SAASC,YAAY,QAAQ,sBAAsB;AAInD,SAASC,iBAAiB,QAAQ,sCAAsC;AACxE,SAASC,aAAa,QAAQ,iBAAiB;AAG/C,SAASC,gBAAgB,QAAQ,yBAAyB;AAE1D,SAASC,QAAQ,EAAEC,QAAQ,QAAQ,YAAY;AAS/C,SAASC,gBAAgB,QAAQ,oBAAoB;AACrD,SAASC,cAAc,QAAQ,kBAAkB;;AAEjD;;AAUA;;AAEA,SAASC,oBAAoBA,CAACC,cAAgE,EAA4C;EACxI,OAAOA,cAAc,EAAEC,IAAI,KAAK,eAAe;AACjD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,MAAM,SAASjB,KAAK,CAACkB,aAAa,CAA2B;EACxE;EACA,OAAOC,WAAW,GAAG,QAAQ;EAC7B;EACAA,WAAW,GAAGF,MAAM,CAACE,WAAW;EAExBC,mBAAmB,GAAG,KAAK;EAC3BC,cAAc,GAAuBC,SAAS;EAC9CC,cAAc,GAAG,IAAIV,cAAc,CAAC,CAAC;EAI7C;EACAW,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,CAAC;IACZ,IAAI,CAACC,WAAW,GAAG,IAAI,CAACA,WAAW,CAACC,IAAI,CAAC,IAAI,CAAC;IAC9C,IAAI,CAACC,mBAAmB,GAAG,IAAI,CAACA,mBAAmB,CAACD,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,CAACE,aAAa,GAAG,IAAI,CAACA,aAAa,CAACF,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACG,SAAS,GAAG,IAAI,CAACA,SAAS,CAACH,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACI,SAAS,GAAG,IAAI,CAACA,SAAS,CAACJ,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACK,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAACL,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAACM,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAACN,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAACO,SAAS,GAAG,IAAI,CAACA,SAAS,CAACP,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACQ,0BAA0B,GAAG,IAAI,CAACA,0BAA0B,CAACR,IAAI,CAAC,IAAI,CAAC;IAC5E,IAAI,CAACS,2BAA2B,GAAG,IAAI,CAACA,2BAA2B,CAACT,IAAI,CAAC,IAAI,CAAC;IAC9E,IAAI,CAACU,OAAO,GAAG,IAAI,CAACA,OAAO,CAACV,IAAI,CAAC,IAAI,CAAC;IACtC,IAAI,CAACW,aAAa,GAAG,IAAI,CAACA,aAAa,CAACX,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACY,GAAG,gBAAGvC,KAAK,CAACwC,SAAS,CAAU,CAAC;IACrC,IAAI,CAACC,kBAAkB,GAAGnB,SAAS;IACnC,IAAI,CAACoB,KAAK,GAAG;MACXC,oBAAoB,EAAE,KAAK;MAC3BC,iBAAiB,EAAE;IACrB,CAAC;EACH;EAEA,IAAYC,MAAMA,CAAA,EAAW;IAC3B,MAAMC,UAAU,GAAG7C,cAAc,CAAC,IAAI,CAACsC,GAAG,CAACQ,OAAO,CAAC;IACnD,IAAID,UAAU,IAAI,IAAI,IAAIA,UAAU,KAAK,CAAC,CAAC,EAAE;MAC3C,MAAM,IAAI3C,kBAAkB,CAC1B,uBAAuB,EACvB,iGACF,CAAC;IACH;IAEA,OAAO2C,UAAU;EACnB;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaE,SAASA,CAACC,OAA0B,EAAsB;IACrE,IAAI;MACF,OAAO,MAAM3C,YAAY,CAAC0C,SAAS,CAAC,IAAI,CAACH,MAAM,EAAEI,OAAO,IAAI,CAAC,CAAC,CAAC;IACjE,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaC,YAAYA,CAACF,OAA6B,EAAsB;IAC3E,IAAI;MACF,OAAO,MAAM3C,YAAY,CAAC6C,YAAY,CAAC,IAAI,CAACN,MAAM,EAAEI,OAAO,IAAI,CAAC,CAAC,CAAC;IACpE,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EAEQE,oBAAoBA,CAACC,OAAoC,EAAU;IACzE,IAAI,OAAOA,OAAO,KAAK,QAAQ,IAAIA,OAAO,IAAI,IAAI,EAAE,OAAO,CAAC;IAC5D,QAAQA,OAAO;MACb,KAAK,WAAW;QACd,OAAO,GAAG;MACZ,KAAK,KAAK;QACR,OAAO,GAAG;MACZ,KAAK,QAAQ;QACX,OAAO,CAAC;MACV,KAAK,MAAM;QACT,OAAO,GAAG;MACZ,KAAK,YAAY;QACf,OAAO,GAAG;IACd;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,cAAcA,CAACL,OAA2B,EAAQ;IACvD,MAAM;MAAEM,gBAAgB;MAAEC,mBAAmB;MAAE,GAAGC;IAAgB,CAAC,GAAGR,OAAO;IAC7E,IAAI,OAAOM,gBAAgB,KAAK,UAAU,IAAI,OAAOC,mBAAmB,KAAK,UAAU,EACrF,MAAM,IAAIrD,kBAAkB,CAAC,6BAA6B,EAAE,qEAAqE,CAAC;IAEpI,IAAI8C,OAAO,CAACS,KAAK,KAAK,IAAI,EAAE;MAC1B;MACA,IAAI,CAACC,QAAQ,CAAC;QACZhB,oBAAoB,EAAE;MACxB,CAAC,CAAC;IACJ;IAEA,MAAMiB,gBAAgB,GAAGA,CAACC,KAAiB,EAAEC,KAA0B,KAAW;MAChF,IAAI,IAAI,CAACpB,KAAK,CAACC,oBAAoB,EAAE;QACnC;QACA,IAAI,CAACgB,QAAQ,CAAC;UACZhB,oBAAoB,EAAE;QACxB,CAAC,CAAC;MACJ;MAEA,IAAImB,KAAK,IAAI,IAAI,EAAE,OAAOP,gBAAgB,CAACO,KAAK,CAAC;MACjD,IAAID,KAAK,IAAI,IAAI,EAAE,OAAOL,mBAAmB,CAACK,KAAK,CAAC;IACtD,CAAC;IAED,MAAME,wBAAkD,GAAGN,eAAe;IAC1E,IAAI;MACF;MACAnD,YAAY,CAACgD,cAAc,CAAC,IAAI,CAACT,MAAM,EAAEkB,wBAAwB,EAAEH,gBAAgB,CAAC;IACtF,CAAC,CAAC,OAAOV,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAac,cAAcA,CAAA,EAAkB;IAC3C,IAAI;MACF,OAAO,MAAM1D,YAAY,CAAC0D,cAAc,CAAC,IAAI,CAACnB,MAAM,CAAC;IACvD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAae,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAM3D,YAAY,CAAC2D,eAAe,CAAC,IAAI,CAACpB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAagB,aAAaA,CAAA,EAAkB;IAC1C,IAAI;MACF,OAAO,MAAM5D,YAAY,CAAC4D,aAAa,CAAC,IAAI,CAACrB,MAAM,CAAC;IACtD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaiB,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAM7D,YAAY,CAAC6D,eAAe,CAAC,IAAI,CAACtB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAakB,KAAKA,CAACC,KAAY,EAAiB;IAC9C,IAAI;MACF,OAAO,MAAM/D,YAAY,CAAC8D,KAAK,CAAC,IAAI,CAACvB,MAAM,EAAEwB,KAAK,CAAC;IACrD,CAAC,CAAC,OAAOnB,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcoB,yBAAyBA,CAAA,EAAmB;IACxD,OAAO9D,aAAa,CAAC8D,yBAAyB,CAAC,CAAC;EAClD;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,+BAA+BA,CAACC,QAA8C,EAAuB;IACjH,OAAOhE,aAAa,CAAC+D,+BAA+B,CAACC,QAAQ,CAAC;EAChE;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,yBAAyBA,CAAA,EAA2B;IAChE,OAAOnE,YAAY,CAACmE,yBAAyB,CAAC,CAAC;EACjD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,6BAA6BA,CAAA,EAA2B;IACpE,OAAOpE,YAAY,CAACoE,6BAA6B,CAAC,CAAC;EACrD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,2BAA2BA,CAAA,EAA2B;IAClE,OAAOrE,YAAY,CAACqE,2BAA2B,CAAC,CAAC;EACnD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBC,uBAAuBA,CAAA,EAA2C;IACpF,IAAI;MACF,OAAO,MAAMtE,YAAY,CAACsE,uBAAuB,CAAC,CAAC;IACrD,CAAC,CAAC,OAAO1B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoB2B,2BAA2BA,CAAA,EAA2C;IACxF,IAAI;MACF,OAAO,MAAMvE,YAAY,CAACuE,2BAA2B,CAAC,CAAC;IACzD,CAAC,CAAC,OAAO3B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoB4B,yBAAyBA,CAAA,EAA2C;IACtF,IAAI;MACF,OAAO,MAAMxE,YAAY,CAACwE,yBAAyB,CAAC,CAAC;IACvD,CAAC,CAAC,OAAO5B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACQb,OAAOA,CAAC0C,KAAyC,EAAQ;IAC/D,MAAMjB,KAAK,GAAGiB,KAAK,CAACC,WAAW;IAC/B,MAAMC,KAAK,GAAG5E,gBAAgB,CAACyD,KAAK,CAACmB,KAAK,CAAC,GAAGnB,KAAK,CAACmB,KAAK,GAAG3D,SAAS;IACrE;IACA,MAAM4D,WAAW,GAAG,IAAI/E,kBAAkB,CAAC2D,KAAK,CAACqB,IAAI,EAAErB,KAAK,CAACsB,OAAO,EAAEH,KAAK,CAAC;IAE5E,IAAI,IAAI,CAACxD,KAAK,CAACY,OAAO,IAAI,IAAI,EAAE;MAC9B,IAAI,CAACZ,KAAK,CAACY,OAAO,CAAC6C,WAAW,CAAC;IACjC,CAAC,MAAM;MACL;MACAG,OAAO,CAACvB,KAAK,CAACoB,WAAW,CAAC;IAC5B;EACF;EAEQrD,aAAaA,CAAA,EAAS;IAC5B,IAAI,CAACJ,KAAK,CAACI,aAAa,GAAG,CAAC;EAC9B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACL,KAAK,CAACK,SAAS,GAAG,CAAC;EAC1B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACN,KAAK,CAACM,SAAS,GAAG,CAAC;EAC1B;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACP,KAAK,CAACO,gBAAgB,GAAG,CAAC;EACjC;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACR,KAAK,CAACQ,gBAAgB,GAAG,CAAC;EACjC;EAEQC,SAASA,CAAC6C,KAA2C,EAAQ;IACnE,IAAI,CAACtD,KAAK,CAACS,SAAS,GAAG6C,KAAK,CAACC,WAAW,CAAC;EAC3C;EAEQ7C,0BAA0BA,CAAC;IAAE6C,WAAW,EAAE;MAAEM;IAAkB;EAAuD,CAAC,EAAQ;IACpI,IAAI,CAAC/D,cAAc,CAAC+D,iBAAiB,GAAGA,iBAAiB;IACzD,IAAI,CAAC7D,KAAK,CAACU,0BAA0B,GAAGmD,iBAAiB,CAAC;IAC1D,IAAI,CAACC,qBAAqB,CAAC,CAAC;EAC9B;EAEQnD,2BAA2BA,CAAC;IAAE4C,WAAW,EAAE;MAAEQ;IAAmB;EAAwD,CAAC,EAAQ;IACvI,IAAI,CAACjE,cAAc,CAACiE,kBAAkB,GAAGA,kBAAkB;IAC3D,IAAI,CAAC/D,KAAK,CAACW,2BAA2B,GAAGoD,kBAAkB,CAAC;IAC5D,IAAI,CAACD,qBAAqB,CAAC,CAAC;IAE5B,IAAIzE,oBAAoB,CAAC,IAAI,CAACW,KAAK,CAACV,cAAc,CAAC,EAAE;MACnD;MACA,IAAI,CAACU,KAAK,CAACV,cAAc,CAACyE,kBAAkB,CAACC,KAAK,GAAGD,kBAAkB;IACzE;EACF;EAEQD,qBAAqBA,CAAA,EAAS;IACpC,MAAMG,UAAU,GAAG,IAAI,CAACnE,cAAc,CAACmE,UAAU;IACjD,IAAIA,UAAU,KAAK,IAAI,CAACrE,cAAc,EAAE;MACtC,IAAI,CAACI,KAAK,CAACkE,mBAAmB,GAAGD,UAAU,CAAC;MAC5C,IAAI,CAACrE,cAAc,GAAGqE,UAAU;IAClC;EACF;EACA;;EAEQpD,aAAaA,CAACyC,KAA+C,EAAQ;IAC3E,MAAMa,WAAW,GAAG,IAAI,CAACnE,KAAK,CAACmE,WAAW;IAC1C,IAAIA,WAAW,IAAI,IAAI,EAAE;IAEzBA,WAAW,CAACtD,aAAa,CAACyC,KAAK,CAACC,WAAW,CAACa,KAAK,EAAEd,KAAK,CAACC,WAAW,CAACc,KAAK,CAAC;EAC7E;;EAEA;EACQC,iBAAiBA,CAAChF,cAAsC,EAAQ;IACtER,iBAAiB,CAACwF,iBAAiB,CAAC,IAAI,CAAClD,MAAM,EAAE9B,cAAc,CAAC;EAClE;EAEQiF,mBAAmBA,CAAA,EAAS;IAClCzF,iBAAiB,CAAC0F,oBAAoB,CAAC,IAAI,CAACpD,MAAM,CAAC;EACrD;EAEQnB,WAAWA,CAAA,EAAS;IAC1B,IAAI,CAACN,mBAAmB,GAAG,IAAI;IAC/B,IAAI,IAAI,CAACK,KAAK,CAACV,cAAc,IAAI,IAAI,EAAE;MACrC;MACA,IAAI,CAACgF,iBAAiB,CAAC,IAAI,CAACtE,KAAK,CAACV,cAAc,CAACA,cAAc,CAAC;MAChE,IAAI,CAAC0B,kBAAkB,GAAG,IAAI,CAAChB,KAAK,CAACV,cAAc,CAACA,cAAc;IACpE;EACF;EAEQa,mBAAmBA,CAAC;IAAEoD,WAAW,EAAE;MAAEkB;IAAW;EAAgD,CAAC,EAAQ;IAC/G,IAAI,CAACvC,QAAQ,CAAEjB,KAAK,IAAK;MACvB,MAAME,iBAAiB,GAAG,CAAC,GAAGF,KAAK,CAACE,iBAAiB,EAAEsD,UAAU,CAAC;MAClE,OAAOtD,iBAAiB,CAACuD,MAAM,IAAIxF,QAAQ,GAAG,CAAC,EAAE;QAC/C;QACAiC,iBAAiB,CAACwD,KAAK,CAAC,CAAC;MAC3B;MAEA,OAAO;QACL,GAAG1D,KAAK;QACRE,iBAAiB,EAAEA;MACrB,CAAC;IACH,CAAC,CAAC;EACJ;;EAEA;EACAyD,kBAAkBA,CAAA,EAAS;IACzB,IAAI,CAAC,IAAI,CAACjF,mBAAmB,EAAE;IAC/B,MAAML,cAAc,GAAG,IAAI,CAACU,KAAK,CAACV,cAAc;IAChD,IAAIA,cAAc,EAAEA,cAAc,KAAK,IAAI,CAAC0B,kBAAkB,EAAE;MAC9D;MACA,IAAI1B,cAAc,IAAI,IAAI,EAAE,IAAI,CAACgF,iBAAiB,CAAChF,cAAc,CAACA,cAAc,CAAC,MAC5E,IAAI,CAACiF,mBAAmB,CAAC,CAAC;MAE/B,IAAI,CAACvD,kBAAkB,GAAG1B,cAAc,EAAEA,cAAc;IAC1D;EACF;EACA;;EAEA;EACOuF,MAAMA,CAAA,EAAoB;IAC/B;IACA,MAAM;MAAEC,MAAM;MAAExF,cAAc;MAAE6E,WAAW;MAAEY,cAAc;MAAEC,GAAG;MAAEC,YAAY;MAAE,GAAGjF;IAAM,CAAC,GAAG,IAAI,CAACA,KAAK;;IAEvG;IACA,IAAI8E,MAAM,IAAI,IAAI,EAAE;MAClB,MAAM,IAAIpG,kBAAkB,CAC1B,kBAAkB,EAClB,kIACF,CAAC;IACH;IAEA,MAAMwG,6BAA6B,GAAGlF,KAAK,CAACoC,KAAK,KAAK,IAAI,IAAI9C,cAAc,IAAI,IAAI;IACpF,MAAM6F,KAAK,GAAG,IAAI,CAAClE,KAAK,CAACC,oBAAoB,GAAG,IAAI,GAAGlB,KAAK,CAACmF,KAAK;IAClE,MAAMC,mBAAmB,GAAG/F,oBAAoB,CAACC,cAAc,CAAC;IAChE,MAAM+F,gBAAgB,GAAGP,MAAM,CAACQ,QAAQ,KAAK,OAAO;;IAEpD;IACA,MAAMC,MAAM,GAAGP,GAAG,IAAI,IAAI,GAAGnF,SAAS,GAAG,OAAOmF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;IAC/E,MAAMQ,MAAM,GAAGR,GAAG,IAAI,IAAI,GAAGnF,SAAS,GAAG,OAAOmF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;;IAE/E;IACA,IAAIS,iBAAqC;IACzC,IAAIC,eAAmC;IACvC,IAAI,OAAOT,YAAY,KAAK,QAAQ,EAAE;MACpC;MACAS,eAAe,GAAGT,YAAY;IAChC,CAAC,MAAM,IAAI,OAAOA,YAAY,KAAK,QAAQ,IAAIA,YAAY,KAAK,QAAQ,EAAE;MACxE;MACAQ,iBAAiB,GAAG,IAAI,CAAC9D,oBAAoB,CAACsD,YAAY,CAAC;IAC7D;IAEA,oBACE1G,KAAA,CAAAoH,aAAA,CAACxG,gBAAgB,EAAAyG,QAAA,KACX5F,KAAK;MACT6F,QAAQ,EAAEf,MAAM,CAACgB,EAAG;MACpBhF,GAAG,EAAE,IAAI,CAACA,GAAI;MACdqE,KAAK,EAAEA,KAAM;MACbI,MAAM,EAAEA,MAAO;MACfC,MAAM,EAAEA,MAAO;MACfO,UAAU,EAAE/F,KAAK,CAAC+F,UAAU,IAAIV,gBAAiB;MACjDpF,WAAW,EAAE,IAAI,CAACA,WAAY;MAC9BE,mBAAmB,EAAE4E,cAAc,GAAG,IAAI,CAAC5E,mBAAmB,GAAGN,SAAU;MAC3EO,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCS,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCR,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BuF,sBAAsB,EAAEP,iBAAkB;MAC1CQ,oBAAoB,EAAEP,eAAgB;MACtChF,0BAA0B,EAAE,IAAI,CAACA,0BAA2B;MAC5DC,2BAA2B,EAAE,IAAI,CAACA,2BAA4B;MAC9DC,OAAO,EAAE,IAAI,CAACA,OAAQ;MACtBsF,kBAAkB,EAAE/B,WAAY;MAChCgC,oBAAoB,EAAE7G,cAAc,IAAI,IAAK;MAC7C8G,uBAAuB,EAAEpG,KAAK,CAACoG,uBAAuB,IAAIlB,6BAA8B;MACxFmB,OAAO,EAAEjB,mBAAmB,GAAG,KAAK,GAAIpF,KAAK,CAACqG,OAAO,IAAI;IAAM,IAC9DjB,mBAAmB,iBAClB7G,KAAA,CAAAoH,aAAA,CAAC3G,gBAAgB;MACfsH,KAAK,EAAEC,MAAM,CAACC,iBAAkB;MAChCC,iBAAiB,EAAEnH,cAAc,CAACmH,iBAAkB;MACpDC,UAAU,EAAE1G,KAAK,CAAC0G;IAAW,CAC9B,CACF,EACA3B,cAAc,iBACbxG,KAAA,CAAAoH,aAAA,CAAC1G,QAAQ;MAACqH,KAAK,EAAEC,MAAM,CAACI,QAAS;MAACxF,iBAAiB,EAAE,IAAI,CAACF,KAAK,CAACE,iBAAkB;MAACyF,YAAY,EAAE5G,KAAK,CAAC6G,MAAM,EAAErB,MAAM,IAAI;IAAG,CAAE,CAEhH,CAAC;EAEvB;AACF;AACA;;AAEA,MAAMe,MAAM,GAAG9H,UAAU,CAACqI,MAAM,CAAC;EAC/BN,iBAAiB,EAAE;IACjBO,IAAI,EAAE;EACR,CAAC;EACDJ,QAAQ,EAAE;IACRK,SAAS,EAAE,CAAC;IACZ1B,QAAQ,EAAE,UAAU;IACpB2B,IAAI,EAAE,EAAE;IACRC,GAAG,EAAE;EACP;AACF,CAAC,CAAC","ignoreList":[]} -+{ -+ "version": 3, -+ "names": [ -+ "React", -+ "findNodeHandle", -+ "StyleSheet", -+ "CameraRuntimeError", -+ "tryParseNativeCameraError", -+ "isErrorWithCause", -+ "CameraModule", -+ "VisionCameraProxy", -+ "CameraDevices", -+ "SkiaCameraCanvas", -+ "FpsGraph", -+ "MAX_BARS", -+ "NativeCameraView", -+ "RotationHelper", -+ "isSkiaFrameProcessor", -+ "frameProcessor", -+ "type", -+ "Camera", -+ "PureComponent", -+ "displayName", -+ "isNativeViewMounted", -+ "lastUIRotation", -+ "undefined", -+ "rotationHelper", -+ "constructor", -+ "props", -+ "onViewReady", -+ "bind", -+ "onAverageFpsChanged", -+ "onInitialized", -+ "onStarted", -+ "onStopped", -+ "onPreviewStarted", -+ "onPreviewStopped", -+ "onShutter", -+ "onOutputOrientationChanged", -+ "onPreviewOrientationChanged", -+ "onError", -+ "onCodeScanned", -+ "ref", -+ "createRef", -+ "lastFrameProcessor", -+ "state", -+ "isRecordingWithFlash", -+ "averageFpsSamples", -+ "handle", -+ "nodeHandle", -+ "current", -+ "takePhoto", -+ "options", -+ "e", -+ "takeSnapshot", -+ "getBitRateMultiplier", -+ "bitRate", -+ "startRecording", -+ "onRecordingError", -+ "onRecordingFinished", -+ "passThruOptions", -+ "flash", -+ "setState", -+ "onRecordCallback", -+ "video", -+ "error", -+ "nativeRecordVideoOptions", -+ "pauseRecording", -+ "resumeRecording", -+ "stopRecording", -+ "cancelRecording", -+ "focus", -+ "point", -+ "getAvailableCameraDevices", -+ "addCameraDevicesChangedListener", -+ "listener", -+ "getCameraPermissionStatus", -+ "getMicrophonePermissionStatus", -+ "getLocationPermissionStatus", -+ "requestCameraPermission", -+ "requestMicrophonePermission", -+ "requestLocationPermission", -+ "event", -+ "nativeEvent", -+ "cause", -+ "cameraError", -+ "code", -+ "message", -+ "console", -+ "outputOrientation", -+ "maybeUpdateUIRotation", -+ "previewOrientation", -+ "value", -+ "uiRotation", -+ "onUIRotationChanged", -+ "codeScanner", -+ "codes", -+ "frame", -+ "setFrameProcessor", -+ "unsetFrameProcessor", -+ "removeFrameProcessor", -+ "averageFps", -+ "length", -+ "shift", -+ "componentDidUpdate", -+ "render", -+ "device", -+ "enableFpsGraph", -+ "fps", -+ "videoBitRate", -+ "shouldEnableBufferCompression", -+ "torch", -+ "isRenderingWithSkia", -+ "shouldBeMirrored", -+ "position", -+ "minFps", -+ "maxFps", -+ "bitRateMultiplier", -+ "bitRateOverride", -+ "createElement", -+ "_extends", -+ "cameraId", -+ "id", -+ "isMirrored", -+ "videoBitRateMultiplier", -+ "videoBitRateOverride", -+ "codeScannerOptions", -+ "enableFrameProcessor", -+ "enableBufferCompression", -+ "preview", -+ "style", -+ "styles", -+ "customPreviewView", -+ "offscreenTextures", -+ "resizeMode", -+ "fpsGraph", -+ "targetMaxFps", -+ "format", -+ "create", -+ "flex", -+ "elevation", -+ "left", -+ "top" -+ ], -+ "sourceRoot": "../../src", -+ "sources": [ -+ "Camera.tsx" -+ ], -+ "mappings": ";AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,cAAc,EAAEC,UAAU,QAAQ,cAAc;AAGzD,SAASC,kBAAkB,EAAEC,yBAAyB,EAAEC,gBAAgB,QAAQ,eAAe;AAE/F,SAASC,YAAY,QAAQ,sBAAsB;AAInD,SAASC,iBAAiB,QAAQ,sCAAsC;AACxE,SAASC,aAAa,QAAQ,iBAAiB;AAG/C,SAASC,gBAAgB,QAAQ,yBAAyB;AAE1D,SAASC,QAAQ,EAAEC,QAAQ,QAAQ,YAAY;AAS/C,SAASC,gBAAgB,QAAQ,oBAAoB;AACrD,SAASC,cAAc,QAAQ,kBAAkB;;AAEjD;;AAUA;;AAEA,SAASC,oBAAoBA,CAACC,cAAgE,EAA4C;EACxI,OAAOA,cAAc,EAAEC,IAAI,KAAK,eAAe;AACjD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,MAAM,SAASjB,KAAK,CAACkB,aAAa,CAA2B;EACxE;EACA,OAAOC,WAAW,GAAG,QAAQ;EAC7B;EACAA,WAAW,GAAGF,MAAM,CAACE,WAAW;EAExBC,mBAAmB,GAAG,KAAK;EAC3BC,cAAc,GAAuBC,SAAS;EAC9CC,cAAc,GAAG,IAAIV,cAAc,CAAC,CAAC;EAI7C;EACAW,WAAWA,CAACC,KAAkB,EAAE;IAC9B,KAAK,CAACA,KAAK,CAAC;IACZ,IAAI,CAACC,WAAW,GAAG,IAAI,CAACA,WAAW,CAACC,IAAI,CAAC,IAAI,CAAC;IAC9C,IAAI,CAACC,mBAAmB,GAAG,IAAI,CAACA,mBAAmB,CAACD,IAAI,CAAC,IAAI,CAAC;IAC9D,IAAI,CAACE,aAAa,GAAG,IAAI,CAACA,aAAa,CAACF,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACG,SAAS,GAAG,IAAI,CAACA,SAAS,CAACH,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACI,SAAS,GAAG,IAAI,CAACA,SAAS,CAACJ,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACK,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAACL,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAACM,gBAAgB,GAAG,IAAI,CAACA,gBAAgB,CAACN,IAAI,CAAC,IAAI,CAAC;IACxD,IAAI,CAACO,SAAS,GAAG,IAAI,CAACA,SAAS,CAACP,IAAI,CAAC,IAAI,CAAC;IAC1C,IAAI,CAACQ,0BAA0B,GAAG,IAAI,CAACA,0BAA0B,CAACR,IAAI,CAAC,IAAI,CAAC;IAC5E,IAAI,CAACS,2BAA2B,GAAG,IAAI,CAACA,2BAA2B,CAACT,IAAI,CAAC,IAAI,CAAC;IAC9E,IAAI,CAACU,OAAO,GAAG,IAAI,CAACA,OAAO,CAACV,IAAI,CAAC,IAAI,CAAC;IACtC,IAAI,CAACW,aAAa,GAAG,IAAI,CAACA,aAAa,CAACX,IAAI,CAAC,IAAI,CAAC;IAClD,IAAI,CAACY,GAAG,gBAAGvC,KAAK,CAACwC,SAAS,CAAU,CAAC;IACrC,IAAI,CAACC,kBAAkB,GAAGnB,SAAS;IACnC,IAAI,CAACoB,KAAK,GAAG;MACXC,oBAAoB,EAAE,KAAK;MAC3BC,iBAAiB,EAAE;IACrB,CAAC;EACH;EAEA,IAAYC,MAAMA,CAAA,EAAW;IAC3B,MAAMC,UAAU,GAAG7C,cAAc,CAAC,IAAI,CAACsC,GAAG,CAACQ,OAAO,CAAC;IACnD,IAAID,UAAU,IAAI,IAAI,IAAIA,UAAU,KAAK,CAAC,CAAC,EAAE;MAC3C,MAAM,IAAI3C,kBAAkB,CAC1B,uBAAuB,EACvB,iGACF,CAAC;IACH;IAEA,OAAO2C,UAAU;EACnB;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaE,SAASA,CAACC,OAA0B,EAAsB;IACrE,IAAI;MACF,OAAO,MAAM3C,YAAY,CAAC0C,SAAS,CAAC,IAAI,CAACH,MAAM,EAAEI,OAAO,IAAI,CAAC,CAAC,CAAC;IACjE,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaC,YAAYA,CAACF,OAA6B,EAAsB;IAC3E,IAAI;MACF,OAAO,MAAM3C,YAAY,CAAC6C,YAAY,CAAC,IAAI,CAACN,MAAM,EAAEI,OAAO,IAAI,CAAC,CAAC,CAAC;IACpE,CAAC,CAAC,OAAOC,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EAEQE,oBAAoBA,CAACC,OAAoC,EAAU;IACzE,IAAI,OAAOA,OAAO,KAAK,QAAQ,IAAIA,OAAO,IAAI,IAAI,EAAE,OAAO,CAAC;IAC5D,QAAQA,OAAO;MACb,KAAK,WAAW;QACd,OAAO,GAAG;MACZ,KAAK,KAAK;QACR,OAAO,GAAG;MACZ,KAAK,QAAQ;QACX,OAAO,CAAC;MACV,KAAK,MAAM;QACT,OAAO,GAAG;MACZ,KAAK,YAAY;QACf,OAAO,GAAG;IACd;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,cAAcA,CAACL,OAA2B,EAAQ;IACvD,MAAM;MAAEM,gBAAgB;MAAEC,mBAAmB;MAAE,GAAGC;IAAgB,CAAC,GAAGR,OAAO;IAC7E,IAAI,OAAOM,gBAAgB,KAAK,UAAU,IAAI,OAAOC,mBAAmB,KAAK,UAAU,EACrF,MAAM,IAAIrD,kBAAkB,CAAC,6BAA6B,EAAE,qEAAqE,CAAC;IAEpI,IAAI8C,OAAO,CAACS,KAAK,KAAK,IAAI,EAAE;MAC1B;MACA,IAAI,CAACC,QAAQ,CAAC;QACZhB,oBAAoB,EAAE;MACxB,CAAC,CAAC;IACJ;IAEA,MAAMiB,gBAAgB,GAAGA,CAACC,KAAiB,EAAEC,KAA0B,KAAW;MAChF,IAAI,IAAI,CAACpB,KAAK,CAACC,oBAAoB,EAAE;QACnC;QACA,IAAI,CAACgB,QAAQ,CAAC;UACZhB,oBAAoB,EAAE;QACxB,CAAC,CAAC;MACJ;MAEA,IAAImB,KAAK,IAAI,IAAI,EAAE,OAAOP,gBAAgB,CAACO,KAAK,CAAC;MACjD,IAAID,KAAK,IAAI,IAAI,EAAE,OAAOL,mBAAmB,CAACK,KAAK,CAAC;IACtD,CAAC;IAED,MAAME,wBAAkD,GAAGN,eAAe;IAC1E,IAAI;MACF;MACAnD,YAAY,CAACgD,cAAc,CAAC,IAAI,CAACT,MAAM,EAAEkB,wBAAwB,EAAEH,gBAAgB,CAAC;IACtF,CAAC,CAAC,OAAOV,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAac,cAAcA,CAAA,EAAkB;IAC3C,IAAI;MACF,OAAO,MAAM1D,YAAY,CAAC0D,cAAc,CAAC,IAAI,CAACnB,MAAM,CAAC;IACvD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAae,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAM3D,YAAY,CAAC2D,eAAe,CAAC,IAAI,CAACpB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAagB,aAAaA,CAAA,EAAkB;IAC1C,IAAI;MACF,OAAO,MAAM5D,YAAY,CAAC4D,aAAa,CAAC,IAAI,CAACrB,MAAM,CAAC;IACtD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAaiB,eAAeA,CAAA,EAAkB;IAC5C,IAAI;MACF,OAAO,MAAM7D,YAAY,CAAC6D,eAAe,CAAC,IAAI,CAACtB,MAAM,CAAC;IACxD,CAAC,CAAC,OAAOK,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,MAAakB,KAAKA,CAACC,KAAY,EAAiB;IAC9C,IAAI;MACF,OAAO,MAAM/D,YAAY,CAAC8D,KAAK,CAAC,IAAI,CAACvB,MAAM,EAAEwB,KAAK,CAAC;IACrD,CAAC,CAAC,OAAOnB,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcoB,yBAAyBA,CAAA,EAAmB;IACxD,OAAO9D,aAAa,CAAC8D,yBAAyB,CAAC,CAAC;EAClD;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,+BAA+BA,CAACC,QAA8C,EAAuB;IACjH,OAAOhE,aAAa,CAAC+D,+BAA+B,CAACC,QAAQ,CAAC;EAChE;EACA;AACF;AACA;AACA;AACA;AACA;EACE,OAAcC,yBAAyBA,CAAA,EAA2B;IAChE,OAAOnE,YAAY,CAACmE,yBAAyB,CAAC,CAAC;EACjD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,6BAA6BA,CAAA,EAA2B;IACpE,OAAOpE,YAAY,CAACoE,6BAA6B,CAAC,CAAC;EACrD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,OAAcC,2BAA2BA,CAAA,EAA2B;IAClE,OAAOrE,YAAY,CAACqE,2BAA2B,CAAC,CAAC;EACnD;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoBC,uBAAuBA,CAAA,EAA2C;IACpF,IAAI;MACF,OAAO,MAAMtE,YAAY,CAACsE,uBAAuB,CAAC,CAAC;IACrD,CAAC,CAAC,OAAO1B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoB2B,2BAA2BA,CAAA,EAA2C;IACxF,IAAI;MACF,OAAO,MAAMvE,YAAY,CAACuE,2BAA2B,CAAC,CAAC;IACzD,CAAC,CAAC,OAAO3B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,aAAoB4B,yBAAyBA,CAAA,EAA2C;IACtF,IAAI;MACF,OAAO,MAAMxE,YAAY,CAACwE,yBAAyB,CAAC,CAAC;IACvD,CAAC,CAAC,OAAO5B,CAAC,EAAE;MACV,MAAM9C,yBAAyB,CAAC8C,CAAC,CAAC;IACpC;EACF;EACA;;EAEA;EACQb,OAAOA,CAAC0C,KAAyC,EAAQ;IAC/D,MAAMjB,KAAK,GAAGiB,KAAK,CAACC,WAAW;IAC/B,MAAMC,KAAK,GAAG5E,gBAAgB,CAACyD,KAAK,CAACmB,KAAK,CAAC,GAAGnB,KAAK,CAACmB,KAAK,GAAG3D,SAAS;IACrE;IACA,MAAM4D,WAAW,GAAG,IAAI/E,kBAAkB,CAAC2D,KAAK,CAACqB,IAAI,EAAErB,KAAK,CAACsB,OAAO,EAAEH,KAAK,CAAC;IAE5E,IAAI,IAAI,CAACxD,KAAK,CAACY,OAAO,IAAI,IAAI,EAAE;MAC9B,IAAI,CAACZ,KAAK,CAACY,OAAO,CAAC6C,WAAW,CAAC;IACjC,CAAC,MAAM;MACL;MACAG,OAAO,CAACvB,KAAK,CAACoB,WAAW,CAAC;IAC5B;EACF;EAEQrD,aAAaA,CAAA,EAAS;IAC5B,IAAI,CAACJ,KAAK,CAACI,aAAa,GAAG,CAAC;EAC9B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACL,KAAK,CAACK,SAAS,GAAG,CAAC;EAC1B;EAEQC,SAASA,CAAA,EAAS;IACxB,IAAI,CAACN,KAAK,CAACM,SAAS,GAAG,CAAC;EAC1B;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACP,KAAK,CAACO,gBAAgB,GAAG,CAAC;EACjC;EAEQC,gBAAgBA,CAAA,EAAS;IAC/B,IAAI,CAACR,KAAK,CAACQ,gBAAgB,GAAG,CAAC;EACjC;EAEQC,SAASA,CAAC6C,KAA2C,EAAQ;IACnE,IAAI,CAACtD,KAAK,CAACS,SAAS,GAAG6C,KAAK,CAACC,WAAW,CAAC;EAC3C;EAEQ7C,0BAA0BA,CAAC;IAAE6C,WAAW,EAAE;MAAEM;IAAkB;EAAuD,CAAC,EAAQ;IACpI,IAAI,CAAC/D,cAAc,CAAC+D,iBAAiB,GAAGA,iBAAiB;IACzD,IAAI,CAAC7D,KAAK,CAACU,0BAA0B,GAAGmD,iBAAiB,CAAC;IAC1D,IAAI,CAACC,qBAAqB,CAAC,CAAC;EAC9B;EAEQnD,2BAA2BA,CAAC;IAAE4C,WAAW,EAAE;MAAEQ;IAAmB;EAAwD,CAAC,EAAQ;IACvI,IAAI,CAACjE,cAAc,CAACiE,kBAAkB,GAAGA,kBAAkB;IAC3D,IAAI,CAAC/D,KAAK,CAACW,2BAA2B,GAAGoD,kBAAkB,CAAC;IAC5D,IAAI,CAACD,qBAAqB,CAAC,CAAC;IAE5B,IAAIzE,oBAAoB,CAAC,IAAI,CAACW,KAAK,CAACV,cAAc,CAAC,EAAE;MACnD;MACA,IAAI,CAACU,KAAK,CAACV,cAAc,CAACyE,kBAAkB,CAACC,KAAK,GAAGD,kBAAkB;IACzE;EACF;EAEQD,qBAAqBA,CAAA,EAAS;IACpC,MAAMG,UAAU,GAAG,IAAI,CAACnE,cAAc,CAACmE,UAAU;IACjD,IAAIA,UAAU,KAAK,IAAI,CAACrE,cAAc,EAAE;MACtC,IAAI,CAACI,KAAK,CAACkE,mBAAmB,GAAGD,UAAU,CAAC;MAC5C,IAAI,CAACrE,cAAc,GAAGqE,UAAU;IAClC;EACF;EACA;;EAEQpD,aAAaA,CAACyC,KAA+C,EAAQ;IAC3E,MAAMa,WAAW,GAAG,IAAI,CAACnE,KAAK,CAACmE,WAAW;IAC1C,IAAIA,WAAW,IAAI,IAAI,EAAE;IAEzBA,WAAW,CAACtD,aAAa,CAACyC,KAAK,CAACC,WAAW,CAACa,KAAK,EAAEd,KAAK,CAACC,WAAW,CAACc,KAAK,CAAC;EAC7E;;EAEA;EACQC,iBAAiBA,CAAChF,cAAsC,EAAQ;IACtER,iBAAiB,CAACwF,iBAAiB,CAAC,IAAI,CAAClD,MAAM,EAAE9B,cAAc,CAAC;EAClE;EAEQiF,mBAAmBA,CAAA,EAAS;IAClCzF,iBAAiB,CAAC0F,oBAAoB,CAAC,IAAI,CAACpD,MAAM,CAAC;EACrD;EAEQnB,WAAWA,CAAA,EAAS;IAC1B,IAAI,CAACN,mBAAmB,GAAG,IAAI;IAC/B,IAAI,IAAI,CAACK,KAAK,CAACV,cAAc,IAAI,IAAI,EAAE;MACrC;MACA,IAAI,CAACgF,iBAAiB,CAAC,IAAI,CAACtE,KAAK,CAACV,cAAc,CAACA,cAAc,CAAC;MAChE,IAAI,CAAC0B,kBAAkB,GAAG,IAAI,CAAChB,KAAK,CAACV,cAAc,CAACA,cAAc;IACpE;EACF;EAEQa,mBAAmBA,CAAC;IAAEoD,WAAW,EAAE;MAAEkB;IAAW;EAAgD,CAAC,EAAQ;IAC/G,IAAI,CAACvC,QAAQ,CAAEjB,KAAK,IAAK;MACvB,MAAME,iBAAiB,GAAG,CAAC,GAAGF,KAAK,CAACE,iBAAiB,EAAEsD,UAAU,CAAC;MAClE,OAAOtD,iBAAiB,CAACuD,MAAM,IAAIxF,QAAQ,GAAG,CAAC,EAAE;QAC/C;QACAiC,iBAAiB,CAACwD,KAAK,CAAC,CAAC;MAC3B;MAEA,OAAO;QACL,GAAG1D,KAAK;QACRE,iBAAiB,EAAEA;MACrB,CAAC;IACH,CAAC,CAAC;EACJ;;EAEA;EACAyD,kBAAkBA,CAAA,EAAS;IACzB,IAAI,CAAC,IAAI,CAACjF,mBAAmB,EAAE;IAC/B,MAAML,cAAc,GAAG,IAAI,CAACU,KAAK,CAACV,cAAc;IAChD,IAAIA,cAAc,EAAEA,cAAc,KAAK,IAAI,CAAC0B,kBAAkB,EAAE;MAC9D;MACA,IAAI1B,cAAc,IAAI,IAAI,EAAE,IAAI,CAACgF,iBAAiB,CAAChF,cAAc,CAACA,cAAc,CAAC,MAC5E,IAAI,CAACiF,mBAAmB,CAAC,CAAC;MAE/B,IAAI,CAACvD,kBAAkB,GAAG1B,cAAc,EAAEA,cAAc;IAC1D;EACF;EACA;;EAEA;EACOuF,MAAMA,CAAA,EAAoB;IAC/B;IACA,MAAM;MAAEC,MAAM;MAAExF,cAAc;MAAE6E,WAAW;MAAEY,cAAc;MAAEC,GAAG;MAAEC,YAAY;MAAE,GAAGjF;IAAM,CAAC,GAAG,IAAI,CAACA,KAAK;;IAEvG;IACA,IAAI8E,MAAM,IAAI,IAAI,EAAE;MAClB,MAAM,IAAIpG,kBAAkB,CAC1B,kBAAkB,EAClB,kIACF,CAAC;IACH;IAEA,MAAMwG,6BAA6B,GAAGlF,KAAK,CAACoC,KAAK,KAAK,IAAI,IAAI9C,cAAc,IAAI,IAAI;IACpF,MAAM6F,KAAK,GAAG,IAAI,CAAClE,KAAK,CAACC,oBAAoB,GAAG,IAAI,GAAGlB,KAAK,CAACmF,KAAK;IAClE,MAAMC,mBAAmB,GAAG/F,oBAAoB,CAACC,cAAc,CAAC;IAChE,MAAM+F,gBAAgB,GAAGP,MAAM,CAACQ,QAAQ,KAAK,OAAO;;IAEpD;IACA,MAAMC,MAAM,GAAGP,GAAG,IAAI,IAAI,GAAGnF,SAAS,GAAG,OAAOmF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;IAC/E,MAAMQ,MAAM,GAAGR,GAAG,IAAI,IAAI,GAAGnF,SAAS,GAAG,OAAOmF,GAAG,KAAK,QAAQ,GAAGA,GAAG,GAAGA,GAAG,CAAC,CAAC,CAAC;;IAE/E;IACA,IAAIS,iBAAqC;IACzC,IAAIC,eAAmC;IACvC,IAAI,OAAOT,YAAY,KAAK,QAAQ,EAAE;MACpC;MACAS,eAAe,GAAGT,YAAY;IAChC,CAAC,MAAM,IAAI,OAAOA,YAAY,KAAK,QAAQ,IAAIA,YAAY,KAAK,QAAQ,EAAE;MACxE;MACAQ,iBAAiB,GAAG,IAAI,CAAC9D,oBAAoB,CAACsD,YAAY,CAAC;IAC7D;IAEA,oBACE1G,KAAA,CAAAoH,aAAA,CAACxG,gBAAgB,EAAAyG,QAAA,KACX5F,KAAK;MACT6F,QAAQ,EAAEf,MAAM,CAACgB,EAAG;MACpBhF,GAAG,EAAE,IAAI,CAACA,GAAI;MACdqE,KAAK,EAAEA,KAAM;MACbI,MAAM,EAAEA,MAAO;MACfC,MAAM,EAAEA,MAAO;MACfO,UAAU,EAAE/F,KAAK,CAAC+F,UAAU,IAAIV,gBAAiB;MACjDpF,WAAW,EAAE,IAAI,CAACA,WAAY;MAC9BE,mBAAmB,EAAE4E,cAAc,GAAG,IAAI,CAAC5E,mBAAmB,GAAGN,SAAU;MAC3EO,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCS,aAAa,EAAE,IAAI,CAACA,aAAc;MAClCR,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,gBAAgB,EAAE,IAAI,CAACA,gBAAiB;MACxCC,SAAS,EAAE,IAAI,CAACA,SAAU;MAC1BuF,sBAAsB,EAAEP,iBAAkB;MAC1CQ,oBAAoB,EAAEP,eAAgB;MACtChF,0BAA0B,EAAE,IAAI,CAACA,0BAA2B;MAC5DC,2BAA2B,EAAE,IAAI,CAACA,2BAA4B;MAC9DC,OAAO,EAAE,IAAI,CAACA,OAAQ;MACtBsF,kBAAkB,EAAE/B,WAAY;MAChCgC,oBAAoB,EAAE7G,cAAc,IAAI,IAAK;MAC7C8G,uBAAuB,EAAEpG,KAAK,CAACoG,uBAAuB,IAAIlB,6BAA8B;MACxFmB,OAAO,EAAEjB,mBAAmB,GAAG,KAAK,GAAIpF,KAAK,CAACqG,OAAO,IAAI;IAAM,IAC9DjB,mBAAmB,iBAClB7G,KAAA,CAAAoH,aAAA,CAAC3G,gBAAgB;MACfsH,KAAK,EAAEC,MAAM,CAACC,iBAAkB;MAChCC,iBAAiB,EAAEnH,cAAc,CAACmH,iBAAkB;MACpDC,UAAU,EAAE1G,KAAK,CAAC0G;IAAW,CAC9B,CACF,EACA3B,cAAc,iBACbxG,KAAA,CAAAoH,aAAA,CAAC1G,QAAQ;MAACqH,KAAK,EAAEC,MAAM,CAACI,QAAS;MAACxF,iBAAiB,EAAE,IAAI,CAACF,KAAK,CAACE,iBAAkB;MAACyF,YAAY,EAAE5G,KAAK,CAAC6G,MAAM,EAAErB,MAAM,IAAI;IAAG,CAAE,CAEhH,CAAC;EAEvB;AACF;AACA;;AAEA,MAAMe,MAAM,GAAG9H,UAAU,CAACqI,MAAM,CAAC;EAC/BN,iBAAiB,EAAE;IACjBO,IAAI,EAAE;EACR,CAAC;EACDJ,QAAQ,EAAE;IACRK,SAAS,EAAE,CAAC;IACZ1B,QAAQ,EAAE,UAAU;IACpB2B,IAAI,EAAE,EAAE;IACRC,GAAG,EAAE;EACP;AACF,CAAC,CAAC", -+ "ignoreList": [] -+} -diff --git a/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js b/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js -new file mode 100644 -index 0000000..3dd9033 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js -@@ -0,0 +1,5 @@ -+/* eslint-disable @typescript-eslint/ban-types */ -+import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; -+ -+export default codegenNativeComponent('CameraView'); -+//# sourceMappingURL=CameraViewNativeComponent.js.map -diff --git a/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js.map b/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js.map -new file mode 100644 -index 0000000..fc84756 ---- /dev/null -+++ b/node_modules/react-native-vision-camera/lib/module/specs/CameraViewNativeComponent.js.map -@@ -0,0 +1,11 @@ -+{ -+ "version": 3, -+ "names": [ -+ "codegenNativeComponent" -+ ], -+ "sourceRoot": "../../../src", -+ "sources": [ -+ "specs/CameraViewNativeComponent.ts" -+ ], -+ "mappings": "AAAA;;AAGA,OAAOA,sBAAsB,MAAM,yDAAyD;AAuF5F,eAAeA,sBAAsB,CAAc,YAAY,CAAC" -+} -diff --git a/node_modules/react-native-vision-camera/lib/typescript/Camera.d.ts.map b/node_modules/react-native-vision-camera/lib/typescript/Camera.d.ts.map -index 5abba6e..8e4c1b6 100644 ---- a/node_modules/react-native-vision-camera/lib/typescript/Camera.d.ts.map -+++ b/node_modules/react-native-vision-camera/lib/typescript/Camera.d.ts.map -@@ -1 +1,10 @@ --{"version":3,"file":"Camera.d.ts","sourceRoot":"","sources":["../../src/Camera.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAGxD,OAAO,KAAK,EAAE,WAAW,EAAkE,MAAM,qBAAqB,CAAA;AAEtH,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACpE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,EAAE,kBAAkB,EAAa,MAAM,mBAAmB,CAAA;AAGtE,OAAO,KAAK,EAAE,mBAAmB,EAAuC,MAAM,cAAc,CAAA;AAC5F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAgB3D,MAAM,MAAM,sBAAsB,GAAG,SAAS,GAAG,gBAAgB,GAAG,QAAQ,GAAG,YAAY,CAAA;AAC3F,MAAM,MAAM,6BAA6B,GAAG,SAAS,GAAG,QAAQ,CAAA;AAIhE,UAAU,WAAW;IACnB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,iBAAiB,EAAE,MAAM,EAAE,CAAA;CAC5B;AAQD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,qBAAa,MAAO,SAAQ,KAAK,CAAC,aAAa,CAAC,WAAW,EAAE,WAAW,CAAC;IACvE,gBAAgB;IAChB,MAAM,CAAC,WAAW,SAAW;IAC7B,gBAAgB;IAChB,WAAW,SAAqB;IAChC,OAAO,CAAC,kBAAkB,CAAsC;IAChE,OAAO,CAAC,mBAAmB,CAAQ;IACnC,OAAO,CAAC,cAAc,CAAgC;IACtD,OAAO,CAAC,cAAc,CAAuB;IAE7C,OAAO,CAAC,QAAQ,CAAC,GAAG,CAA0B;IAE9C,gBAAgB;gBACJ,KAAK,EAAE,WAAW;IAsB9B,OAAO,KAAK,MAAM,GAUjB;IAGD;;;;;;;;;;;;OAYG;IACU,SAAS,CAAC,OAAO,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,SAAS,CAAC;IAQtE;;;;;;;;;;;;;;OAcG;IACU,YAAY,CAAC,OAAO,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,SAAS,CAAC;IAQ5E,OAAO,CAAC,oBAAoB;IAgB5B;;;;;;;;;;;;;;;;OAgBG;IACI,cAAc,CAAC,OAAO,EAAE,kBAAkB,GAAG,IAAI;IAiCxD;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ5C;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ7C;;;;;;;;;;;;;;;;OAgBG;IACU,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ3C;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ7C;;;;;;;;;;;;;;;;;;OAkBG;IACU,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;IAU/C;;;;;;;;;;;;;;;;OAgBG;WACW,yBAAyB,IAAI,YAAY,EAAE;IAGzD;;;;;OAKG;WACW,+BAA+B,CAAC,QAAQ,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,KAAK,IAAI,GAAG,mBAAmB;IAGlH;;;;;OAKG;WACW,yBAAyB,IAAI,sBAAsB;IAGjE;;;;;;OAMG;WACW,6BAA6B,IAAI,sBAAsB;IAGrE;;;;;;;;;OASG;WACW,2BAA2B,IAAI,sBAAsB;IAGnE;;;;;;;;OAQG;WACiB,uBAAuB,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAOrF;;;;;;;;OAQG;WACiB,2BAA2B,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAOzF;;;;;;;;OAQG;WACiB,yBAAyB,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAUvF,OAAO,CAAC,OAAO;IAcf,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,0BAA0B;IAMlC,OAAO,CAAC,2BAA2B;IAWnC,OAAO,CAAC,qBAAqB;IAS7B,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,WAAW;IASnB,OAAO,CAAC,mBAAmB;IAe3B,gBAAgB;IAChB,kBAAkB,IAAI,IAAI;IAa1B,gBAAgB;IACT,MAAM,IAAI,KAAK,CAAC,SAAS;CAwEjC"} -\ No newline at end of file -+{ -+ "version": 3, -+ "file": "Camera.d.ts", -+ "sourceRoot": "", -+ "sources": [ -+ "../../src/Camera.tsx" -+ ], -+ "names": [], -+ "mappings": "AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAGxD,OAAO,KAAK,EAAE,WAAW,EAAkE,MAAM,qBAAqB,CAAA;AAEtH,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACpE,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,EAAE,kBAAkB,EAAa,MAAM,mBAAmB,CAAA;AAGtE,OAAO,KAAK,EAAE,mBAAmB,EAAuC,MAAM,cAAc,CAAA;AAC5F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAgB3D,MAAM,MAAM,sBAAsB,GAAG,SAAS,GAAG,gBAAgB,GAAG,QAAQ,GAAG,YAAY,CAAA;AAC3F,MAAM,MAAM,6BAA6B,GAAG,SAAS,GAAG,QAAQ,CAAA;AAIhE,UAAU,WAAW;IACnB,oBAAoB,EAAE,OAAO,CAAA;IAC7B,iBAAiB,EAAE,MAAM,EAAE,CAAA;CAC5B;AAQD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,qBAAa,MAAO,SAAQ,KAAK,CAAC,aAAa,CAAC,WAAW,EAAE,WAAW,CAAC;IACvE,gBAAgB;IAChB,MAAM,CAAC,WAAW,SAAW;IAC7B,gBAAgB;IAChB,WAAW,SAAqB;IAChC,OAAO,CAAC,kBAAkB,CAAsC;IAChE,OAAO,CAAC,mBAAmB,CAAQ;IACnC,OAAO,CAAC,cAAc,CAAgC;IACtD,OAAO,CAAC,cAAc,CAAuB;IAE7C,OAAO,CAAC,QAAQ,CAAC,GAAG,CAA0B;IAE9C,gBAAgB;gBACJ,KAAK,EAAE,WAAW;IAsB9B,OAAO,KAAK,MAAM,GAUjB;IAGD;;;;;;;;;;;;OAYG;IACU,SAAS,CAAC,OAAO,CAAC,EAAE,gBAAgB,GAAG,OAAO,CAAC,SAAS,CAAC;IAQtE;;;;;;;;;;;;;;OAcG;IACU,YAAY,CAAC,OAAO,CAAC,EAAE,mBAAmB,GAAG,OAAO,CAAC,SAAS,CAAC;IAQ5E,OAAO,CAAC,oBAAoB;IAgB5B;;;;;;;;;;;;;;;;OAgBG;IACI,cAAc,CAAC,OAAO,EAAE,kBAAkB,GAAG,IAAI;IAiCxD;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ5C;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ7C;;;;;;;;;;;;;;;;OAgBG;IACU,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ3C;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACU,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAQ7C;;;;;;;;;;;;;;;;;;OAkBG;IACU,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;IAU/C;;;;;;;;;;;;;;;;OAgBG;WACW,yBAAyB,IAAI,YAAY,EAAE;IAGzD;;;;;OAKG;WACW,+BAA+B,CAAC,QAAQ,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,KAAK,IAAI,GAAG,mBAAmB;IAGlH;;;;;OAKG;WACW,yBAAyB,IAAI,sBAAsB;IAGjE;;;;;;OAMG;WACW,6BAA6B,IAAI,sBAAsB;IAGrE;;;;;;;;;OASG;WACW,2BAA2B,IAAI,sBAAsB;IAGnE;;;;;;;;OAQG;WACiB,uBAAuB,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAOrF;;;;;;;;OAQG;WACiB,2BAA2B,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAOzF;;;;;;;;OAQG;WACiB,yBAAyB,IAAI,OAAO,CAAC,6BAA6B,CAAC;IAUvF,OAAO,CAAC,OAAO;IAcf,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,0BAA0B;IAMlC,OAAO,CAAC,2BAA2B;IAWnC,OAAO,CAAC,qBAAqB;IAS7B,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,iBAAiB;IAIzB,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,WAAW;IASnB,OAAO,CAAC,mBAAmB;IAe3B,gBAAgB;IAChB,kBAAkB,IAAI,IAAI;IAa1B,gBAAgB;IACT,MAAM,IAAI,KAAK,CAAC,SAAS;CAwEjC" -+} -diff --git a/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts b/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts -new file mode 100644 -index 0000000..f919d3c ---- /dev/null -+++ b/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts -@@ -0,0 +1,107 @@ -+/// -+/// -+import type {HostComponent, ViewProps} from 'react-native'; -+import type {DirectEventHandler, Double, Int32} from 'react-native/Libraries/Types/CodegenTypes'; -+ -+export type VisionCameraComponentType = HostComponent; -+export interface NativeProps extends ViewProps { -+ enableGpuBuffers: boolean; -+ androidPreviewViewType?: string; -+ cameraId: string; -+ enableFrameProcessor: boolean; -+ enableLocation: boolean; -+ enableBufferCompression: boolean; -+ photoQualityBalance: string; -+ isActive: boolean; -+ photo?: boolean; -+ video?: boolean; -+ audio?: boolean; -+ torch?: string; -+ zoom?: Double; -+ exposure?: Double; -+ enableZoomGesture?: boolean; -+ enableFpsGraph?: boolean; -+ resizeMode?: string; -+ format?: Readonly<{ -+ supportsDepthCapture?: boolean; -+ photoHeight: Double; -+ photoWidth: Double; -+ videoHeight: Double; -+ videoWidth: Double; -+ maxISO: Double; -+ minISO: Double; -+ maxFps: Double; -+ minFps: Double; -+ fieldOfView: Double; -+ supportsVideoHDR: boolean; -+ supportsPhotoHDR: boolean; -+ autoFocusSystem: string; -+ videoStabilizationModes: string[]; -+ pixelFormats: string[]; -+ }>; -+ pixelFormat: string; -+ fps?: Int32; -+ videoHdr?: boolean; -+ photoHdr?: boolean; -+ lowLightBoost?: boolean; -+ videoStabilizationMode?: string; -+ enableDepthData?: boolean; -+ enablePortraitEffectsMatteDelivery?: boolean; -+ orientation?: string; -+ codeScannerOptions?: Readonly<{ -+ codeTypes?: string[]; -+ interval?: Double; -+ regionOfInterest?: Readonly<{ -+ x?: Double; -+ y?: Double; -+ width?: Double; -+ height?: Double; -+ }>; -+ }>; -+ onCodeScanned?: DirectEventHandler< -+ Readonly<{ -+ codes?: Readonly<{ -+ type?: string; -+ value?: string; -+ frame?: Readonly<{ -+ x: Double; -+ y: Double; -+ width: Double; -+ height: Double; -+ }>; -+ }>; -+ frame?: Readonly<{ -+ width: Int32; -+ height: Int32; -+ }>; -+ corners?: Readonly<{ -+ x: Double; -+ y: Double; -+ }>; -+ }> -+ >; -+ onShutter?: DirectEventHandler< -+ Readonly<{ -+ type: string; -+ }> -+ >; -+ onStarted?: DirectEventHandler>; -+ onStopped?: DirectEventHandler>; -+ onInitialized?: DirectEventHandler>; -+ onError?: DirectEventHandler< -+ Readonly<{ -+ code: string; -+ message: string; -+ cause: Readonly<{ -+ code: string; -+ domain: string; -+ message: string; -+ details: string; -+ }>; -+ }> -+ >; -+ onViewReady: DirectEventHandler>; -+} -+declare const _default: import('react-native/Libraries/Utilities/codegenNativeComponent').NativeComponentType; -+export default _default; -+//# sourceMappingURL=CameraViewNativeComponent.d.ts.map -diff --git a/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts.map b/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts.map -new file mode 100644 -index 0000000..61fb28a ---- /dev/null -+++ b/node_modules/react-native-vision-camera/lib/typescript/specs/CameraViewNativeComponent.d.ts.map -@@ -0,0 +1,10 @@ -+{ -+ "version": 3, -+ "file": "CameraViewNativeComponent.d.ts", -+ "sourceRoot": "", -+ "sources": [ -+ "../../../src/specs/CameraViewNativeComponent.ts" -+ ], -+ "names": [], -+ "mappings": ";;AACA,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,2CAA2C,CAAC;AAGnG,MAAM,MAAM,yBAAyB,GAAG,aAAa,CAAC,WAAW,CAAC,CAAC;AAEnE,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,gBAAgB,EAAE,OAAO,CAAC;IAC1B,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,oBAAoB,EAAE,OAAO,CAAC;IAC9B,cAAc,EAAE,OAAO,CAAC;IACxB,uBAAuB,EAAE,OAAO,CAAC;IACjC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,QAAQ,CAAC;QAChB,oBAAoB,CAAC,EAAE,OAAO,CAAC;QAC/B,WAAW,EAAE,MAAM,CAAC;QACpB,UAAU,EAAE,MAAM,CAAC;QACnB,WAAW,EAAE,MAAM,CAAC;QACpB,UAAU,EAAE,MAAM,CAAC;QACnB,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,WAAW,EAAE,MAAM,CAAC;QACpB,gBAAgB,EAAE,OAAO,CAAC;QAC1B,gBAAgB,EAAE,OAAO,CAAC;QAC1B,eAAe,EAAE,MAAM,CAAC;QACxB,uBAAuB,EAAE,MAAM,EAAE,CAAC;QAClC,YAAY,EAAE,MAAM,EAAE,CAAC;KACxB,CAAC,CAAC;IACH,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,CAAC,EAAE,KAAK,CAAC;IACZ,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,kCAAkC,CAAC,EAAE,OAAO,CAAC;IAC7C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,CAAC,EAAE,QAAQ,CAAC;QAC5B,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;QACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,gBAAgB,CAAC,EAAE,QAAQ,CAAC;YAC1B,CAAC,CAAC,EAAE,MAAM,CAAC;YACX,CAAC,CAAC,EAAE,MAAM,CAAC;YACX,KAAK,CAAC,EAAE,MAAM,CAAC;YACf,MAAM,CAAC,EAAE,MAAM,CAAC;SACjB,CAAC,CAAC;KACJ,CAAC,CAAC;IACH,aAAa,CAAC,EAAE,kBAAkB,CAChC,QAAQ,CAAC;QACP,KAAK,CAAC,EAAE,QAAQ,CAAC;YACf,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,KAAK,CAAC,EAAE,MAAM,CAAC;YACf,KAAK,CAAC,EAAE,QAAQ,CAAC;gBAAE,CAAC,EAAE,MAAM,CAAC;gBAAC,CAAC,EAAE,MAAM,CAAC;gBAAC,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAA;aAAC,CAAC,CAAC;SAC1E,CAAC,CAAC;QACH,KAAK,CAAC,EAAE,QAAQ,CAAC;YAAE,KAAK,EAAE,KAAK,CAAC;YAAC,MAAM,EAAE,KAAK,CAAA;SAAE,CAAC,CAAC;QAClD,OAAO,CAAC,EAAE,QAAQ,CAAC;YAAE,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;KAC9C,CAAC,CACH,CAAC;IACF,SAAS,CAAC,EAAE,kBAAkB,CAC5B,QAAQ,CAAC;QACP,IAAI,EAAE,MAAM,CAAC;KACd,CAAC,CACH,CAAC;IACF,SAAS,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;IAC7C,SAAS,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;IAC7C,aAAa,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;IACjD,OAAO,CAAC,EAAE,kBAAkB,CAC1B,QAAQ,CAAC;QACP,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,KAAK,EAAE,QAAQ,CAAC;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;KACrF,CAAC,CACH,CAAC;IACF,WAAW,EAAE,kBAAkB,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;CAC/C;;AAED,wBAAiE" -+} -diff --git a/node_modules/react-native-vision-camera/src/Camera.tsx b/node_modules/react-native-vision-camera/src/Camera.tsx -index afe056a..2c82a0b 100644 ---- a/node_modules/react-native-vision-camera/src/Camera.tsx -+++ b/node_modules/react-native-vision-camera/src/Camera.tsx -@@ -1,45 +1,38 @@ --import React from 'react' --import { findNodeHandle, StyleSheet } from 'react-native' --import type { CameraDevice } from './types/CameraDevice' --import type { CameraCaptureError } from './CameraError' --import { CameraRuntimeError, tryParseNativeCameraError, isErrorWithCause } from './CameraError' --import type { CameraProps, DrawableFrameProcessor, OnShutterEvent, ReadonlyFrameProcessor } from './types/CameraProps' --import { CameraModule } from './NativeCameraModule' --import type { PhotoFile, TakePhotoOptions } from './types/PhotoFile' --import type { Point } from './types/Point' --import type { RecordVideoOptions, VideoFile } from './types/VideoFile' --import { VisionCameraProxy } from './frame-processors/VisionCameraProxy' --import { CameraDevices } from './CameraDevices' --import type { EmitterSubscription, NativeSyntheticEvent, NativeMethods } from 'react-native' --import type { TakeSnapshotOptions } from './types/Snapshot' --import { SkiaCameraCanvas } from './skia/SkiaCameraCanvas' --import type { Frame } from './types/Frame' --import { FpsGraph, MAX_BARS } from './FpsGraph' --import type { -- AverageFpsChangedEvent, -- NativeCameraViewProps, -- OnCodeScannedEvent, -- OnErrorEvent, -- OutputOrientationChangedEvent, -- PreviewOrientationChangedEvent, --} from './NativeCameraView' --import { NativeCameraView } from './NativeCameraView' --import { RotationHelper } from './RotationHelper' -+import React from 'react'; -+import {findNodeHandle, StyleSheet} from 'react-native'; -+import type {EmitterSubscription, NativeMethods, NativeSyntheticEvent} from 'react-native'; -+import {CameraDevices} from './CameraDevices'; -+import type {CameraCaptureError} from './CameraError'; -+import {CameraRuntimeError, isErrorWithCause, tryParseNativeCameraError} from './CameraError'; -+import {FpsGraph, MAX_BARS} from './FpsGraph'; -+import {VisionCameraProxy} from './frame-processors/VisionCameraProxy'; -+import {CameraModule} from './NativeCameraModule'; -+import type {AverageFpsChangedEvent, NativeCameraViewProps, OnCodeScannedEvent, OnErrorEvent, OutputOrientationChangedEvent, PreviewOrientationChangedEvent} from './NativeCameraView'; -+import {NativeCameraView} from './NativeCameraView'; -+import {RotationHelper} from './RotationHelper'; -+import {SkiaCameraCanvas} from './skia/SkiaCameraCanvas'; -+import type {CameraDevice} from './types/CameraDevice'; -+import type {CameraProps, DrawableFrameProcessor, OnShutterEvent, ReadonlyFrameProcessor} from './types/CameraProps'; -+import type {Frame} from './types/Frame'; -+import type {PhotoFile, TakePhotoOptions} from './types/PhotoFile'; -+import type {Point} from './types/Point'; -+import type {TakeSnapshotOptions} from './types/Snapshot'; -+import type {RecordVideoOptions, VideoFile} from './types/VideoFile'; - - //#region Types --export type CameraPermissionStatus = 'granted' | 'not-determined' | 'denied' | 'restricted' --export type CameraPermissionRequestResult = 'granted' | 'denied' -+export type CameraPermissionStatus = 'granted' | 'not-determined' | 'denied' | 'restricted'; -+export type CameraPermissionRequestResult = 'granted' | 'denied'; - --type NativeRecordVideoOptions = Omit --type RefType = React.Component & Readonly -+type NativeRecordVideoOptions = Omit; -+type RefType = React.Component & Readonly; - interface CameraState { -- isRecordingWithFlash: boolean -- averageFpsSamples: number[] -+ isRecordingWithFlash: boolean; -+ averageFpsSamples: number[]; - } - //#endregion - - function isSkiaFrameProcessor(frameProcessor?: ReadonlyFrameProcessor | DrawableFrameProcessor): frameProcessor is DrawableFrameProcessor { -- return frameProcessor?.type === 'drawable-skia' -+ return frameProcessor?.type === 'drawable-skia'; - } - - //#region Camera Component -@@ -76,627 +69,629 @@ function isSkiaFrameProcessor(frameProcessor?: ReadonlyFrameProcessor | Drawable - * @component - */ - export class Camera extends React.PureComponent { -- /** @internal */ -- static displayName = 'Camera' -- /** @internal */ -- displayName = Camera.displayName -- private lastFrameProcessor: ((frame: Frame) => void) | undefined -- private isNativeViewMounted = false -- private lastUIRotation: number | undefined = undefined -- private rotationHelper = new RotationHelper() -- -- private readonly ref: React.RefObject -- -- /** @internal */ -- constructor(props: CameraProps) { -- super(props) -- this.onViewReady = this.onViewReady.bind(this) -- this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this) -- this.onInitialized = this.onInitialized.bind(this) -- this.onStarted = this.onStarted.bind(this) -- this.onStopped = this.onStopped.bind(this) -- this.onPreviewStarted = this.onPreviewStarted.bind(this) -- this.onPreviewStopped = this.onPreviewStopped.bind(this) -- this.onShutter = this.onShutter.bind(this) -- this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this) -- this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this) -- this.onError = this.onError.bind(this) -- this.onCodeScanned = this.onCodeScanned.bind(this) -- this.ref = React.createRef() -- this.lastFrameProcessor = undefined -- this.state = { -- isRecordingWithFlash: false, -- averageFpsSamples: [], -- } -- } -- -- private get handle(): number { -- const nodeHandle = findNodeHandle(this.ref.current) -- if (nodeHandle == null || nodeHandle === -1) { -- throw new CameraRuntimeError( -- 'system/view-not-found', -- "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?", -- ) -- } -- -- return nodeHandle -- } -- -- //#region View-specific functions (UIViewManager) -- /** -- * Take a single photo and write it's content to a temporary file. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * @example -- * ```ts -- * const photo = await camera.current.takePhoto({ -- * flash: 'on', -- * enableAutoRedEyeReduction: true -- * }) -- * ``` -- */ -- public async takePhoto(options?: TakePhotoOptions): Promise { -- try { -- return await CameraModule.takePhoto(this.handle, options ?? {}) -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- -- /** -- * Captures a snapshot of the Camera view and write it's content to a temporary file. -- * -- * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. -- * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * @example -- * ```ts -- * const snapshot = await camera.current.takeSnapshot({ -- * quality: 100 -- * }) -- * ``` -- */ -- public async takeSnapshot(options?: TakeSnapshotOptions): Promise { -- try { -- return await CameraModule.takeSnapshot(this.handle, options ?? {}) -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- -- private getBitRateMultiplier(bitRate: CameraProps['videoBitRate']): number { -- if (typeof bitRate === 'number' || bitRate == null) return 1 -- switch (bitRate) { -- case 'extra-low': -- return 0.6 -- case 'low': -- return 0.8 -- case 'normal': -- return 1 -- case 'high': -- return 1.2 -- case 'extra-high': -- return 1.4 -- } -- } -- -- /** -- * Start a new video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * setTimeout(() => { -- * camera.current.stopRecording() -- * }, 5000) -- * ``` -- */ -- public startRecording(options: RecordVideoOptions): void { -- const { onRecordingError, onRecordingFinished, ...passThruOptions } = options -- if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') -- throw new CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!') -- -- if (options.flash === 'on') { -- // Enable torch for video recording -- this.setState({ -- isRecordingWithFlash: true, -- }) -- } -- -- const onRecordCallback = (video?: VideoFile, error?: CameraCaptureError): void => { -- if (this.state.isRecordingWithFlash) { -- // disable torch again if it was enabled -- this.setState({ -- isRecordingWithFlash: false, -- }) -- } -- -- if (error != null) return onRecordingError(error) -- if (video != null) return onRecordingFinished(video) -- } -- -- const nativeRecordVideoOptions: NativeRecordVideoOptions = passThruOptions -- try { -- // TODO: Use TurboModules to make this awaitable. -- CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback) -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- -- /** -- * Pauses the current video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * // Start -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * await timeout(1000) -- * // Pause -- * await camera.current.pauseRecording() -- * await timeout(500) -- * // Resume -- * await camera.current.resumeRecording() -- * await timeout(2000) -- * // Stop -- * await camera.current.stopRecording() -- * ``` -- */ -- public async pauseRecording(): Promise { -- try { -- return await CameraModule.pauseRecording(this.handle) -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- -- /** -- * Resumes a currently paused video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * // Start -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * await timeout(1000) -- * // Pause -- * await camera.current.pauseRecording() -- * await timeout(500) -- * // Resume -- * await camera.current.resumeRecording() -- * await timeout(2000) -- * // Stop -- * await camera.current.stopRecording() -- * ``` -- */ -- public async resumeRecording(): Promise { -- try { -- return await CameraModule.resumeRecording(this.handle) -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- -- /** -- * Stop the current video recording. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => console.error(error), -- * }) -- * setTimeout(async () => { -- * await camera.current.stopRecording() -- * }, 5000) -- * ``` -- */ -- public async stopRecording(): Promise { -- try { -- return await CameraModule.stopRecording(this.handle) -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- -- /** -- * Cancel the current video recording. The temporary video file will be deleted, -- * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. -- * -- * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. -- * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -- * -- * @example -- * ```ts -- * await camera.current.startRecording({ -- * onRecordingFinished: (video) => console.log(video), -- * onRecordingError: (error) => { -- * if (error.code === 'capture/recording-canceled') { -- * // recording was canceled. -- * } else { -- * console.error(error) -- * } -- * }, -- * }) -- * setTimeout(async () => { -- * await camera.current.cancelRecording() -- * }, 5000) -- * ``` -- */ -- public async cancelRecording(): Promise { -- try { -- return await CameraModule.cancelRecording(this.handle) -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- -- /** -- * Focus the camera to a specific point in the coordinate system. -- * @param {Point} point The point to focus to. This should be relative -- * to the Camera view's coordinate system and is expressed in points. -- * * `(0, 0)` means **top left**. -- * * `(CameraView.width, CameraView.height)` means **bottom right**. -- * -- * Make sure the value doesn't exceed the CameraView's dimensions. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- * @example -- * ```ts -- * await camera.current.focus({ -- * x: tapEvent.x, -- * y: tapEvent.y -- * }) -- * ``` -- */ -- public async focus(point: Point): Promise { -- try { -- return await CameraModule.focus(this.handle, point) -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- //#endregion -- -- //#region Static Functions (NativeModule) -- /** -- * Get a list of all available camera devices on the current phone. -- * -- * If you use Hooks, use the `useCameraDevices(..)` hook instead. -- * -- * * For Camera Devices attached to the phone, it is safe to assume that this will never change. -- * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices -- * could change over time when the external Camera device gets plugged in or plugged out, so -- * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. -- * -- * @example -- * ```ts -- * const devices = Camera.getAvailableCameraDevices() -- * const backCameras = devices.filter((d) => d.position === "back") -- * const frontCameras = devices.filter((d) => d.position === "front") -- * ``` -- */ -- public static getAvailableCameraDevices(): CameraDevice[] { -- return CameraDevices.getAvailableCameraDevices() -- } -- /** -- * Adds a listener that gets called everytime the Camera Devices change, for example -- * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. -- * -- * If you use Hooks, use the `useCameraDevices()` hook instead. -- */ -- public static addCameraDevicesChangedListener(listener: (newDevices: CameraDevice[]) => void): EmitterSubscription { -- return CameraDevices.addCameraDevicesChangedListener(listener) -- } -- /** -- * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure -- * the user has permitted the app to use the camera. -- * -- * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. -- */ -- public static getCameraPermissionStatus(): CameraPermissionStatus { -- return CameraModule.getCameraPermissionStatus() -- } -- /** -- * Gets the current Microphone-Recording Permission Status. -- * Check this before enabling the `audio={...}` property to make sure the -- * user has permitted the app to use the microphone. -- * -- * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. -- */ -- public static getMicrophonePermissionStatus(): CameraPermissionStatus { -- return CameraModule.getMicrophonePermissionStatus() -- } -- /** -- * Gets the current Location Permission Status. -- * Check this before enabling the `location={...}` property to make sure the -- * the user has permitted the app to use the location. -- * -- * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. -- * -- * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. -- * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. -- */ -- public static getLocationPermissionStatus(): CameraPermissionStatus { -- return CameraModule.getLocationPermissionStatus() -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new camera permission status. -- * -- * If the user has previously blocked the app from using the camera, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- public static async requestCameraPermission(): Promise { -- try { -- return await CameraModule.requestCameraPermission() -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. -- * -- * If the user has previously blocked the app from using the microphone, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- public static async requestMicrophonePermission(): Promise { -- try { -- return await CameraModule.requestMicrophonePermission() -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- /** -- * Shows a "request permission" alert to the user, and resolves with the new location permission status. -- * -- * If the user has previously blocked the app from using the location, the alert will not be shown -- * and `"denied"` will be returned. -- * -- * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -- * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -- */ -- public static async requestLocationPermission(): Promise { -- try { -- return await CameraModule.requestLocationPermission() -- } catch (e) { -- throw tryParseNativeCameraError(e) -- } -- } -- //#endregion -- -- //#region Events (Wrapped to maintain reference equality) -- private onError(event: NativeSyntheticEvent): void { -- const error = event.nativeEvent -- const cause = isErrorWithCause(error.cause) ? error.cause : undefined -- // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work -- const cameraError = new CameraRuntimeError(error.code, error.message, cause) -- -- if (this.props.onError != null) { -- this.props.onError(cameraError) -- } else { -- // User didn't pass an `onError` handler, so just log it to console -- console.error(cameraError) -- } -- } -- -- private onInitialized(): void { -- this.props.onInitialized?.() -- } -- -- private onStarted(): void { -- this.props.onStarted?.() -- } -- -- private onStopped(): void { -- this.props.onStopped?.() -- } -- -- private onPreviewStarted(): void { -- this.props.onPreviewStarted?.() -- } -- -- private onPreviewStopped(): void { -- this.props.onPreviewStopped?.() -- } -- -- private onShutter(event: NativeSyntheticEvent): void { -- this.props.onShutter?.(event.nativeEvent) -- } -- -- private onOutputOrientationChanged({ nativeEvent: { outputOrientation } }: NativeSyntheticEvent): void { -- this.rotationHelper.outputOrientation = outputOrientation -- this.props.onOutputOrientationChanged?.(outputOrientation) -- this.maybeUpdateUIRotation() -- } -- -- private onPreviewOrientationChanged({ nativeEvent: { previewOrientation } }: NativeSyntheticEvent): void { -- this.rotationHelper.previewOrientation = previewOrientation -- this.props.onPreviewOrientationChanged?.(previewOrientation) -- this.maybeUpdateUIRotation() -- -- if (isSkiaFrameProcessor(this.props.frameProcessor)) { -- // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. -- this.props.frameProcessor.previewOrientation.value = previewOrientation -- } -- } -- -- private maybeUpdateUIRotation(): void { -- const uiRotation = this.rotationHelper.uiRotation -- if (uiRotation !== this.lastUIRotation) { -- this.props.onUIRotationChanged?.(uiRotation) -- this.lastUIRotation = uiRotation -- } -- } -- //#endregion -- -- private onCodeScanned(event: NativeSyntheticEvent): void { -- const codeScanner = this.props.codeScanner -- if (codeScanner == null) return -- -- codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame) -- } -- -- //#region Lifecycle -- private setFrameProcessor(frameProcessor: (frame: Frame) => void): void { -- VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor) -- } -- -- private unsetFrameProcessor(): void { -- VisionCameraProxy.removeFrameProcessor(this.handle) -- } -- -- private onViewReady(): void { -- this.isNativeViewMounted = true -- if (this.props.frameProcessor != null) { -- // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. -- this.setFrameProcessor(this.props.frameProcessor.frameProcessor) -- this.lastFrameProcessor = this.props.frameProcessor.frameProcessor -- } -- } -- -- private onAverageFpsChanged({ nativeEvent: { averageFps } }: NativeSyntheticEvent): void { -- this.setState((state) => { -- const averageFpsSamples = [...state.averageFpsSamples, averageFps] -- while (averageFpsSamples.length >= MAX_BARS + 1) { -- // we keep a maximum of 30 FPS samples in our history -- averageFpsSamples.shift() -- } -- -- return { -- ...state, -- averageFpsSamples: averageFpsSamples, -- } -- }) -- } -- -- /** @internal */ -- componentDidUpdate(): void { -- if (!this.isNativeViewMounted) return -- const frameProcessor = this.props.frameProcessor -- if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { -- // frameProcessor argument identity changed. Update native to reflect the change. -- if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor) -- else this.unsetFrameProcessor() -- -- this.lastFrameProcessor = frameProcessor?.frameProcessor -- } -- } -- //#endregion -- -- /** @internal */ -- public render(): React.ReactNode { -- // We remove the big `device` object from the props because we only need to pass `cameraId` to native. -- const { device, frameProcessor, codeScanner, enableFpsGraph, fps, videoBitRate, ...props } = this.props -- -- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- if (device == null) { -- throw new CameraRuntimeError( -- 'device/no-device', -- 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices', -- ) -- } -- -- const shouldEnableBufferCompression = props.video === true && frameProcessor == null -- const torch = this.state.isRecordingWithFlash ? 'on' : props.torch -- const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor) -- const shouldBeMirrored = device.position === 'front' -- -- // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple -- const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0] -- const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1] -- -- // bitrate is number (override) or string (multiplier) -- let bitRateMultiplier: number | undefined -- let bitRateOverride: number | undefined -- if (typeof videoBitRate === 'number') { -- // If the user passed an absolute number as a bit-rate, we just use this as a full override. -- bitRateOverride = videoBitRate -- } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { -- // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it -- bitRateMultiplier = this.getBitRateMultiplier(videoBitRate) -- } -- -- return ( -- -- {isRenderingWithSkia && ( -- -- )} -- {enableFpsGraph && ( -- -- )} -- -- ) -- } -+ /** @internal */ -+ static displayName = 'Camera'; -+ /** @internal */ -+ displayName = Camera.displayName; -+ private lastFrameProcessor: ((frame: Frame) => void) | undefined; -+ private isNativeViewMounted = false; -+ private lastUIRotation: number | undefined = undefined; -+ private rotationHelper = new RotationHelper(); -+ -+ private readonly ref: React.RefObject; -+ -+ /** @internal */ -+ constructor(props: CameraProps) { -+ super(props); -+ this.onViewReady = this.onViewReady.bind(this); -+ this.onAverageFpsChanged = this.onAverageFpsChanged.bind(this); -+ this.onInitialized = this.onInitialized.bind(this); -+ this.onStarted = this.onStarted.bind(this); -+ this.onStopped = this.onStopped.bind(this); -+ this.onPreviewStarted = this.onPreviewStarted.bind(this); -+ this.onPreviewStopped = this.onPreviewStopped.bind(this); -+ this.onShutter = this.onShutter.bind(this); -+ this.onOutputOrientationChanged = this.onOutputOrientationChanged.bind(this); -+ this.onPreviewOrientationChanged = this.onPreviewOrientationChanged.bind(this); -+ this.onError = this.onError.bind(this); -+ this.onCodeScanned = this.onCodeScanned.bind(this); -+ this.ref = React.createRef(); -+ this.lastFrameProcessor = undefined; -+ this.state = { -+ isRecordingWithFlash: false, -+ averageFpsSamples: [], -+ }; -+ } -+ -+ private get handle(): number { -+ const nodeHandle = findNodeHandle(this.ref.current); -+ if (nodeHandle == null || nodeHandle === -1) { -+ throw new CameraRuntimeError('system/view-not-found', "Could not get the Camera's native view tag! Does the Camera View exist in the native view-tree?"); -+ } -+ -+ return nodeHandle; -+ } -+ -+ //#region View-specific functions (UIViewManager) -+ /** -+ * Take a single photo and write it's content to a temporary file. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * const photo = await camera.current.takePhoto({ -+ * flash: 'on', -+ * enableAutoRedEyeReduction: true -+ * }) -+ * ``` -+ */ -+ public async takePhoto(options?: TakePhotoOptions): Promise { -+ try { -+ return await CameraModule.takePhoto(this.handle, options ?? {}); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ -+ /** -+ * Captures a snapshot of the Camera view and write it's content to a temporary file. -+ * -+ * - On iOS, `takeSnapshot` waits for a Frame from the video pipeline and therefore requires `video` to be enabled. -+ * - On Android, `takeSnapshot` performs a GPU view screenshot from the preview view. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while capturing the photo. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * const snapshot = await camera.current.takeSnapshot({ -+ * quality: 100 -+ * }) -+ * ``` -+ */ -+ public async takeSnapshot(options?: TakeSnapshotOptions): Promise { -+ try { -+ return await CameraModule.takeSnapshot(this.handle, options ?? {}); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ -+ private getBitRateMultiplier(bitRate: CameraProps['videoBitRate']): number { -+ if (typeof bitRate === 'number' || bitRate == null) return 1; -+ switch (bitRate) { -+ case 'extra-low': -+ return 0.6; -+ case 'low': -+ return 0.8; -+ case 'normal': -+ return 1; -+ case 'high': -+ return 1.2; -+ case 'extra-high': -+ return 1.4; -+ } -+ } -+ -+ /** -+ * Start a new video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while starting the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * setTimeout(() => { -+ * camera.current.stopRecording() -+ * }, 5000) -+ * ``` -+ */ -+ public startRecording(options: RecordVideoOptions): void { -+ const {onRecordingError, onRecordingFinished, ...passThruOptions} = options; -+ if (typeof onRecordingError !== 'function' || typeof onRecordingFinished !== 'function') -+ throw new CameraRuntimeError('parameter/invalid-parameter', 'The onRecordingError or onRecordingFinished functions were not set!'); -+ -+ if (options.flash === 'on') { -+ // Enable torch for video recording -+ this.setState({ -+ isRecordingWithFlash: true, -+ }); -+ } -+ -+ const onRecordCallback = (video?: VideoFile, error?: CameraCaptureError): void => { -+ if (this.state.isRecordingWithFlash) { -+ // disable torch again if it was enabled -+ this.setState({ -+ isRecordingWithFlash: false, -+ }); -+ } -+ -+ if (error != null) return onRecordingError(error); -+ if (video != null) return onRecordingFinished(video); -+ }; -+ -+ const nativeRecordVideoOptions: NativeRecordVideoOptions = passThruOptions; -+ try { -+ // TODO: Use TurboModules to make this awaitable. -+ CameraModule.startRecording(this.handle, nativeRecordVideoOptions, onRecordCallback); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ -+ /** -+ * Pauses the current video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while pausing the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * // Start -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * await timeout(1000) -+ * // Pause -+ * await camera.current.pauseRecording() -+ * await timeout(500) -+ * // Resume -+ * await camera.current.resumeRecording() -+ * await timeout(2000) -+ * // Stop -+ * await camera.current.stopRecording() -+ * ``` -+ */ -+ public async pauseRecording(): Promise { -+ try { -+ return await CameraModule.pauseRecording(this.handle); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ -+ /** -+ * Resumes a currently paused video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while resuming the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * // Start -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * await timeout(1000) -+ * // Pause -+ * await camera.current.pauseRecording() -+ * await timeout(500) -+ * // Resume -+ * await camera.current.resumeRecording() -+ * await timeout(2000) -+ * // Stop -+ * await camera.current.stopRecording() -+ * ``` -+ */ -+ public async resumeRecording(): Promise { -+ try { -+ return await CameraModule.resumeRecording(this.handle); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ -+ /** -+ * Stop the current video recording. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while stopping the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => console.error(error), -+ * }) -+ * setTimeout(async () => { -+ * await camera.current.stopRecording() -+ * }, 5000) -+ * ``` -+ */ -+ public async stopRecording(): Promise { -+ try { -+ return await CameraModule.stopRecording(this.handle); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ -+ /** -+ * Cancel the current video recording. The temporary video file will be deleted, -+ * and the `startRecording`'s `onRecordingError` callback will be invoked with a `capture/recording-canceled` error. -+ * -+ * @throws {@linkcode CameraCaptureError} When any kind of error occured while canceling the video recording. -+ * Use the {@linkcode CameraCaptureError.code | code} property to get the actual error -+ * -+ * @example -+ * ```ts -+ * await camera.current.startRecording({ -+ * onRecordingFinished: (video) => console.log(video), -+ * onRecordingError: (error) => { -+ * if (error.code === 'capture/recording-canceled') { -+ * // recording was canceled. -+ * } else { -+ * console.error(error) -+ * } -+ * }, -+ * }) -+ * setTimeout(async () => { -+ * await camera.current.cancelRecording() -+ * }, 5000) -+ * ``` -+ */ -+ public async cancelRecording(): Promise { -+ try { -+ return await CameraModule.cancelRecording(this.handle); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ -+ /** -+ * Focus the camera to a specific point in the coordinate system. -+ * @param {Point} point The point to focus to. This should be relative -+ * to the Camera view's coordinate system and is expressed in points. -+ * * `(0, 0)` means **top left**. -+ * * `(CameraView.width, CameraView.height)` means **bottom right**. -+ * -+ * Make sure the value doesn't exceed the CameraView's dimensions. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while focussing. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ * @example -+ * ```ts -+ * await camera.current.focus({ -+ * x: tapEvent.x, -+ * y: tapEvent.y -+ * }) -+ * ``` -+ */ -+ public async focus(point: Point): Promise { -+ try { -+ return await CameraModule.focus(this.handle, point); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ //#endregion -+ -+ //#region Static Functions (NativeModule) -+ /** -+ * Get a list of all available camera devices on the current phone. -+ * -+ * If you use Hooks, use the `useCameraDevices(..)` hook instead. -+ * -+ * * For Camera Devices attached to the phone, it is safe to assume that this will never change. -+ * * For external Camera Devices (USB cameras, Mac continuity cameras, etc.) the available Camera Devices -+ * could change over time when the external Camera device gets plugged in or plugged out, so -+ * use {@link addCameraDevicesChangedListener | addCameraDevicesChangedListener(...)} to listen for such changes. -+ * -+ * @example -+ * ```ts -+ * const devices = Camera.getAvailableCameraDevices() -+ * const backCameras = devices.filter((d) => d.position === "back") -+ * const frontCameras = devices.filter((d) => d.position === "front") -+ * ``` -+ */ -+ public static getAvailableCameraDevices(): CameraDevice[] { -+ return CameraDevices.getAvailableCameraDevices(); -+ } -+ /** -+ * Adds a listener that gets called everytime the Camera Devices change, for example -+ * when an external Camera Device (USB or continuity Camera) gets plugged in or plugged out. -+ * -+ * If you use Hooks, use the `useCameraDevices()` hook instead. -+ */ -+ public static addCameraDevicesChangedListener(listener: (newDevices: CameraDevice[]) => void): EmitterSubscription { -+ return CameraDevices.addCameraDevicesChangedListener(listener); -+ } -+ /** -+ * Gets the current Camera Permission Status. Check this before mounting the Camera to ensure -+ * the user has permitted the app to use the camera. -+ * -+ * To actually prompt the user for camera permission, use {@linkcode Camera.requestCameraPermission | requestCameraPermission()}. -+ */ -+ public static getCameraPermissionStatus(): CameraPermissionStatus { -+ return CameraModule.getCameraPermissionStatus(); -+ } -+ /** -+ * Gets the current Microphone-Recording Permission Status. -+ * Check this before enabling the `audio={...}` property to make sure the -+ * user has permitted the app to use the microphone. -+ * -+ * To actually prompt the user for microphone permission, use {@linkcode Camera.requestMicrophonePermission | requestMicrophonePermission()}. -+ */ -+ public static getMicrophonePermissionStatus(): CameraPermissionStatus { -+ return CameraModule.getMicrophonePermissionStatus(); -+ } -+ /** -+ * Gets the current Location Permission Status. -+ * Check this before enabling the `location={...}` property to make sure the -+ * the user has permitted the app to use the location. -+ * -+ * To actually prompt the user for location permission, use {@linkcode Camera.requestLocationPermission | requestLocationPermission()}. -+ * -+ * Note: This method will throw a `system/location-not-enabled` error if the Location APIs are not enabled at build-time. -+ * See [the "GPS Location Tags" documentation](https://react-native-vision-camera.com/docs/guides/location) for more information. -+ */ -+ public static getLocationPermissionStatus(): CameraPermissionStatus { -+ return CameraModule.getLocationPermissionStatus(); -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new camera permission status. -+ * -+ * If the user has previously blocked the app from using the camera, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ public static async requestCameraPermission(): Promise { -+ try { -+ return await CameraModule.requestCameraPermission(); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new microphone permission status. -+ * -+ * If the user has previously blocked the app from using the microphone, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ public static async requestMicrophonePermission(): Promise { -+ try { -+ return await CameraModule.requestMicrophonePermission(); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ /** -+ * Shows a "request permission" alert to the user, and resolves with the new location permission status. -+ * -+ * If the user has previously blocked the app from using the location, the alert will not be shown -+ * and `"denied"` will be returned. -+ * -+ * @throws {@linkcode CameraRuntimeError} When any kind of error occured while requesting permission. -+ * Use the {@linkcode CameraRuntimeError.code | code} property to get the actual error -+ */ -+ public static async requestLocationPermission(): Promise { -+ try { -+ return await CameraModule.requestLocationPermission(); -+ } catch (e) { -+ throw tryParseNativeCameraError(e); -+ } -+ } -+ //#endregion -+ -+ //#region Events (Wrapped to maintain reference equality) -+ private onError(event: NativeSyntheticEvent): void { -+ const error = event.nativeEvent; -+ const cause = isErrorWithCause(error.cause) ? error.cause : undefined; -+ // @ts-expect-error We're casting from unknown bridge types to TS unions, I expect it to hopefully work -+ const cameraError = new CameraRuntimeError(error.code, error.message, cause); -+ -+ if (this.props.onError != null) { -+ this.props.onError(cameraError); -+ } else { -+ // User didn't pass an `onError` handler, so just log it to console -+ console.error(cameraError); -+ } -+ } -+ -+ private onInitialized(): void { -+ this.props.onInitialized?.(); -+ } -+ -+ private onStarted(): void { -+ this.props.onStarted?.(); -+ } -+ -+ private onStopped(): void { -+ this.props.onStopped?.(); -+ } -+ -+ private onPreviewStarted(): void { -+ this.props.onPreviewStarted?.(); -+ } -+ -+ private onPreviewStopped(): void { -+ this.props.onPreviewStopped?.(); -+ } -+ -+ private onShutter(event: NativeSyntheticEvent): void { -+ this.props.onShutter?.(event.nativeEvent); -+ } -+ -+ private onOutputOrientationChanged({nativeEvent: {outputOrientation}}: NativeSyntheticEvent): void { -+ this.rotationHelper.outputOrientation = outputOrientation; -+ this.props.onOutputOrientationChanged?.(outputOrientation); -+ this.maybeUpdateUIRotation(); -+ } -+ -+ private onPreviewOrientationChanged({nativeEvent: {previewOrientation}}: NativeSyntheticEvent): void { -+ this.rotationHelper.previewOrientation = previewOrientation; -+ this.props.onPreviewOrientationChanged?.(previewOrientation); -+ this.maybeUpdateUIRotation(); -+ -+ if (isSkiaFrameProcessor(this.props.frameProcessor)) { -+ // If we have a Skia Frame Processor, we need to update it's orientation so it knows how to render. -+ this.props.frameProcessor.previewOrientation.value = previewOrientation; -+ } -+ } -+ -+ private maybeUpdateUIRotation(): void { -+ const uiRotation = this.rotationHelper.uiRotation; -+ if (uiRotation !== this.lastUIRotation) { -+ this.props.onUIRotationChanged?.(uiRotation); -+ this.lastUIRotation = uiRotation; -+ } -+ } -+ //#endregion -+ -+ private onCodeScanned(event: NativeSyntheticEvent): void { -+ const codeScanner = this.props.codeScanner; -+ if (codeScanner == null) return; -+ -+ codeScanner.onCodeScanned(event.nativeEvent.codes, event.nativeEvent.frame); -+ } -+ -+ //#region Lifecycle -+ private setFrameProcessor(frameProcessor: (frame: Frame) => void): void { -+ VisionCameraProxy.setFrameProcessor(this.handle, frameProcessor); -+ } -+ -+ private unsetFrameProcessor(): void { -+ VisionCameraProxy.removeFrameProcessor(this.handle); -+ } -+ -+ private onViewReady(): void { -+ this.isNativeViewMounted = true; -+ if (this.props.frameProcessor != null) { -+ // user passed a `frameProcessor` but we didn't set it yet because the native view was not mounted yet. set it now. -+ this.setFrameProcessor(this.props.frameProcessor.frameProcessor); -+ this.lastFrameProcessor = this.props.frameProcessor.frameProcessor; -+ } -+ } -+ -+ private onAverageFpsChanged({nativeEvent: {averageFps}}: NativeSyntheticEvent): void { -+ this.setState((state) => { -+ const averageFpsSamples = [...state.averageFpsSamples, averageFps]; -+ while (averageFpsSamples.length >= MAX_BARS + 1) { -+ // we keep a maximum of 30 FPS samples in our history -+ averageFpsSamples.shift(); -+ } -+ -+ return { -+ ...state, -+ averageFpsSamples: averageFpsSamples, -+ }; -+ }); -+ } -+ -+ /** @internal */ -+ componentDidUpdate(): void { -+ if (!this.isNativeViewMounted) return; -+ const frameProcessor = this.props.frameProcessor; -+ if (frameProcessor?.frameProcessor !== this.lastFrameProcessor) { -+ // frameProcessor argument identity changed. Update native to reflect the change. -+ if (frameProcessor != null) this.setFrameProcessor(frameProcessor.frameProcessor); -+ else this.unsetFrameProcessor(); -+ -+ this.lastFrameProcessor = frameProcessor?.frameProcessor; -+ } -+ } -+ //#endregion -+ -+ /** @internal */ -+ public render(): React.ReactNode { -+ // We remove the big `device` object from the props because we only need to pass `cameraId` to native. -+ const {device, frameProcessor, codeScanner, enableFpsGraph, fps, videoBitRate, ...props} = this.props; -+ -+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -+ if (device == null) { -+ throw new CameraRuntimeError( -+ 'device/no-device', -+ 'Camera: `device` is null! Select a valid Camera device. See: https://mrousavy.com/react-native-vision-camera/docs/guides/devices', -+ ); -+ } -+ -+ const shouldEnableBufferCompression = props.video === true && frameProcessor == null; -+ const torch = this.state.isRecordingWithFlash ? 'on' : props.torch; -+ const isRenderingWithSkia = isSkiaFrameProcessor(frameProcessor); -+ const shouldBeMirrored = device.position === 'front'; -+ -+ // minFps/maxFps is either the fixed `fps` value, or a value from the [min, max] tuple -+ const minFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[0]; -+ const maxFps = fps == null ? undefined : typeof fps === 'number' ? fps : fps[1]; -+ -+ // bitrate is number (override) or string (multiplier) -+ let bitRateMultiplier: number | undefined; -+ let bitRateOverride: number | undefined; -+ if (typeof videoBitRate === 'number') { -+ // If the user passed an absolute number as a bit-rate, we just use this as a full override. -+ bitRateOverride = videoBitRate; -+ } else if (typeof videoBitRate === 'string' && videoBitRate !== 'normal') { -+ // If the user passed 'low'/'normal'/'high', we need to apply this as a multiplier to the native bitrate instead of absolutely setting it -+ bitRateMultiplier = this.getBitRateMultiplier(videoBitRate); -+ } -+ -+ return ( -+ -+ {isRenderingWithSkia && ( -+ -+ )} -+ {enableFpsGraph && ( -+ -+ )} -+ -+ ); -+ } - } - //#endregion - - const styles = StyleSheet.create({ -- customPreviewView: { -- flex: 1, -- }, -- fpsGraph: { -- elevation: 1, -- position: 'absolute', -- left: 15, -- top: 30, -- }, --}) -+ customPreviewView: { -+ flex: 1, -+ }, -+ fpsGraph: { -+ elevation: 1, -+ position: 'absolute', -+ left: 15, -+ top: 30, -+ }, -+}); -diff --git a/node_modules/react-native-vision-camera/src/specs/CameraViewNativeComponent.ts b/node_modules/react-native-vision-camera/src/specs/CameraViewNativeComponent.ts -new file mode 100644 -index 0000000..b2c83cb ---- /dev/null -+++ b/node_modules/react-native-vision-camera/src/specs/CameraViewNativeComponent.ts -@@ -0,0 +1,91 @@ -+/* eslint-disable @typescript-eslint/ban-types */ -+import type {HostComponent, ViewProps} from 'react-native'; -+import type {DirectEventHandler, Double, Int32} from 'react-native/Libraries/Types/CodegenTypes'; -+import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; -+ -+export type VisionCameraComponentType = HostComponent; -+ -+export interface NativeProps extends ViewProps { -+ enableGpuBuffers: boolean; -+ androidPreviewViewType?: string; -+ cameraId: string; -+ enableFrameProcessor: boolean; -+ enableLocation: boolean; -+ enableBufferCompression: boolean; -+ photoQualityBalance: string; -+ isActive: boolean; -+ photo?: boolean; -+ video?: boolean; -+ audio?: boolean; -+ torch?: string; -+ zoom?: Double; -+ exposure?: Double; -+ enableZoomGesture?: boolean; -+ enableFpsGraph?: boolean; -+ resizeMode?: string; -+ format?: Readonly<{ -+ supportsDepthCapture?: boolean; -+ photoHeight: Double; -+ photoWidth: Double; -+ videoHeight: Double; -+ videoWidth: Double; -+ maxISO: Double; -+ minISO: Double; -+ maxFps: Double; -+ minFps: Double; -+ fieldOfView: Double; -+ supportsVideoHDR: boolean; -+ supportsPhotoHDR: boolean; -+ autoFocusSystem: string; -+ videoStabilizationModes: string[]; -+ pixelFormats: string[]; -+ }>; -+ pixelFormat: string; -+ fps?: Int32; -+ videoHdr?: boolean; // not sure why was int on native side -+ photoHdr?: boolean; // not sure why was int on native side -+ lowLightBoost?: boolean; // same -+ videoStabilizationMode?: string; -+ enableDepthData?: boolean; -+ enablePortraitEffectsMatteDelivery?: boolean; -+ orientation?: string; -+ codeScannerOptions?: Readonly<{ -+ codeTypes?: string[]; -+ interval?: Double; -+ regionOfInterest?: Readonly<{ -+ x?: Double; -+ y?: Double; -+ width?: Double; -+ height?: Double; -+ }>; -+ }>; -+ onCodeScanned?: DirectEventHandler< -+ Readonly<{ -+ codes?: Readonly<{ -+ type?: string; -+ value?: string; -+ frame?: Readonly<{x: Double; y: Double; width: Double; height: Double}>; -+ }>; -+ frame?: Readonly<{width: Int32; height: Int32}>; -+ corners?: Readonly<{x: Double; y: Double}>; -+ }> -+ >; -+ onShutter?: DirectEventHandler< -+ Readonly<{ -+ type: string; -+ }> -+ >; -+ onStarted?: DirectEventHandler>; -+ onStopped?: DirectEventHandler>; -+ onInitialized?: DirectEventHandler>; -+ onError?: DirectEventHandler< -+ Readonly<{ -+ code: string; -+ message: string; -+ cause: Readonly<{code: string; domain: string; message: string; details: string}>; -+ }> -+ >; -+ onViewReady: DirectEventHandler>; -+} -+ -+export default codegenNativeComponent('CameraView'); From 081bff37524e4eb37203057935799c87fbbc995c Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Mon, 25 Aug 2025 17:14:25 +0200 Subject: [PATCH 38/50] fix(63871): remove redundant patches --- patches/@onfido+react-native-sdk+10.6.0.patch | 1320 ----------------- ...android-enable-16kb-memory-page-size.patch | 17 - patches/@onfido/react-native-sdk/details.md | 8 - ...android-enable-16kb-memory-page-size.patch | 30 - 4 files changed, 1375 deletions(-) delete mode 100644 patches/@onfido+react-native-sdk+10.6.0.patch delete mode 100644 patches/@onfido/react-native-sdk/@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch delete mode 100644 patches/@onfido/react-native-sdk/details.md delete mode 100644 patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch diff --git a/patches/@onfido+react-native-sdk+10.6.0.patch b/patches/@onfido+react-native-sdk+10.6.0.patch deleted file mode 100644 index 4b7a1ca4741a7..0000000000000 --- a/patches/@onfido+react-native-sdk+10.6.0.patch +++ /dev/null @@ -1,1320 +0,0 @@ -diff --git a/node_modules/@onfido/react-native-sdk/.yarnrc b/node_modules/@onfido/react-native-sdk/.yarnrc -new file mode 100644 -index 0000000..08b5d85 ---- /dev/null -+++ b/node_modules/@onfido/react-native-sdk/.yarnrc -@@ -0,0 +1 @@ -+registry "https://registry.npmjs.org" -\ No newline at end of file -diff --git a/node_modules/@onfido/react-native-sdk/CHANGELOG.md b/node_modules/@onfido/react-native-sdk/CHANGELOG.md -index 6491cb5..398e154 100644 ---- a/node_modules/@onfido/react-native-sdk/CHANGELOG.md -+++ b/node_modules/@onfido/react-native-sdk/CHANGELOG.md -@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file. - The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) - and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - -+## [10.7.0] - 2024-02-01 -+ -+### Changed: -+ -+- Updated underlying Onfido native SDK version: -+ - iOS 29.7.x (up from 29.6.x) -+ - Android 19.6.x (up from 19.5.x) -+ -+### Fixed: -+ -+- Fixed the behaviour when using the configuration option `allowedDocumentTypes`: -+ - The order of steps (and SDK screens) has now been aligned with the native SDKs, for both Android and iOS. The order to be used is: Welcome - Document capture - Proof of address - Face capture - Final screen. -+ - The Welcome screen now correctly takes into account the `welcome` (boolean) flag in the configuration. -+ - ## [10.6.0] - 2023-12-11 - - ### Changed: -diff --git a/node_modules/@onfido/react-native-sdk/README.md b/node_modules/@onfido/react-native-sdk/README.md -index 03fb8da..0159a6f 100644 ---- a/node_modules/@onfido/react-native-sdk/README.md -+++ b/node_modules/@onfido/react-native-sdk/README.md -@@ -30,9 +30,7 @@ - - [Introduction](#introduction) - - [Implementation](#implementation) - - [User data](#user-data) --- [Creating checks](#creating-checks) -- - [1. Obtaining an API token](#1-obtaining-an-api-token-1) -- - [2. Creating a check](#2-creating-a-check) -+- [Generating verification reports](#generating-verification-reports) - - [Theme Customization](#theme-customization) - - [Android](#android-1) - - [iOS](#ios-1) -@@ -57,7 +55,7 @@ This SDK provides a drop-in set of screens and tools for react native applicatio - > - > If you are integrating using Onfido Studio please see our [Studio integration guide](ONFIDO_STUDIO.md) - --\* **Note**: the SDK is only responsible for capturing and uploading photos/videos. You still need to access the [Onfido API](https://documentation.onfido.com/) to create and manage checks. -+\* **Note**: The SDK is only responsible for capturing and uploading document photos, live selfies, live videos and motion captures. You still need to access the [Onfido API](https://documentation.onfido.com/) to manage applicants and [Onfido Studio](https://developers.onfido.com/guide/onfido-studio-product) to build verification workflows. - - * Supports iOS 11+ - * Supports Xcode 13+ -@@ -600,34 +598,17 @@ let byteArrayString = mediaResult.fileData; - let base64FileData = Onfido.byteArrayStringToBase64(byteArrayString); - ``` - --## Creating checks -+## Generating verification reports - --As the SDK is only responsible for capturing and uploading photos/videos, you would need to start a check on your backend server using the [Onfido API](https://documentation.onfido.com/). -+While the SDK is responsible for capturing and uploading document photos, live selfies, live videos and motion captures, identity verification reports themselves are generated based on workflows created using [Onfido Studio](https://developers.onfido.com/guide/onfido-studio-product). - --### 1. Obtaining an API token -- --All API requests must be made with an API token included in the request headers. You can find your API token (not to be mistaken with the mobile SDK token) inside your [Onfido Dashboard](https://onfido.com/dashboard/api/tokens). -- --Refer to the [Authentication](https://documentation.onfido.com/#authentication) section in the API documentation for details. For testing, you should be using the sandbox, and not the live, token. -- --### 2. Creating a check -- --You will need to create a check by making a request to the [create check endpoint](https://documentation.onfido.com/#create-check), using the applicant id. If you are just verifying a document, you only have to include a [document report](https://documentation.onfido.com/#document-report) as part of the check. On the other hand, if you are verifying a document and a face photo/live video, you will also have to include a [facial similarity report](https://documentation.onfido.com/#facial-similarity-report) with the corresponding values: `facial_similarity_photo` for the photo option and `facial_similarity_video` for the video option. -- --```shell --$ curl https://api.onfido.com/v3/checks \ -- -H 'Authorization: Token token=YOUR_API_TOKEN' \ -- -d 'applicant_id=YOUR_APPLICANT_ID' \ -- -d 'report_names=[document,facial_similarity_photo]' --``` -- --**Note**: You can also submit the POST request in JSON format. -+For a step-by-step walkthrough of creating an identity verification using Onfido Studio and our SDKs, please refer to our [Quick Start Guide](https://developers.onfido.com/guide/quick-start-guide). - --You will receive a response containing the check id instantly. As document and facial similarity reports do not always return actual [results](https://documentation.onfido.com/#results) straightaway, you need to set up a webhook to get notified when the results are ready. -+Alternatively, you can [create checks](https://documentation.onfido.com/#create-check) and [retrieve report results](https://documentation.onfido.com/#retrieve-report) manually using the Onfido API. You can also configure [webhooks](https://documentation.onfido.com/#webhooks) to be notified asynchronously of report results. - --Finally, as you are testing with the sandbox token, please be aware that the results are pre-determined. You can learn more about sandbox responses [here](https://documentation.onfido.com/#pre-determined-responses). -+**Note**: If you're using API v2 for API calls, please check out [API v2 to v3 migration guide](https://developers.onfido.com/guide/v2-to-v3-migration-guide#checks-in-api-v3) to understand which changes need to be applied before starting to use API v3. - --**Note**: If you're using API v2, please check out [API v2 to v3 migration guide](https://developers.onfido.com/guide/v2-to-v3-migration-guide#checks-in-api-v3) to understand which changes need to be applied before starting to use API v3. -+**Note**: If you are testing with a sandbox token, please be aware that report results are pre-determined. You can learn more about sandbox responses [here](https://documentation.onfido.com/#pre-determined-responses). - - ## Theme Customization - -diff --git a/node_modules/@onfido/react-native-sdk/android/.project b/node_modules/@onfido/react-native-sdk/android/.project -deleted file mode 100644 -index 357b6fc..0000000 ---- a/node_modules/@onfido/react-native-sdk/android/.project -+++ /dev/null -@@ -1,34 +0,0 @@ -- -- -- android -- Project android created by Buildship. -- -- -- -- -- org.eclipse.jdt.core.javabuilder -- -- -- -- -- org.eclipse.buildship.core.gradleprojectbuilder -- -- -- -- -- -- org.eclipse.jdt.core.javanature -- org.eclipse.buildship.core.gradleprojectnature -- -- -- -- 1684767677408 -- -- 30 -- -- org.eclipse.core.resources.regexFilterMatcher -- node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ -- -- -- -- -diff --git a/node_modules/@onfido/react-native-sdk/android/bin/README.md b/node_modules/@onfido/react-native-sdk/android/bin/README.md -deleted file mode 100644 -index 6746135..0000000 ---- a/node_modules/@onfido/react-native-sdk/android/bin/README.md -+++ /dev/null -@@ -1,33 +0,0 @@ --README --====== -- --If you want to publish the lib as a maven dependency, follow these steps before publishing a new version to npm: -- --1. Be sure to have the Android [SDK](https://developer.android.com/studio/index.html) and [NDK](https://developer.android.com/ndk/guides/index.html) installed --2. Be sure to have a `local.properties` file in this folder that points to the Android SDK and NDK --``` --ndk.dir=/Users/{username}/Library/Android/sdk/ndk-bundle --sdk.dir=/Users/{username}/Library/Android/sdk --``` --3. Run `./gradlew publishToMavenLocal` --4. Go to the `~/.m2` directory. Verify that the pom file was generated successfully with the correct version. -- -- --How to quickly develop the Android Java code using the TestApp: --====== --React Native's "Fast Refresh" feature will not update Java code as you make changes, and reinstalling all npm packages is slow. Instead, you can follow this process to recompile only the Java code when you make changes. -- --In one console, from the `TestApp/` directory, run the following commands. It may take 2 or more minutes to build. You only need to run this once: leave it running in the background while you develop. --```shell --rm -rf node_modules/ && yarn && cd .. && watchman watch-del-all && npx react-native start --reset-cache --``` -- --In a second console, from the `TestApp/` directory, update the Android package and launch the virtual device. Run this each time you change Android code. --```shell --rsync -av ../ node_modules/@onfido/react-native-sdk/ --exclude=TestApp --exclude=SampleApp --exclude=node_modules --exclude=android/build --exclude=.git && npx react-native run-android --``` -- --How to run the tests --====== --1. Run "yarn" or "npm install" from the project root. This will download the React Native Facebook bridge library --2. Run "./gradlew test" from the "/android" directory. -diff --git a/node_modules/@onfido/react-native-sdk/android/bin/build.gradle b/node_modules/@onfido/react-native-sdk/android/bin/build.gradle -deleted file mode 100644 -index d2810b6..0000000 ---- a/node_modules/@onfido/react-native-sdk/android/bin/build.gradle -+++ /dev/null -@@ -1,154 +0,0 @@ --// android/build.gradle -- --// based on: --// --// * https://github.com/facebook/react-native/blob/0.60-stable/template/android/build.gradle --// original location: --// - https://github.com/facebook/react-native/blob/0.58-stable/local-cli/templates/HelloWorld/android/build.gradle --// --// * https://github.com/facebook/react-native/blob/0.60-stable/template/android/app/build.gradle --// original location: --// - https://github.com/facebook/react-native/blob/0.58-stable/local-cli/templates/HelloWorld/android/app/build.gradle -- --def DEFAULT_COMPILE_SDK_VERSION = 32 --def DEFAULT_MIN_SDK_VERSION = 21 --def DEFAULT_TARGET_SDK_VERSION = 31 --def NATIVE_ANDROID_SDK_VERSION = "16.3.+" -- --def safeExtGet(prop, fallback) { -- rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback --} -- --def androidExclusion = [ -- '**/databinding/**/*.*', -- '**/android/databinding/*Binding.*', -- '**/BR.*', -- '**/R.*', -- '**/R$*.*', -- '**/BuildConfig.*', -- '**/Manifest*.*', -- '**/*_MembersInjector.*', -- '**/Dagger*Component.*', -- '**/Dagger*Component$Builder.*', -- '**/*Module_*Factory.*', -- '**/*Fragment*.*', -- '**/*Activity*.*', -- '**/*Adapter*.*', -- '**/*ViewPager*.*', -- '**/*ViewHolder*.*', -- '**/*Module*.*' --] -- --buildscript { -- // The Android Gradle plugin is only required when opening the android folder stand-alone. -- // This avoids unnecessary downloads and potential conflicts when the library is included as a -- // module dependency in an application project. -- // ref: https://docs.gradle.org/current/userguide/tutorial_using_tasks.html#sec:build_script_external_dependencies -- if (project == rootProject) { -- repositories { -- mavenCentral() -- google() -- jcenter() -- } -- dependencies { -- classpath 'com.android.tools.build:gradle:7.4.2' -- } -- } --} -- --apply plugin: 'com.android.library' --apply plugin: 'maven-publish' --apply plugin: 'jacoco' -- --apply from: 'publish.gradle' -- --android { -- compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION) -- defaultConfig { -- minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION) -- targetSdkVersion safeExtGet('targetSdkVersion', DEFAULT_TARGET_SDK_VERSION) -- versionCode 1 -- versionName "1.0" -- multiDexEnabled true -- consumerProguardFiles 'proguard-rules.pro' -- } -- lintOptions { -- abortOnError false -- } -- -- buildFeatures { -- buildConfig = false -- } -- -- compileOptions { -- sourceCompatibility JavaVersion.VERSION_1_8 -- targetCompatibility JavaVersion.VERSION_1_8 -- } --} -- --repositories { -- // ref: https://www.baeldung.com/maven-local-repository -- mavenLocal() -- mavenCentral() -- maven { -- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm -- url "$rootDir/../node_modules/react-native/android" -- } -- maven { -- // Android JSC is installed from npm -- url "$rootDir/../node_modules/jsc-android/dist" -- } -- google() -- jcenter() --} -- --dependencies { -- //noinspection GradleDynamicVersion -- implementation 'com.facebook.react:react-native:+' // From node_modules -- implementation "com.onfido.sdk.capture:onfido-capture-sdk:$NATIVE_ANDROID_SDK_VERSION" -- implementation "com.onfido.sdk:onfido-workflow:$NATIVE_ANDROID_SDK_VERSION" -- implementation "com.squareup.okhttp3:logging-interceptor:3.14.9" -- implementation "com.squareup.okhttp3:okhttp:3.14.9" -- // Fix for crash due to 'java.lang.NoClassDefFoundError: Failed resolution of: Landroidx/swiperefreshlayout/widget/SwipeRefreshLayout;'' -- implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' -- -- testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.1' -- testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1' -- testCompileOnly 'junit:junit:4.13.2' -- testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.10.1' -- testImplementation 'org.mockito:mockito-core:2.+' -- testImplementation group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.9' -- testImplementation group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.9' --} -- --afterEvaluate { project -> -- android.libraryVariants.all { variant -> -- def name = variant.name.capitalize() -- def javaCompileTask = variant.javaCompileProvider.get() -- -- task "jar${name}"(type: Jar, dependsOn: javaCompileTask) { -- from javaCompileTask.destinationDir -- } -- } -- -- task codeCoverageReport(type: JacocoReport, dependsOn: 'testDebugUnitTest') { -- group = "Reporting" -- description = "Generate Jacoco coverage reports after running tests." -- reports { -- xml.enabled = true -- html.enabled = true -- csv.enabled = true -- } -- classDirectories.setFrom(fileTree( -- dir: 'build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/onfido/reactnative/sdk', -- excludes: androidExclusion -- )) -- sourceDirectories.setFrom(files('src/main/java/com/onfido/reactnative/sdk')) -- executionData.setFrom(files('build/jacoco/testDebugUnitTest.exec')) -- } -- -- task getCoverage(type: Exec, dependsOn: 'codeCoverageReport') { -- group = "Reporting" -- commandLine "open", "$buildDir/reports/jacoco/codeCoverageReport/html/index.html" -- } --} -diff --git a/node_modules/@onfido/react-native-sdk/android/build.gradle b/node_modules/@onfido/react-native-sdk/android/build.gradle -index 33a4229..895bfd7 100644 ---- a/node_modules/@onfido/react-native-sdk/android/build.gradle -+++ b/node_modules/@onfido/react-native-sdk/android/build.gradle -@@ -13,12 +13,20 @@ - def DEFAULT_COMPILE_SDK_VERSION = 33 - def DEFAULT_MIN_SDK_VERSION = 21 - def DEFAULT_TARGET_SDK_VERSION = 31 --def NATIVE_ANDROID_SDK_VERSION = "19.5.+" -+def NATIVE_ANDROID_SDK_VERSION = "19.6.+" - - def safeExtGet(prop, fallback) { - rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback - } - -+def isNewArchitectureEnabled() { -+ // To opt-in for the New Architecture, you can either: -+ // - Set `newArchEnabled` to true inside the `gradle.properties` file -+ // - Invoke gradle with `-newArchEnabled=true` -+ // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true` -+ return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true" -+} -+ - def androidExclusion = [ - '**/databinding/**/*.*', - '**/android/databinding/*Binding.*', -@@ -60,10 +68,24 @@ apply plugin: 'com.android.library' - apply plugin: 'maven-publish' - apply plugin: 'jacoco' - -+if (isNewArchitectureEnabled()) { -+ apply plugin: "com.facebook.react" -+} -+ - apply from: 'publish.gradle' - - android { - compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION) -+ -+ // Used to override the NDK path/version on internal CI or by allowing -+ // users to customize the NDK path/version from their root project (e.g. for M1 support) -+ if (rootProject.hasProperty("ndkPath")) { -+ ndkPath rootProject.ext.ndkPath -+ } -+ if (rootProject.hasProperty("ndkVersion")) { -+ ndkVersion rootProject.ext.ndkVersion -+ } -+ - defaultConfig { - minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION) - targetSdkVersion safeExtGet('targetSdkVersion', DEFAULT_TARGET_SDK_VERSION) -@@ -84,6 +106,20 @@ android { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } -+ -+ sourceSets.main { -+ java { -+ if (!isNewArchitectureEnabled()) { -+ srcDirs += 'src/paper/java' -+ } -+ } -+ } -+ publishing { -+ singleVariant('release') { -+ withSourcesJar() -+ withJavadocJar() -+ } -+ } - } - - repositories { -@@ -103,8 +139,8 @@ repositories { - } - - dependencies { -- //noinspection GradleDynamicVersion -- implementation 'com.facebook.react:react-native:+' // From node_modules -+ implementation 'com.facebook.react:react-native:+' // from node_modules -+ - implementation "com.onfido.sdk.capture:onfido-capture-sdk:$NATIVE_ANDROID_SDK_VERSION" - implementation "com.onfido.sdk:onfido-workflow:$NATIVE_ANDROID_SDK_VERSION" - implementation "com.squareup.okhttp3:logging-interceptor:3.14.9" -diff --git a/node_modules/@onfido/react-native-sdk/android/src/main/AndroidManifest.xml b/node_modules/@onfido/react-native-sdk/android/src/main/AndroidManifest.xml -index 42ad0ca..903b090 100644 ---- a/node_modules/@onfido/react-native-sdk/android/src/main/AndroidManifest.xml -+++ b/node_modules/@onfido/react-native-sdk/android/src/main/AndroidManifest.xml -@@ -8,6 +8,6 @@ - - -+ android:value="10.7.0" /> - - -diff --git a/node_modules/@onfido/react-native-sdk/android/src/main/java/com/onfido/reactnative/sdk/OnfidoSdkModule.java b/node_modules/@onfido/react-native-sdk/android/src/main/java/com/onfido/reactnative/sdk/OnfidoSdkModule.java -index 93407a2..13f84fd 100644 ---- a/node_modules/@onfido/react-native-sdk/android/src/main/java/com/onfido/reactnative/sdk/OnfidoSdkModule.java -+++ b/node_modules/@onfido/react-native-sdk/android/src/main/java/com/onfido/reactnative/sdk/OnfidoSdkModule.java -@@ -3,14 +3,13 @@ package com.onfido.reactnative.sdk; - import android.annotation.SuppressLint; - import android.app.Activity; - --import com.facebook.react.bridge.NoSuchKeyException; - 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.bridge.ReadableArray; - import com.facebook.react.bridge.ReadableMap; --import com.facebook.react.bridge.UnexpectedNativeTypeException; -+import com.facebook.react.module.annotations.ReactModule; - import com.facebook.react.bridge.WritableMap; - import com.facebook.react.modules.core.DeviceEventManagerModule; - import com.onfido.android.sdk.capture.DocumentType; -@@ -23,7 +22,6 @@ import com.onfido.android.sdk.capture.errors.EnterpriseFeatureNotEnabledExceptio - import com.onfido.android.sdk.capture.errors.EnterpriseFeaturesInvalidLogoCobrandingException; - import com.onfido.android.sdk.capture.ui.camera.face.FaceCaptureStep; - import com.onfido.android.sdk.capture.ui.camera.face.FaceCaptureVariantPhoto; --import com.onfido.android.sdk.capture.ui.camera.face.FaceCaptureVariantVideo; - import com.onfido.android.sdk.capture.ui.camera.face.stepbuilder.FaceCaptureStepBuilder; - import com.onfido.android.sdk.capture.ui.camera.face.stepbuilder.PhotoCaptureStepBuilder; - import com.onfido.android.sdk.capture.ui.camera.face.stepbuilder.VideoCaptureStepBuilder; -@@ -43,7 +41,10 @@ enum CallbackType { - MEDIA - } - --public class OnfidoSdkModule extends ReactContextBaseJavaModule { -+@ReactModule(name = OnfidoSdkModule.NAME) -+public class OnfidoSdkModule extends NativeOnfidoModuleSpec { -+ -+ public static final String NAME = "RNOnfidoSdk"; - - /* package */ final Onfido client; - private Promise currentPromise = null; -@@ -70,7 +71,7 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - - @Override - public String getName() { -- return "OnfidoSdk"; -+ return NAME; - } - - /** -@@ -81,6 +82,7 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - } - - @ReactMethod -+ @Override - public void start(final ReadableMap config, final Promise promise) { - - setPromise(promise); -@@ -147,7 +149,7 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - } - - OnfidoTheme onfidoTheme = getThemeFromConfig(config); -- if(onfidoTheme != null){ -+ if (onfidoTheme != null) { - onfidoConfigBuilder.withTheme(onfidoTheme); - } - -@@ -184,7 +186,7 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - } - - OnfidoTheme onfidoTheme = getThemeFromConfig(config); -- if(onfidoTheme != null){ -+ if (onfidoTheme != null) { - onfidoConfigBuilder.withTheme(onfidoTheme); - } - -@@ -237,9 +239,9 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - return config.hasKey(key) ? config.getString(key) : ""; - } - -- public static OnfidoTheme getThemeFromConfig(final ReadableMap config) throws Exception{ -+ public static OnfidoTheme getThemeFromConfig(final ReadableMap config) throws Exception { - String themeString = config.getString("theme"); -- if(themeString == null){ -+ if (themeString == null) { - return null; - } - OnfidoTheme onfidoTheme; -@@ -252,12 +254,18 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - return onfidoTheme; - } - -+ /* -+ (!) Please note that flow steps must be presented in a specific order, one which is also -+ implemented in the native SDKs, as well as in the iOS RN SDK. -+ -+ As per the Product indications in https://onfido.atlassian.net/browse/SDK-2390, this order -+ should be: Welcome->Doc->POA->Bio -+ */ - public static FlowStep[] getFlowStepsFromConfig( - final ReadableMap config, - OnfidoConfig.Builder configBuilder - ) throws Exception { - try { -- - final ReadableMap flowSteps = config.getMap("flowSteps"); - - final boolean welcomePageIsIncluded; -@@ -268,11 +276,12 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - } - - final boolean proofOfAddress; -- if(flowSteps.hasKey("proofOfAddress")){ -+ if (flowSteps.hasKey("proofOfAddress")) { - proofOfAddress = flowSteps.getBoolean("proofOfAddress"); -- }else{ -+ } else { - proofOfAddress = false; - } -+ - final List flowStepList = new ArrayList<>(); - - if (welcomePageIsIncluded) { -@@ -283,6 +292,10 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - extractCaptureDocumentStep(flowSteps, flowStepList, configBuilder); - } - -+ if (proofOfAddress) { -+ flowStepList.add(FlowStep.PROOF_OF_ADDRESS); -+ } -+ - final boolean captureFaceEnabled = flowSteps.hasKey("captureFace"); - final ReadableMap captureFace = captureFaceEnabled ? flowSteps.getMap("captureFace") : null; - -@@ -301,7 +314,7 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - flowStepList.add(faceStepFromMotionDefinition(captureFace)); - break; - default: -- throw new Exception("Invalid face capture type. \"type\" must be VIDEO or PHOTO."); -+ throw new Exception("Invalid face capture type. \"type\" must be VIDEO or PHOTO."); - } - } else { - // Default face capture type is photo. -@@ -309,12 +322,7 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - } - } - -- if(proofOfAddress){ -- flowStepList.add(FlowStep.PROOF_OF_ADDRESS); -- } -- - final FlowStep[] flowStepsWithOptions = flowStepList.toArray(new FlowStep[0]); -- - return flowStepsWithOptions; - } catch (final Exception e) { - e.printStackTrace(); -@@ -328,29 +336,10 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - List flowStepList, - OnfidoConfig.Builder configBuilder - ) throws Exception { -- ReadableMap captureDocument = null; -- Boolean captureDocumentBoolean = null; -- -- // ReadableMap does not have a way to get multi-typed values without throwing exceptions. -- try { -- captureDocumentBoolean = flowSteps.getBoolean("captureDocument"); -- } catch (final NoSuchKeyException | -- ClassCastException | -- UnexpectedNativeTypeException notFoundException) { -- captureDocument = flowSteps.getMap("captureDocument"); -- } -- -- if (captureDocumentBoolean != null) { -- if (captureDocumentBoolean) { -- flowStepList.add(FlowStep.CAPTURE_DOCUMENT); -- } -- return; -- } -- -+ ReadableMap captureDocument = flowSteps.getMap("captureDocument"); - if (captureDocument == null) { - return; - } -- - extractDocumentCaptureDetails(captureDocument, flowStepList, configBuilder); - } - -@@ -361,35 +350,46 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - ) throws Exception { - final boolean docTypeExists = captureDocument.hasKey("docType"); - final boolean countryCodeExists = captureDocument.hasKey("alpha2CountryCode"); -- final boolean allowedDocumentTypes = captureDocument.hasKey("allowedDocumentTypes"); -+ final boolean withAllowedDocumentTypes = captureDocument.hasKey("allowedDocumentTypes"); - -- if (allowedDocumentTypes && countryCodeExists && docTypeExists) { -+ // Validation: incorrect config - 2 filtering ways provided -+ if (withAllowedDocumentTypes && countryCodeExists && docTypeExists) { - throw new IllegalArgumentException("We can either filter the documents on DocumentSelection screen, or skip the selection and go directly to capture"); - } - -- if (!docTypeExists && !countryCodeExists && !allowedDocumentTypes) { -+ // Case 1: no filtering provided => showing general Doc Capture -+ if (!docTypeExists && !countryCodeExists && !withAllowedDocumentTypes) { - flowStepList.add(FlowStep.CAPTURE_DOCUMENT); - return; - } - -+ // Case 2: filtering for one document, one country - if (docTypeExists && countryCodeExists) { - extractDocTypeAndCountryForCaptureStep(captureDocument, flowStepList); - return; - } -- if (allowedDocumentTypes) { -+ -+ // Case 3: filtering for multiple documents -+ if (withAllowedDocumentTypes) { - extractAllowedDocumentTypes(captureDocument, configBuilder); -+ flowStepList.add(FlowStep.CAPTURE_DOCUMENT); - return; - } - - throw new Exception("For countryCode and docType: both must be specified, or both must be omitted."); - } - -- private static void extractAllowedDocumentTypes(ReadableMap captureDocument, OnfidoConfig.Builder configBuilder) { -- ReadableArray array = captureDocument.getArray("allowedDocumentTypes"); -+ private static void extractAllowedDocumentTypes( -+ ReadableMap captureDocument, -+ OnfidoConfig.Builder configBuilder -+ ) { -+ ReadableArray documentTypes = captureDocument.getArray("allowedDocumentTypes"); - ArrayList types = new ArrayList<>(); - -- for (int i = 0; i < array.size(); i++) { -- types.add(DocumentType.valueOf(array.getString(i))); -+ if (documentTypes != null) { -+ for (int i = 0; i < documentTypes.size(); i++) { -+ types.add(DocumentType.valueOf(documentTypes.getString(i))); -+ } - } - configBuilder.withAllowedDocumentTypes(types); - } -@@ -487,14 +487,14 @@ public class OnfidoSdkModule extends ReactContextBaseJavaModule { - } - - @ReactMethod -- public void removeListeners(int type) { -+ public void removeListeners(double type) { - // Keep: Required for RN build in the Event Emitter Calls - } - - private void sendEvent(String name, WritableMap map) { - getReactApplicationContext() -- .getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class) -- .emit(name, map); -+ .getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class) -+ .emit(name, map); - } - - //region Media -diff --git a/node_modules/@onfido/react-native-sdk/android/src/main/java/com/onfido/reactnative/sdk/OnfidoSdkPackage.java b/node_modules/@onfido/react-native-sdk/android/src/main/java/com/onfido/reactnative/sdk/OnfidoSdkPackage.java -index 35c0ee6..16469e2 100644 ---- a/node_modules/@onfido/react-native-sdk/android/src/main/java/com/onfido/reactnative/sdk/OnfidoSdkPackage.java -+++ b/node_modules/@onfido/react-native-sdk/android/src/main/java/com/onfido/reactnative/sdk/OnfidoSdkPackage.java -@@ -1,23 +1,90 @@ - package com.onfido.reactnative.sdk; - -+import androidx.annotation.Nullable; -+ - import java.util.Arrays; - import java.util.Collections; -+import java.util.HashMap; - import java.util.List; -+import java.util.Map; - --import com.facebook.react.ReactPackage; -+import com.facebook.react.TurboReactPackage; - import com.facebook.react.bridge.NativeModule; - import com.facebook.react.bridge.ReactApplicationContext; -+import com.facebook.react.module.annotations.ReactModule; -+import com.facebook.react.module.annotations.ReactModuleList; -+import com.facebook.react.module.model.ReactModuleInfo; -+import com.facebook.react.module.model.ReactModuleInfoProvider; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; - import com.facebook.react.uimanager.ViewManager; --import com.facebook.react.bridge.JavaScriptModule; - --public class OnfidoSdkPackage implements ReactPackage { -+@ReactModuleList( -+ nativeModules = { -+ OnfidoSdkModule.class -+ } -+) -+public class OnfidoSdkPackage extends TurboReactPackage { - @Override - public List createNativeModules(ReactApplicationContext reactContext) { - return Arrays.asList(new OnfidoSdkModule(reactContext)); - } - -+ @Nullable -+ @Override -+ public NativeModule getModule(String name, ReactApplicationContext reactApplicationContext) { -+ switch (name) { -+ case OnfidoSdkModule.NAME: -+ return new OnfidoSdkModule(reactApplicationContext); -+ default: -+ return null; -+ } -+ } -+ - @Override - public List createViewManagers(ReactApplicationContext reactContext) { - return Collections.emptyList(); - } -+ -+ @Override -+ public ReactModuleInfoProvider getReactModuleInfoProvider() { -+ try { -+ Class reactModuleInfoProviderClass = -+ Class.forName("com.onfido.reactnative.sdk.OnfidoSdkPackage$$ReactModuleInfoProvider"); -+ return (ReactModuleInfoProvider) reactModuleInfoProviderClass.newInstance(); -+ } catch (ClassNotFoundException e) { -+ // ReactModuleSpecProcessor does not run at build-time. Create this ReactModuleInfoProvider by -+ // hand. -+ return new ReactModuleInfoProvider() { -+ @Override -+ public Map getReactModuleInfos() { -+ final Map reactModuleInfoMap = new HashMap<>(); -+ -+ Class[] moduleList = -+ new Class[] { -+ OnfidoSdkModule.class, -+ }; -+ -+ for (Class moduleClass : moduleList) { -+ ReactModule reactModule = moduleClass.getAnnotation(ReactModule.class); -+ -+ reactModuleInfoMap.put( -+ reactModule.name(), -+ new ReactModuleInfo( -+ reactModule.name(), -+ moduleClass.getName(), -+ reactModule.canOverrideExistingModule(), -+ reactModule.needsEagerInit(), -+ reactModule.hasConstants(), -+ reactModule.isCxxModule(), -+ TurboModule.class.isAssignableFrom(moduleClass))); -+ } -+ -+ return reactModuleInfoMap; -+ } -+ }; -+ } catch (InstantiationException | IllegalAccessException e) { -+ throw new RuntimeException( -+ "No ReactModuleInfoProvider for com.onfido.reactnative.sdk.OnfidoSdkPackage$$ReactModuleInfoProvider", e); -+ } -+ } - } -diff --git a/node_modules/@onfido/react-native-sdk/android/src/paper/java/com/onfido/reactnative/sdk/NativeOnfidoModuleSpec.java b/node_modules/@onfido/react-native-sdk/android/src/paper/java/com/onfido/reactnative/sdk/NativeOnfidoModuleSpec.java -new file mode 100644 -index 0000000..16e880e ---- /dev/null -+++ b/node_modules/@onfido/react-native-sdk/android/src/paper/java/com/onfido/reactnative/sdk/NativeOnfidoModuleSpec.java -@@ -0,0 +1,52 @@ -+ -+/** -+ * 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.onfido.reactnative.sdk; -+ -+import com.facebook.proguard.annotations.DoNotStrip; -+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.bridge.ReactModuleWithSpec; -+import com.facebook.react.bridge.ReadableMap; -+import com.facebook.react.turbomodule.core.interfaces.TurboModule; -+import javax.annotation.Nonnull; -+ -+public abstract class NativeOnfidoModuleSpec extends ReactContextBaseJavaModule implements ReactModuleWithSpec, TurboModule { -+ public static final String NAME = "RNOnfidoSdk"; -+ -+ public NativeOnfidoModuleSpec(ReactApplicationContext reactContext) { -+ super(reactContext); -+ } -+ -+ @Override -+ public @Nonnull String getName() { -+ return NAME; -+ } -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void start(ReadableMap config, Promise promise); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void withMediaCallbacksEnabled(); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void addListener(String eventName); -+ -+ @ReactMethod -+ @DoNotStrip -+ public abstract void removeListeners(double count); -+} -diff --git a/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk-Bridging-Header.h b/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk-Bridging-Header.h -index ebf12f6..9acdb99 100644 ---- a/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk-Bridging-Header.h -+++ b/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk-Bridging-Header.h -@@ -3,4 +3,4 @@ - // - - #import --#import -+#import "PluginMetadata.h" -diff --git a/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.m b/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.m -deleted file mode 100644 -index 328de71..0000000 ---- a/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.m -+++ /dev/null -@@ -1,14 +0,0 @@ --#import --#import --#import --@interface RCT_EXTERN_MODULE(OnfidoSdk, RCTEventEmitter) -- --RCT_EXTERN_METHOD( -- start:(NSDictionary *)config -- resolver:(RCTPromiseResolveBlock)resolve -- rejecter:(RCTPromiseRejectBlock)reject --) --RCT_EXTERN_METHOD(supportedEvents) --RCT_EXTERN_METHOD(withMediaCallbacksEnabled) -- --@end -diff --git a/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.swift b/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.swift -index 3829c99..e8788f0 100644 ---- a/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.swift -+++ b/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.swift -@@ -14,24 +14,31 @@ private enum CallbackType { - } - - @objc(OnfidoSdk) --final class OnfidoSdk: RCTEventEmitter { -+public final class OnfidoSdk: NSObject { - - private let onfidoFlowBuilder = OnfidoFlowBuilder() - private let configParser = OnfidoConfigParser() - private var callbackTypes: [CallbackType] = [] - - @objc -- func start(_ config: NSDictionary, -- resolver resolve: @escaping RCTPromiseResolveBlock, -- rejecter reject: @escaping RCTPromiseRejectBlock) { -+ public var mediaCallbackHandler: (([String: Any]) -> Void)? -+ -+ // TODO: Using React types here (RCTPromiseResolveBlock and RCTPromiseRejectBlock) causes the project to fail to build. -+ // For some reason marking them as @escaping causes the XCode to add an import to non-existent header file in onfido_react_native_sdk-Swift.h. -+ @objc -+ public func start(_ config: NSDictionary, -+ resolver resolve: @escaping (Any) -> Void, -+ rejecter reject: @escaping (String, String, Error?) -> Void) -> Void { - DispatchQueue.main.async { [weak self] in - self?.run(withConfig: config, resolver: resolve, rejecter: reject) - } - } - -+ // TODO: Same as above - private func run(withConfig config: NSDictionary, -- resolver resolve: @escaping RCTPromiseResolveBlock, -- rejecter reject: @escaping RCTPromiseRejectBlock) { -+ resolver resolve: @escaping (Any) -> Void, -+ rejecter reject: @escaping (String, String, Error?) -> Void) { -+ - do { - let onfidoConfig: OnfidoPluginConfig = try configParser.parse(config) - -@@ -90,27 +97,17 @@ final class OnfidoSdk: RCTEventEmitter { - } - } - -- // MARK: - Callbacks -- -- @objc -- public override func supportedEvents() -> [String] { -- return ["onfidoMediaCallback"] -- } -- -- @objc -- override static func requiresMainQueueSetup() -> Bool { -- return false -- } -- - // MARK: Media - - @objc -- func withMediaCallbacksEnabled() { -+ public func withMediaCallbacksEnabled() { - callbackTypes.append(.media) - } - - private func processMediaResult(_ dictionary: [String: Any]) { -- sendEvent(withName: "onfidoMediaCallback", body: dictionary) -+ if let handler = mediaCallbackHandler { -+ handler(dictionary) -+ } - } - } - -diff --git a/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.xcodeproj/project.pbxproj b/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.xcodeproj/project.pbxproj -index e87f422..7958454 100644 ---- a/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.xcodeproj/project.pbxproj -+++ b/node_modules/@onfido/react-native-sdk/ios/OnfidoSdk.xcodeproj/project.pbxproj -@@ -65,6 +65,8 @@ - 8517ACCD244290D10077E909 /* OnfidoSdkTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OnfidoSdkTests.swift; sourceTree = ""; }; - 899A7F1B3979E0BB4044B867 /* libPods-OnfidoSdk-OnfidoSdkTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-OnfidoSdk-OnfidoSdkTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8B8E5FE3BDE0C9C96B5FE8AB /* Pods-OnfidoSdk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OnfidoSdk.debug.xcconfig"; path = "Target Support Files/Pods-OnfidoSdk/Pods-OnfidoSdk.debug.xcconfig"; sourceTree = ""; }; -+ 9B55F4FF2B61451700EC4D80 /* PluginMetadata.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginMetadata.m; sourceTree = ""; }; -+ 9B55F5002B61451700EC4D80 /* PluginMetadata.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginMetadata.h; sourceTree = ""; }; - 9BF206B12A3C839F00766D77 /* CallbackReceiver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallbackReceiver.swift; sourceTree = ""; }; - 9BF206B22A3C839F00766D77 /* BridgeUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BridgeUtils.swift; sourceTree = ""; }; - 9BF206B32A3C839F00766D77 /* OnfidoAppearance.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OnfidoAppearance.swift; sourceTree = ""; }; -@@ -138,6 +140,8 @@ - 3AFE501B2408521F00E21479 /* OnfidoSdk-Bridging-Header.h */, - B3E7B5881CC2AC0600A0062D /* OnfidoSdk.h */, - B3E7B5891CC2AC0600A0062D /* OnfidoSdk.m */, -+ 9B55F5002B61451700EC4D80 /* PluginMetadata.h */, -+ 9B55F4FF2B61451700EC4D80 /* PluginMetadata.m */, - 3A9D42CA2412EEF50087A331 /* OnfidoSdkTests */, - 134814211AA4EA7D00B7C361 /* Products */, - 4A3724A27399FEFCC7B1F920 /* Pods */, -diff --git a/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.h b/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.h -new file mode 100644 -index 0000000..c263983 ---- /dev/null -+++ b/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.h -@@ -0,0 +1,10 @@ -+#import -+ -+NS_ASSUME_NONNULL_BEGIN -+ -+@interface PluginMetadata : NSObject -+@property (nonatomic, readonly) NSString* pluginPlatform; -+@property (nonatomic, readonly) NSString* pluginVersion; -+@end -+ -+NS_ASSUME_NONNULL_END -diff --git a/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.m b/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.m -new file mode 100644 -index 0000000..3f9109e ---- /dev/null -+++ b/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.m -@@ -0,0 +1,15 @@ -+#import "PluginMetadata.h" -+ -+@implementation PluginMetadata -+ -+- (instancetype)init -+{ -+ self = [super init]; -+ if (self) { -+ _pluginPlatform = @"react-native"; -+ _pluginVersion = @"10.7.0"; -+ } -+ return self; -+} -+ -+@end -diff --git a/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.swift b/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.swift -deleted file mode 100644 -index 9e2b0fc..0000000 ---- a/node_modules/@onfido/react-native-sdk/ios/PluginMetadata.swift -+++ /dev/null -@@ -1,11 +0,0 @@ --// --// PluginMetadata.swift --// --// Copyright © 2016-2023 Onfido. All rights reserved. --// -- --@objcMembers --final class PluginMetadata: NSObject { -- let pluginPlatform = "react-native" -- let pluginVersion = "10.6.0" --} -diff --git a/node_modules/@onfido/react-native-sdk/ios/Podfile b/node_modules/@onfido/react-native-sdk/ios/Podfile -index 8fc621f..38b66d9 100644 ---- a/node_modules/@onfido/react-native-sdk/ios/Podfile -+++ b/node_modules/@onfido/react-native-sdk/ios/Podfile -@@ -27,7 +27,7 @@ flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : Flip - # end - - target 'OnfidoSdk' do -- pod 'Onfido', '~> 29.6.0' -+ pod 'Onfido', '~> 29.7.0' - - config = use_native_modules! - use_react_native!( -@@ -41,6 +41,17 @@ target 'OnfidoSdk' do - target 'OnfidoSdkTests' do - # inherit! :search_paths - # Pods for testing -+ end - -+ # unary_function and binary_function are no longer provided in C++17 and newer standard modes as part of Xcode 15. -+ # They can be re-enabled with setting _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION -+ # Ref: https://developer.apple.com/documentation/xcode-release-notes/xcode-15-release-notes#Deprecations -+ # Solution: https://github.com/facebook/react-native/issues/37748#issuecomment-1580589448 -+ post_install do |installer| -+ installer.pods_project.targets.each do |target| -+ target.build_configurations.each do |config| -+ config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION'] -+ end -+ end - end - end -diff --git a/node_modules/@onfido/react-native-sdk/ios/Podfile.lock b/node_modules/@onfido/react-native-sdk/ios/Podfile.lock -index 87765b9..46aa9fb 100644 ---- a/node_modules/@onfido/react-native-sdk/ios/Podfile.lock -+++ b/node_modules/@onfido/react-native-sdk/ios/Podfile.lock -@@ -519,11 +519,11 @@ EXTERNAL SOURCES: - - SPEC CHECKSUMS: - boost: 57d2868c099736d80fcd648bf211b4431e51a558 -- DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de -+ DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 - FBLazyVector: 748c0ef74f2bf4b36cfcccf37916806940a64c32 - FBReactNativeSpec: 966f29e4e697de53a3b366355e8f57375c856ad9 - fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 -- glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62 -+ glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b - Onfido: c52e797b10cc9e6d29ba91996cb62e501000bfdd - RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1 - RCTRequired: 28469809442eb4eb5528462705f7d852948c8a74 -@@ -560,6 +560,6 @@ SPEC CHECKSUMS: - SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 - Yoga: b76f1acfda8212aa16b7e26bcce3983230c82603 - --PODFILE CHECKSUM: ee04850b32b0f021f8e865806f0d8fc273717178 -+PODFILE CHECKSUM: b0afaaafeb2272120df31de2529a6e679929c7c5 - - COCOAPODS: 1.14.3 -diff --git a/node_modules/@onfido/react-native-sdk/ios/RNOnfidoSdk.h b/node_modules/@onfido/react-native-sdk/ios/RNOnfidoSdk.h -new file mode 100644 -index 0000000..3b65b7a ---- /dev/null -+++ b/node_modules/@onfido/react-native-sdk/ios/RNOnfidoSdk.h -@@ -0,0 +1,16 @@ -+#import -+#import -+#import -+ -+#ifdef RCT_NEW_ARCH_ENABLED -+ -+#import -+@interface RNOnfidoSdk : RCTEventEmitter -+ -+#else -+ -+@interface RNOnfidoSdk : RCTEventEmitter -+ -+#endif -+ -+@end -diff --git a/node_modules/@onfido/react-native-sdk/ios/RNOnfidoSdk.mm b/node_modules/@onfido/react-native-sdk/ios/RNOnfidoSdk.mm -new file mode 100644 -index 0000000..998f79b ---- /dev/null -+++ b/node_modules/@onfido/react-native-sdk/ios/RNOnfidoSdk.mm -@@ -0,0 +1,64 @@ -+#import "RNOnfidoSdk.h" -+ -+#ifdef USE_FRAMEWORKS -+#import -+#else -+#import -+#endif -+ -+@implementation RNOnfidoSdk { -+ OnfidoSdk *_onfidoSdk; -+} -+ -+RCT_EXPORT_MODULE() -+ -++ (BOOL)requiresMainQueueSetup { -+ return NO; -+} -+ -+- (instancetype)init -+{ -+ if (!(self = [super init])) { -+ return nil; -+ } -+ -+ _onfidoSdk = [[OnfidoSdk alloc] init]; -+ -+ // capture weak self reference to prevent retain cycle -+ __weak __typeof__(self) weakSelf = self; -+ -+ _onfidoSdk.mediaCallbackHandler = ^(NSDictionary *data) { -+ __typeof__(self) strongSelf = weakSelf; -+ -+ if (strongSelf != nullptr) { -+ [strongSelf sendEventWithName:@"onfidoMediaCallback" body:data]; -+ } -+ }; -+ -+ return self; -+} -+ -+- (NSArray *)supportedEvents -+{ -+ return @[@"onfidoMediaCallback"]; -+} -+ -+RCT_EXPORT_METHOD(start:(NSDictionary *)config resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject) -+{ -+ [_onfidoSdk start:config resolver:resolve rejecter:reject]; -+} -+ -+RCT_EXPORT_METHOD(withMediaCallbacksEnabled) -+{ -+ [_onfidoSdk withMediaCallbacksEnabled]; -+} -+ -+#ifdef RCT_NEW_ARCH_ENABLED -+ -+- (std::shared_ptr)getTurboModule:(const facebook::react::ObjCTurboModule::InitParams &)params { -+ return std::make_shared(params); -+} -+ -+#endif -+ -+@end -diff --git a/node_modules/@onfido/react-native-sdk/js/NativeOnfidoModule.ts b/node_modules/@onfido/react-native-sdk/js/NativeOnfidoModule.ts -new file mode 100644 -index 0000000..8ed5cd0 ---- /dev/null -+++ b/node_modules/@onfido/react-native-sdk/js/NativeOnfidoModule.ts -@@ -0,0 +1,13 @@ -+import { TurboModuleRegistry, TurboModule } from "react-native"; -+import { Double } from 'react-native/Libraries/Types/CodegenTypes'; -+ -+export interface Spec extends TurboModule { -+ start(config: Object): Promise; -+ withMediaCallbacksEnabled(): void; -+ -+ // those two are here for event emitter methods -+ addListener(eventName: string): void; -+ removeListeners(count: Double): void; -+} -+ -+export default TurboModuleRegistry.getEnforcing("RNOnfidoSdk"); -diff --git a/node_modules/@onfido/react-native-sdk/js/Onfido.ts b/node_modules/@onfido/react-native-sdk/js/Onfido.ts -index db35471..fa6c1ef 100644 ---- a/node_modules/@onfido/react-native-sdk/js/Onfido.ts -+++ b/node_modules/@onfido/react-native-sdk/js/Onfido.ts -@@ -1,4 +1,4 @@ --import {NativeModules, Platform, NativeEventEmitter} from 'react-native'; -+import {Platform, NativeEventEmitter} from 'react-native'; - import { - OnfidoAlpha2CountryCode, - OnfidoCaptureType, -@@ -11,11 +11,9 @@ import { - } from "./config_constants"; - import { Base64 } from 'js-base64'; - --const {OnfidoSdk} = NativeModules; -- --const OndifoSdkModule = NativeModules.OnfidoSdk --const eventEmitter = new NativeEventEmitter(OndifoSdkModule) -+import OnfidoSdk from "./NativeOnfidoModule"; - -+const eventEmitter = new NativeEventEmitter(OnfidoSdk) - - const Onfido = { - start(config: OnfidoConfig): Promise { -@@ -93,7 +91,7 @@ const Onfido = { - return OnfidoSdk.start(config).catch((error: any) => { - console.log(error); - throw error; -- }); -+ }) as Promise; - }, - - addCustomMediaCallback(callback: (result: OnfidoMediaResult) => OnfidoMediaResult) { -diff --git a/node_modules/@onfido/react-native-sdk/onfido-react-native-sdk.podspec b/node_modules/@onfido/react-native-sdk/onfido-react-native-sdk.podspec -index a9de0d0..ed1e6fd 100644 ---- a/node_modules/@onfido/react-native-sdk/onfido-react-native-sdk.podspec -+++ b/node_modules/@onfido/react-native-sdk/onfido-react-native-sdk.podspec -@@ -2,6 +2,8 @@ require "json" - - package = JSON.parse(File.read(File.join(__dir__, "package.json"))) - -+fabric_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1' -+ - Pod::Spec.new do |s| - s.name = "onfido-react-native-sdk" - s.version = package["version"] -@@ -15,10 +17,22 @@ Pod::Spec.new do |s| - s.platforms = { :ios => "11.0" } - s.source = { :git => "https://github.com/onfido/react-native-sdk.git", :tag => "#{s.version}" } - -- s.source_files = "ios/**/*.{h,m,swift}" -+ s.source_files = "ios/**/*.{h,m,swift,mm}" - s.exclude_files = "ios/OnfidoSdkTests/" - s.requires_arc = true - -- s.dependency "React" -- s.dependency "Onfido", "~> 29.6.0" -+ s.dependency "Onfido", "~> 29.7.0" -+ -+ if ENV['USE_FRAMEWORKS'] != nil -+ s.pod_target_xcconfig = { -+ "OTHER_CFLAGS" => "$(inherited) -DUSE_FRAMEWORKS", -+ "OTHER_CPLUSPLUSFLAGS" => "$(inherited) -DUSE_FRAMEWORKS", -+ } -+ end -+ -+ if defined?(install_modules_dependencies()) != nil -+ install_modules_dependencies(s) -+ else -+ s.dependency "React" -+ end - end -diff --git a/node_modules/@onfido/react-native-sdk/package.json b/node_modules/@onfido/react-native-sdk/package.json -index 50a331b..754c3c0 100644 ---- a/node_modules/@onfido/react-native-sdk/package.json -+++ b/node_modules/@onfido/react-native-sdk/package.json -@@ -24,7 +24,8 @@ - ], - "testPathIgnorePatterns": [ - "/TestApp", -- "/SampleApp" -+ "/SampleApp", -+ "/FabricSample" - ], - "globals": { - "__DEV__": true -@@ -82,6 +83,14 @@ - "react-native": "0.72.6", - "typescript": "^4.6.4" - }, -+ "codegenConfig": { -+ "name": "rnonfidosdk", -+ "type": "modules", -+ "jsSrcsDir": "./js", -+ "android": { -+ "javaPackageName": "com.onfido.reactnative.sdk" -+ } -+ }, - "dependencies": { - "js-base64": "3.7.5" - }, -diff --git a/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh b/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh -index 49f9d4c..1b9f304 100755 ---- a/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh -+++ b/node_modules/@onfido/react-native-sdk/scripts/update-integration-versions.sh -@@ -2,16 +2,16 @@ - - PROJ_DIR=. - MANIFEST_FILE=${PROJ_DIR}/android/src/main/AndroidManifest.xml --IOS_PLUGIN_FILE=${PROJ_DIR}/ios/PluginMetadata.swift -+IOS_PLUGIN_FILE=${PROJ_DIR}/ios/PluginMetadata.m - - update_manifest() - { -- sed -i -e "s/android:value=\"[0-9]*\.[0-9]*\.[0-9]*\"/android:value=\"$2\"/g" $1 -+ sed -i '' -e "s/android:value=\"[0-9]*\.[0-9]*\.[0-9]*\"/android:value=\"$2\"/g" $1 - } - - update_plugin_file() - { -- sed -i -e "s/pluginVersion = \"[0-9]*\.[0-9]*\.[0-9]*\"/pluginVersion = \"$2\"/g" $1 -+ sed -i '' -e "s/_pluginVersion = @\"[0-9]*\.[0-9]*\.[0-9]*\"/_pluginVersion = @\"$2\"/g" $1 - } - - update_manifest ${MANIFEST_FILE} $PACKAGE_VERSION diff --git a/patches/@onfido/react-native-sdk/@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch b/patches/@onfido/react-native-sdk/@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch deleted file mode 100644 index 2695317dc4cb6..0000000000000 --- a/patches/@onfido/react-native-sdk/@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/node_modules/@onfido/react-native-sdk/android/build.gradle b/node_modules/@onfido/react-native-sdk/android/build.gradle -index 895bfd7..257605f 100644 ---- a/node_modules/@onfido/react-native-sdk/android/build.gradle -+++ b/node_modules/@onfido/react-native-sdk/android/build.gradle -@@ -93,6 +93,12 @@ android { - versionName "1.0" - multiDexEnabled true - consumerProguardFiles 'proguard-rules.pro' -+ -+ externalNativeBuild { -+ cmake { -+ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" -+ } -+ } - } - lintOptions { - abortOnError false diff --git a/patches/@onfido/react-native-sdk/details.md b/patches/@onfido/react-native-sdk/details.md deleted file mode 100644 index a507f91afe9d4..0000000000000 --- a/patches/@onfido/react-native-sdk/details.md +++ /dev/null @@ -1,8 +0,0 @@ -# `@onfido/react-native-sdk` patches - -### [@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch](@onfido+react-native-sdk+10.6.0+002+android-enable-16kb-memory-page-size.patch) - -- Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. -- Upstream PR/issue: TODO -- E/App issue: [#63871](https://github.com/Expensify/App/issues/63871) -- PR Introducing Patch: [#64640](https://github.com/Expensify/App/pull/64640) diff --git a/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch b/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch deleted file mode 100644 index 63a0433080932..0000000000000 --- a/patches/@react-native-firebase/crashlytics/@react-native-firebase+crashlytics+12.9.3+002+android-enable-16kb-memory-page-size.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff --git a/node_modules/@react-native-firebase/crashlytics/android/build.gradle b/node_modules/@react-native-firebase/crashlytics/android/build.gradle -index 9b89ae7..3069e6c 100644 ---- a/node_modules/@react-native-firebase/crashlytics/android/build.gradle -+++ b/node_modules/@react-native-firebase/crashlytics/android/build.gradle -@@ -67,6 +67,12 @@ project.ext { - android { - defaultConfig { - multiDexEnabled true -+ -+ externalNativeBuild { -+ cmake { -+ arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" -+ } -+ } - } - lintOptions { - disable 'GradleCompatible' -@@ -87,7 +93,11 @@ dependencies { - api appProject - implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}") - implementation "com.google.firebase:firebase-crashlytics" -- implementation "com.google.firebase:firebase-crashlytics-ndk" -+ implementation ("com.google.firebase:firebase-crashlytics-ndk") { -+ version { -+ strictly "[19.0.2,)" -+ } -+ } - } - - ReactNative.shared.applyPackageVersion() From bb811437271e7732486202b59f2a99d88035aace Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Mon, 25 Aug 2025 17:22:02 +0200 Subject: [PATCH 39/50] fix(63871): revert submodule update --- Mobile-Expensify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mobile-Expensify b/Mobile-Expensify index 0b52c81736eb8..939b50dace6f0 160000 --- a/Mobile-Expensify +++ b/Mobile-Expensify @@ -1 +1 @@ -Subproject commit 0b52c81736eb874fdcbfd075bdd3477d28ae97bc +Subproject commit 939b50dace6f0db569b351aeafd0b2b00220ab94 From 23e2322b6a03105b9c88c63aa66c7a3dafaad6c8 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Tue, 26 Aug 2025 09:01:57 +0200 Subject: [PATCH 40/50] fix(63871): types for PDFThumbnail --- src/components/PDFThumbnail/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PDFThumbnail/types.ts b/src/components/PDFThumbnail/types.ts index ca95bdc55bc75..9a9dda85334b7 100644 --- a/src/components/PDFThumbnail/types.ts +++ b/src/components/PDFThumbnail/types.ts @@ -14,7 +14,7 @@ type PDFThumbnailProps = { enabled?: boolean; /** Fit policy for the PDF thumbnail */ - fitPolicy?: number; + fitPolicy?: 0 | 1 | 2 | undefined; /** Callback to call if PDF is password protected */ onPassword?: () => void; From d2457eef921de225feb725f4224be38c2686ada5 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Tue, 26 Aug 2025 09:53:22 +0200 Subject: [PATCH 41/50] fix(63871): reorg patches --- patches/expo-av/details.md | 23 +++++++++++++++++++ ...+15.1.5+001+fix-blank-screen-android.patch | 0 ....5+002+handle-unsupported-videos-ios.patch | 0 ...android-enable-16kb-memory-page-size.patch | 0 patches/expo-modules-core/details.md | 17 ++++++++++++++ ...core+2.3.12+001+disableViewRecycling.patch | 0 ...android-enable-16kb-memory-page-size.patch | 0 patches/react-native-fs/details.md | 8 +++++++ ...-packaging-for-16kb-memory-page-size.patch | 0 patches/react-native-pdf/details.md | 8 +++++++ .../react-native-pdf+6.7.7.patch | 0 .../react-native-safe-area-context/details.md | 2 +- 12 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 patches/expo-av/details.md rename patches/{ => expo-av}/expo-av+15.1.5+001+fix-blank-screen-android.patch (100%) rename patches/{ => expo-av}/expo-av+15.1.5+002+handle-unsupported-videos-ios.patch (100%) rename patches/{ => expo-av}/expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch (100%) create mode 100644 patches/expo-modules-core/details.md rename patches/{ => expo-modules-core}/expo-modules-core+2.3.12+001+disableViewRecycling.patch (100%) rename patches/{ => expo-modules-core}/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch (100%) create mode 100644 patches/react-native-fs/details.md rename patches/{ => react-native-fs}/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch (100%) create mode 100644 patches/react-native-pdf/details.md rename patches/{ => react-native-pdf}/react-native-pdf+6.7.7.patch (100%) diff --git a/patches/expo-av/details.md b/patches/expo-av/details.md new file mode 100644 index 0000000000000..150d306e55b89 --- /dev/null +++ b/patches/expo-av/details.md @@ -0,0 +1,23 @@ + +# `expo-av` patches + +### [expo-av+15.1.5+001+fix-blank-screen-android.patch](expo-av+15.1.5+001+fix-blank-screen-android.patch) +- Reason: Fix blank screen issue on Android when playing certain videos +- Upstream PR/issue: N/A +- E/App issue: N/A +- PR Introducing Patch: N/A +- PR Updating Patch: N/A + +### [expo-av+15.1.5+002+handle-unsupported-videos-ios.patch](expo-av+15.1.5+002+handle-unsupported-videos-ios.patch) +- Reason: Handle unsupported video formats gracefully on iOS +- Upstream PR/issue: N/A +- E/App issue: N/A +- PR Introducing Patch: N/A +- PR Updating Patch: N/A + +### [expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch](expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch) +- Reason: Enable support for 16kb memory page size on Android +- Upstream PR/issue: N/A +- E/App issue: N/A +- PR Introducing Patch: N/A +- PR Updating Patch: N/A diff --git a/patches/expo-av+15.1.5+001+fix-blank-screen-android.patch b/patches/expo-av/expo-av+15.1.5+001+fix-blank-screen-android.patch similarity index 100% rename from patches/expo-av+15.1.5+001+fix-blank-screen-android.patch rename to patches/expo-av/expo-av+15.1.5+001+fix-blank-screen-android.patch diff --git a/patches/expo-av+15.1.5+002+handle-unsupported-videos-ios.patch b/patches/expo-av/expo-av+15.1.5+002+handle-unsupported-videos-ios.patch similarity index 100% rename from patches/expo-av+15.1.5+002+handle-unsupported-videos-ios.patch rename to patches/expo-av/expo-av+15.1.5+002+handle-unsupported-videos-ios.patch diff --git a/patches/expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch b/patches/expo-av/expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch similarity index 100% rename from patches/expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch rename to patches/expo-av/expo-av+15.1.5+003+android-enable-16kb-memory-page-size.patch diff --git a/patches/expo-modules-core/details.md b/patches/expo-modules-core/details.md new file mode 100644 index 0000000000000..c5dbaf47dc189 --- /dev/null +++ b/patches/expo-modules-core/details.md @@ -0,0 +1,17 @@ + + +# `expo-modules-core` patches + +### [expo-modules-core+2.3.12+001+disableViewRecycling.patch](expo-modules-core+2.3.12+001+disableViewRecycling.patch) +- Reason: Disable view recycling to fix rendering issues +- Upstream PR/issue: N/A +- E/App issue: N/A +- PR Introducing Patch: N/A +- PR Updating Patch: N/A + +### [expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch](expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch) +- Reason: Enable support for 16kb memory page size on Android +- Upstream PR/issue: N/A +- E/App issue: N/A +- PR Introducing Patch: N/A +- PR Updating Patch: N/A diff --git a/patches/expo-modules-core+2.3.12+001+disableViewRecycling.patch b/patches/expo-modules-core/expo-modules-core+2.3.12+001+disableViewRecycling.patch similarity index 100% rename from patches/expo-modules-core+2.3.12+001+disableViewRecycling.patch rename to patches/expo-modules-core/expo-modules-core+2.3.12+001+disableViewRecycling.patch diff --git a/patches/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch b/patches/expo-modules-core/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch similarity index 100% rename from patches/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch rename to patches/expo-modules-core/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch diff --git a/patches/react-native-fs/details.md b/patches/react-native-fs/details.md new file mode 100644 index 0000000000000..9fcee270c72ee --- /dev/null +++ b/patches/react-native-fs/details.md @@ -0,0 +1,8 @@ +# `react-native-fs` patches + +### [react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch](react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch) +- Reason: Fix Android JNI packaging to support 16kb memory page size +- Upstream PR/issue: N/A +- E/App issue: N/A +- PR Introducing Patch: N/A +- PR Updating Patch: N/A diff --git a/patches/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch b/patches/react-native-fs/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch similarity index 100% rename from patches/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch rename to patches/react-native-fs/react-native-fs+2.20.0+001+android-jni-packaging-for-16kb-memory-page-size.patch diff --git a/patches/react-native-pdf/details.md b/patches/react-native-pdf/details.md new file mode 100644 index 0000000000000..5c197b42838c8 --- /dev/null +++ b/patches/react-native-pdf/details.md @@ -0,0 +1,8 @@ +# `react-native-pdf` patches + +### [react-native-pdf+6.7.7.patch](react-native-pdf+6.7.7.patch) +- Reason: Update dependencies for compatibility +- Upstream PR/issue: N/A +- E/App issue: N/A +- PR Introducing Patch: N/A +- PR Updating Patch: N/A diff --git a/patches/react-native-pdf+6.7.7.patch b/patches/react-native-pdf/react-native-pdf+6.7.7.patch similarity index 100% rename from patches/react-native-pdf+6.7.7.patch rename to patches/react-native-pdf/react-native-pdf+6.7.7.patch diff --git a/patches/react-native-safe-area-context/details.md b/patches/react-native-safe-area-context/details.md index b939cd2f31e56..e1fca9113d86f 100644 --- a/patches/react-native-safe-area-context/details.md +++ b/patches/react-native-safe-area-context/details.md @@ -1,6 +1,6 @@ # `react-native-safe-area-context` patches -### [react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch](react-native-safe-area-context+5.4.0+001+android-jni-packaging-for-16kb-memory-page-size.patch) +### [react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch](react-native-safe-area-context+5.4.0+001+android-enable-16kb-memory-page-size.patch) - Reason: Updates the packaging of the library on Android to enable 16KB memory page sizes on Android. - Upstream PR/issue: TODO From fa8c9f36c88c91c32e7c9ecf4eaa65c6a17b22f8 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Tue, 26 Aug 2025 09:57:55 +0200 Subject: [PATCH 42/50] fix(63871): make contentAfterStartOfChecklist optional --- .github/actions/javascript/authorChecklist/authorChecklist.ts | 2 +- .github/actions/javascript/authorChecklist/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/javascript/authorChecklist/authorChecklist.ts b/.github/actions/javascript/authorChecklist/authorChecklist.ts index f8c775a849300..80a8ba68b7701 100644 --- a/.github/actions/javascript/authorChecklist/authorChecklist.ts +++ b/.github/actions/javascript/authorChecklist/authorChecklist.ts @@ -47,7 +47,7 @@ async function getChecklistCategoriesForPullRequest(): Promise> { function partitionWithChecklist(body: string): string[] { const [contentBeforeChecklist, contentAfterStartOfChecklist] = body.split(checklistStartsWith); - const [checklistContent, contentAfterChecklist] = contentAfterStartOfChecklist.split(checklistEndsWith); + const [checklistContent, contentAfterChecklist] = (contentAfterStartOfChecklist || '').split(checklistEndsWith); return [contentBeforeChecklist, checklistContent, contentAfterChecklist]; } diff --git a/.github/actions/javascript/authorChecklist/index.js b/.github/actions/javascript/authorChecklist/index.js index 1291233a0abfd..9a8e197f725a0 100644 --- a/.github/actions/javascript/authorChecklist/index.js +++ b/.github/actions/javascript/authorChecklist/index.js @@ -15292,7 +15292,7 @@ async function getChecklistCategoriesForPullRequest() { } function partitionWithChecklist(body) { const [contentBeforeChecklist, contentAfterStartOfChecklist] = body.split(checklistStartsWith); - const [checklistContent, contentAfterChecklist] = contentAfterStartOfChecklist.split(checklistEndsWith); + const [checklistContent, contentAfterChecklist] = (contentAfterStartOfChecklist || '').split(checklistEndsWith); return [contentBeforeChecklist, checklistContent, contentAfterChecklist]; } async function getNumberOfItemsFromAuthorChecklist() { From 05e087c1efe5f8a17c586541ebe62edf9571807b Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Tue, 26 Aug 2025 10:06:23 +0200 Subject: [PATCH 43/50] fix(63871): remove redundant 16kb script --- scripts/check-16kb-android.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 scripts/check-16kb-android.sh diff --git a/scripts/check-16kb-android.sh b/scripts/check-16kb-android.sh deleted file mode 100644 index 24203234afb8f..0000000000000 --- a/scripts/check-16kb-android.sh +++ /dev/null @@ -1,13 +0,0 @@ -APK=./build/outputs/apk/debug/Expensify-debug.apk -READELF=/opt/homebrew/opt/llvm/bin/llvm-readelf # или /opt/homebrew/opt/binutils/bin/readelf - -unzip -Z1 "$APK" "lib/*/*.so" | while read -r so; do - abi=$(echo "$so" | cut -d/ -f2) - name=$(basename "$so") - align=$( - unzip -p "$APK" "$so" \ - | $READELF -W -l - \ - | awk '/LOAD/{for(i=1;i<=NF;i++){if($i ~ /^0x/){a=$i}}} END{print a}' - ) - printf "[%s] %-30s align=%s\n" "$abi" "$name" "$align" -done \ No newline at end of file From 12041a5180056db72e6dc676ba50f9e896509814 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Tue, 26 Aug 2025 10:09:55 +0200 Subject: [PATCH 44/50] fix(63871): fix 16kb alignment script to pass on CI --- ...oid-16kb-memory-page-size-compatibility.sh | 70 ++++++++++--------- 1 file changed, 37 insertions(+), 33 deletions(-) diff --git a/scripts/check-android-16kb-memory-page-size-compatibility.sh b/scripts/check-android-16kb-memory-page-size-compatibility.sh index 5c1f723a97efd..7a64c1f6132dc 100755 --- a/scripts/check-android-16kb-memory-page-size-compatibility.sh +++ b/scripts/check-android-16kb-memory-page-size-compatibility.sh @@ -1,14 +1,16 @@ #!/bin/bash +set -o pipefail + progname="${0##*/}" progname="${progname%.sh}" # usage: check_elf_alignment.sh [path to *.so files|path to *.apk] cleanup_trap() { - if [ -n "${tmp}" -a -d "${tmp}" ]; then - rm -rf ${tmp} + if [ -n "$tmp" ] && [ -d "$tmp" ]; then + rm -rf "$tmp" fi - exit $1 + exit "${1:-0}" } usage() { @@ -19,37 +21,37 @@ usage() { echo "Usage: ${progname} [input-path|input-APK|input-APEX]" } -if [ ${#} -ne 1 ]; then +if [ "$#" -ne 1 ]; then usage - exit + exit 1 fi -case ${1} in +case "$1" in --help | -h | -\?) usage - exit + exit 0 ;; - *) - dir="${1}" + dir="$1" ;; esac -if ! [ -f "${dir}" -o -d "${dir}" ]; then - echo "Invalid file: ${dir}" >&2 +if ! [ -f "$dir" ] && ! [ -d "$dir" ]; then + echo "Invalid file: $dir" >&2 exit 1 fi -if [[ "${dir}" == *.apk ]]; then +if [[ "$dir" == *.apk ]]; then trap 'cleanup_trap' EXIT echo echo "Recursively analyzing $dir" echo - if { zipalign --help 2>&1 | grep -q "\-P "; }; then + if zipalign --help 2>&1 | grep -q "\-P "; then echo "=== APK zip-alignment ===" - zipalign -v -c -P 16 4 "${dir}" | egrep 'lib/arm64-v8a|lib/x86_64|Verification' + # SC2196: use grep -E instead of egrep + zipalign -v -c -P 16 4 "$dir" | grep -E 'lib/arm64-v8a|lib/x86_64|Verification' echo "=========================" else echo "NOTICE: Zip alignment check requires build-tools version 35.0.0-rc3 or higher." @@ -59,23 +61,26 @@ if [[ "${dir}" == *.apk ]]; then echo " sdkmanager \"build-tools;35.0.0-rc3\"" fi - dir_filename=$(basename "${dir}") + dir_filename=$(basename "$dir") tmp=$(mktemp -d -t "${dir_filename%.apk}_out_XXXXX") - unzip "${dir}" lib/* -d "${tmp}" >/dev/null 2>&1 - dir="${tmp}" + unzip "$dir" lib/* -d "$tmp" >/dev/null 2>&1 + dir="$tmp" fi -if [[ "${dir}" == *.apex ]]; then +if [[ "$dir" == *.apex ]]; then trap 'cleanup_trap' EXIT echo echo "Recursively analyzing $dir" echo - dir_filename=$(basename "${dir}") + dir_filename=$(basename "$dir") tmp=$(mktemp -d -t "${dir_filename%.apex}_out_XXXXX") - deapexer extract "${dir}" "${tmp}" || { echo "Failed to deapex." && exit 1; } - dir="${tmp}" + if ! deapexer extract "$dir" "$tmp"; then + echo "Failed to deapex." + exit 1 + fi + dir="$tmp" fi RED="\e[31m" @@ -87,27 +92,26 @@ unaligned_libs=() echo echo "=== ELF alignment ===" -matches="$(find "${dir}" -type f)" +matches="$(find "$dir" -type f)" IFS=$'\n' for match in $matches; do - # We could recursively call this script or rewrite it to though. - [[ "${match}" == *".apk" ]] && echo "WARNING: doesn't recursively inspect .apk file: ${match}" - [[ "${match}" == *".apex" ]] && echo "WARNING: doesn't recursively inspect .apex file: ${match}" + [[ "$match" == *".apk" ]] && echo "WARNING: doesn't recursively inspect .apk file: $match" + [[ "$match" == *".apex" ]] && echo "WARNING: doesn't recursively inspect .apex file: $match" - [[ $(file "${match}") == *"ELF"* ]] || continue + [[ $(file "$match") == *"ELF"* ]] || continue - res="$(objdump -p "${match}" | grep LOAD | awk '{ print $NF }' | head -1)" + res="$(objdump -p "$match" | grep LOAD | awk '{ print $NF }' | head -1)" if [[ $res =~ 2\*\*(1[4-9]|[2-9][0-9]|[1-9][0-9]{2,}) ]]; then - echo -e "${match}: ${GREEN}ALIGNED${ENDCOLOR} ($res)" + echo -e "$match: ${GREEN}ALIGNED${ENDCOLOR} ($res)" else - echo -e "${match}: ${RED}UNALIGNED${ENDCOLOR} ($res)" - unaligned_libs+=("${match}") + echo -e "$match: ${RED}UNALIGNED${ENDCOLOR} ($res)" + unaligned_libs+=("$match") fi done -if [ ${#unaligned_libs[@]} -gt 0 ]; then +if [ "${#unaligned_libs[@]}" -gt 0 ]; then echo -e "${RED}Found ${#unaligned_libs[@]} unaligned libs (only arm64-v8a/x86_64 libs need to be aligned).${ENDCOLOR}" -elif [ -n "${dir_filename}" ]; then +elif [ -n "${dir_filename:-}" ]; then echo -e "ELF Verification Successful" fi -echo "=====================" +echo "=====================" \ No newline at end of file From 347c26f5646a5ec929191aa058886aea48995f31 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Tue, 26 Aug 2025 11:02:43 +0200 Subject: [PATCH 45/50] fix(63871): add cspell words --- cspell.json | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/cspell.json b/cspell.json index e1a79a586b246..4345b5c0dcd43 100644 --- a/cspell.json +++ b/cspell.json @@ -14,8 +14,8 @@ "Aircall", "airshipconfig", "airside", - "Amal", "Amal's", + "Amal", "americanexpressfdx", "Amina", "androiddebugkey", @@ -97,8 +97,8 @@ "ccache", "ccupload", "cdfbmo", - "Certinia", "Certinia's", + "Certinia", "CFPB", "chargeback", "Charleson", @@ -125,6 +125,7 @@ "contenteditable", "copiloted", "copiloting", + "copyable", "Corpay", "Countertop", "CPPFLAGS", @@ -137,6 +138,8 @@ "customfield", "customise", "dateexported", + "deapex", + "deapexer", "debitamount", "deburr", "deburred", @@ -179,6 +182,7 @@ "EMEA", "Emphemeral", "endcapture", + "ENDCOLOR", "enddate", "endfor", "enroute", @@ -264,8 +268,8 @@ "gsst", "Gsuite", "Handtool", - "hanno", "hanno_gödecke", + "hanno", "headshot", "healthcheck", "Heathrow", @@ -289,6 +293,7 @@ "Inclusivity", "initialises", "inputmethod", + "inputmethod", "instancetype", "Intacct", "intenthandler", @@ -435,6 +440,7 @@ "nullptr", "numberformat", "objc", + "objdump", "oblador", "OCBC", "octocat", @@ -501,6 +507,7 @@ "Pressable", "Pressables", "prettierrc", + "progname", "proguard", "Proofpoint", "Protip", @@ -564,13 +571,14 @@ "samltool", "Saqbd", "SBFJ", - "Scaleway", "Scaleway's", + "Scaleway", "schedulable", "Schengen", "Schiffli", "SCIM", "scriptname", + "sdkmanager", "seamless", "Segoe", "seguiemj", @@ -741,8 +749,6 @@ "zoneinfo", "zxcv", "zxldvw", - "inputmethod", - "copyable", "مثال" ], "ignorePaths": [ From 8ee429ee53c8496fdeb2875a2f64ac1ef9b409f8 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Wed, 27 Aug 2025 11:15:52 +0200 Subject: [PATCH 46/50] fix(63871): update Podfile.lock --- ios/Podfile.lock | 106 ++++++++++++++++++++++------------------------- 1 file changed, 49 insertions(+), 57 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 2f3bb62478cb1..26bda930af949 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -117,7 +117,7 @@ PODS: - ExpoModulesCore - ExpoFont (13.3.1): - ExpoModulesCore - - ExpoImage (2.1.6): + - ExpoImage (2.4.0): - ExpoModulesCore - libavif/libdav1d - SDWebImage (~> 5.21.0) @@ -413,32 +413,10 @@ PODS: - ReactCommon/turbomodule/core - Yoga - NWWebSocket (0.5.4) - - Onfido (29.7.2) - - onfido-react-native-sdk (10.6.0): - - DoubleConversion - - glog - - hermes-engine - - Onfido (~> 29.7.0) - - 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 + - Onfido (32.6.0) + - onfido-react-native-sdk (15.0.0): + - Onfido (~> 32.6.0) + - React - Plaid (5.6.0) - PromisesObjC (2.4.0) - PromisesSwift (2.4.0): @@ -502,6 +480,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -520,6 +499,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -537,6 +517,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -556,6 +537,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -574,6 +556,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -592,6 +575,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -610,6 +594,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -628,6 +613,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -646,6 +632,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -664,6 +651,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -682,6 +670,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -700,6 +689,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -718,6 +708,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -736,6 +727,7 @@ PODS: - React-jsinspector - React-jsitooling - React-perflogger + - React-rendererconsistency - React-runtimescheduler - React-utils - SocketRocket (= 0.7.1) @@ -2141,7 +2133,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-pdf (6.7.3): + - react-native-pdf (6.7.7): - DoubleConversion - glog - hermes-engine @@ -2875,7 +2867,7 @@ PODS: - RNGoogleSignin (10.0.1): - GoogleSignIn (~> 7.0) - React-Core - - RNLiveMarkdown (0.1.294): + - RNLiveMarkdown (0.1.299): - DoubleConversion - glog - hermes-engine @@ -2904,13 +2896,13 @@ PODS: - Yoga - RNLocalize (2.2.6): - React-Core - - rnmapbox-maps (10.1.33): + - rnmapbox-maps (10.1.41-rc.2): - MapboxMaps (~> 10.19.0) - React - React-Core - - rnmapbox-maps/DynamicLibrary (= 10.1.33) + - rnmapbox-maps/DynamicLibrary (= 10.1.41-rc.2) - Turf - - rnmapbox-maps/DynamicLibrary (10.1.33): + - rnmapbox-maps/DynamicLibrary (10.1.41-rc.2): - DoubleConversion - hermes-engine - MapboxMaps (~> 10.19.0) @@ -3005,7 +2997,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNReanimated (3.17.1): + - RNReanimated (3.19.1): - DoubleConversion - glog - hermes-engine @@ -3028,10 +3020,10 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated (= 3.17.1) - - RNReanimated/worklets (= 3.17.1) + - RNReanimated/reanimated (= 3.19.1) + - RNReanimated/worklets (= 3.19.1) - Yoga - - RNReanimated/reanimated (3.17.1): + - RNReanimated/reanimated (3.19.1): - DoubleConversion - glog - hermes-engine @@ -3054,9 +3046,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated/apple (= 3.17.1) + - RNReanimated/reanimated/apple (= 3.19.1) - Yoga - - RNReanimated/reanimated/apple (3.17.1): + - RNReanimated/reanimated/apple (3.19.1): - DoubleConversion - glog - hermes-engine @@ -3080,7 +3072,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNReanimated/worklets (3.17.1): + - RNReanimated/worklets (3.19.1): - DoubleConversion - glog - hermes-engine @@ -3103,9 +3095,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/worklets/apple (= 3.17.1) + - RNReanimated/worklets/apple (= 3.19.1) - Yoga - - RNReanimated/worklets/apple (3.17.1): + - RNReanimated/worklets/apple (3.19.1): - DoubleConversion - glog - hermes-engine @@ -3129,7 +3121,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNScreens (4.11.1): + - RNScreens (4.12.0): - DoubleConversion - glog - hermes-engine @@ -3153,9 +3145,9 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNScreens/common (= 4.11.1) + - RNScreens/common (= 4.12.0) - Yoga - - RNScreens/common (4.11.1): + - RNScreens/common (4.12.0): - DoubleConversion - glog - hermes-engine @@ -3754,7 +3746,7 @@ SPEC CHECKSUMS: AirshipServiceExtension: 9c73369f426396d9fb9ff222d86d842fac76ba46 AppAuth: 501c04eda8a8d11f179dbe8637b7a91bb7e5d2fa AppLogs: 3bc4e9b141dbf265b9464409caaa40416a9ee0e0 - boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 + boost: 659a89341ea4ab3df8259733813b52f26d8be9a5 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb EXAV: 13d43af15268a3f448a6b994e91574c939f065e6 EXConstants: 26f334022fc0b454b7ecdc7c12d36ffa68c7c397 @@ -3764,7 +3756,7 @@ SPEC CHECKSUMS: Expo: a02b1eb4c08689dc866eabf48e2eefee712ded6b ExpoAsset: 3ea3275cca6a7793b3d36fbf1075c590f803fbcb ExpoFont: 312c73403bbd4f98e1d6a5330641a56292583cd2 - ExpoImage: a5b427e52ee7a04921081e59aac5eef7a8134ba0 + ExpoImage: 04ffc79f9a0391573b77efbc549d59c655caa5a8 ExpoImageManipulator: 7096d6bf874c0a0a649f60733fef8a99c4ad0fe2 ExpoModulesCore: 5411340438617e068df45f70127ff34640f3f337 fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6 @@ -3807,8 +3799,8 @@ SPEC CHECKSUMS: nanopb: fad817b59e0457d11a5dfbde799381cd727c1275 NitroModules: faec300c5f7074ec6d3255b2f6aedb94ac8a2d3d NWWebSocket: 040d22f23438cc09aaeabf537beff67699c3c76d - Onfido: f3af62ea1c9a419589c133e3e511e5d2c4f3f8af - onfido-react-native-sdk: 0245dba46f3e3a10bbaf3969fc7c947a22fb46fa + Onfido: 25d7d29890ca96e7faf79c84e2d3a33cd8fb8631 + onfido-react-native-sdk: 399457ff7c355f29192ad374fcfd200b804cce4a Plaid: c32f22ffce5ec67c9e6147eaf6c4d7d5f8086d89 PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 PromisesSwift: 9d77319bbe72ebf6d872900551f7eeba9bce2851 @@ -3820,7 +3812,7 @@ SPEC CHECKSUMS: RCTTypeSafety: 659ae318c09de0477fd27bbc9e140071c7ea5c93 React: c2d3aa44c49bb34e4dfd49d3ee92da5ebacc1c1c React-callinvoker: 1bdfb7549b5af266d85757193b5069f60659ef9d - React-Core: 7150cf9b6a5af063b37003062689f1691e79c020 + React-Core: 7e3642ef83e1032df3d25ebc840868c0c54381ca React-CoreModules: 15a85e6665d61678942da6ae485b351f4c699049 React-cxxreact: 74f9de59259ac951923f5726aa14f0398f167af9 React-debug: a9861ea2196e886642887e29fd1d86c6eee93454 @@ -3855,11 +3847,11 @@ SPEC CHECKSUMS: react-native-geolocation: d5114c4ea019574f76344eca8503555ba1208b46 react-native-image-picker: 05b58a33b780623da2f891c55dcc57c6aa867d83 react-native-key-command: b04997038f8fe4a03b711abe36cd84ced93c50b3 - react-native-keyboard-controller: 2602bca1715435e3742c5a69d45ff42c1d97e1b9 + react-native-keyboard-controller: bf564ee7ea1a9b4681aa83989a06f3990b4291a1 react-native-launch-arguments: 5f41e0abf88a15e3c5309b8875d6fd5ac43df49d react-native-netinfo: b8577cba87fbe7b7740c279ee23d25d7c5d87666 react-native-pager-view: 12c1b7b6f50efb3e5d57d62ea5c601cba0585bfd - react-native-pdf: 1fee221a1bdb66bb5dc14718e0687dd34f33a823 + react-native-pdf: 627c954988c313c3b72a642611ae9160669e2f32 react-native-performance: ed312c0ee791c50077b7ad22b01685fe5a0e3db6 react-native-plaid-link-sdk: e83dc18fa6752fcfb1a9bbe995f78a8a7c659fe1 react-native-release-profiler: 3c899b04a88a63735e74beb1d1010ec8c8616347 @@ -3869,7 +3861,7 @@ SPEC CHECKSUMS: react-native-webview: 9cf95bd9b16cde5d9bbae452a9cf55631b62028d React-NativeModulesApple: 1b5e6bf9164371771e553f744da801f5d9f5c7e5 React-oscompat: ef5df1c734f19b8003e149317d041b8ce1f7d29c - React-perflogger: 6fd2f6811533e9c19a61e855c3033eecbf4ad2a0 + React-perflogger: 005c6dfd4aa335fd527c94cc4591ed9b509f0486 React-performancetimeline: df331d0764cc54204a73960408371111efbd34b7 React-RCTActionSheet: a499b0d6d9793886b67ba3e16046a3fef2cdbbc3 React-RCTAnimation: 2595dcb10a82216a511b54742f8c28d793852ac6 @@ -3884,7 +3876,7 @@ SPEC CHECKSUMS: React-RCTSettings: a060c7e381a3896104761b8eed7e284d95e37df3 React-RCTText: 4f272b72dbb61f390d8c8274528f9fdbff983806 React-RCTVibration: 0e5326220719aca12473d703aa46693e3b4ce67a - React-rendererconsistency: 68db5a64f0c42b0337e25ba7b0e9513caae1389d + React-rendererconsistency: 4e8e3fd5e90ec9594a4bd5950496eb8006c72f7e React-renderercss: eeb482d2790028a9b47ce9c214397ae2f4e2a7c5 React-rendererdebug: c6e3b7583c2f0802cb3b4cf19f714853fa9ac670 React-rncore: 0f64cacb1becc6f89c99018ca920d012f9044ebd @@ -3911,14 +3903,14 @@ SPEC CHECKSUMS: RNFS: 4ac0f0ea233904cb798630b3c077808c06931688 RNGestureHandler: b249b5be5a3659025aed8898aaaafd567dc2d660 RNGoogleSignin: ccaa4a81582cf713eea562c5dd9dc1961a715fd0 - RNLiveMarkdown: a2f598d3a4a025543185c2b5aa6ab86e9dfaaf8c + RNLiveMarkdown: e61d72500c1cba0c7e6ff45e97a69f6276eacafb RNLocalize: d4b8af4e442d4bcca54e68fc687a2129b4d71a81 - rnmapbox-maps: a5569b64e3ca5fcd1be1f9d5bb478bf601d2a033 + rnmapbox-maps: 12f56a620cf40a52ddec1d5400800f51c98990af RNNitroSQLite: a1b0f1a665c54fc0f2510a292c1bf8ac4d44231b RNPermissions: fd6b2676e74ecb6d2dec0a6168502ab7af733e34 RNReactNativeHapticFeedback: 85c0a6ff490d52f5e8073040296fefe5945ebbfa - RNReanimated: 71c3cc66ee4866e550ddc202e01cd670de3b9ed5 - RNScreens: d9d5d8a2a484bb4446968bfa00db991f1117db44 + RNReanimated: 0692f0b36f15b83a7936c3611cab923e1396eeb9 + RNScreens: 9cb0d4b69067d62d51c278730bb0322f5cbd8d8e RNShare: 1e3e15a3d2608acde2808bc35448e2344e38e15b RNSound: 6c156f925295bdc83e8e422e7d8b38d33bc71852 RNSVG: 2aeb75970331da3a64cb89309f7fd7bd3769260a From cdd13d99f02bfabed15ebdad2e820f91e8de2cc4 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Thu, 28 Aug 2025 11:47:27 +0200 Subject: [PATCH 47/50] fix(63871): align expo dependencies with 53.x --- package-lock.json | 1050 +++++++++++++++-- package.json | 5 +- patches/expo-asset+11.1.5+001+initial.patch | 25 - patches/expo-modules-core/details.md | 17 - ...core+2.3.12+001+disableViewRecycling.patch | 16 - ...android-enable-16kb-memory-page-size.patch | 25 - 6 files changed, 945 insertions(+), 193 deletions(-) delete mode 100644 patches/expo-asset+11.1.5+001+initial.patch delete mode 100644 patches/expo-modules-core/details.md delete mode 100644 patches/expo-modules-core/expo-modules-core+2.3.12+001+disableViewRecycling.patch delete mode 100644 patches/expo-modules-core/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch diff --git a/package-lock.json b/package-lock.json index b51970a7e68cb..4384f08734960 100644 --- a/package-lock.json +++ b/package-lock.json @@ -60,11 +60,11 @@ "dom-serializer": "^0.2.2", "domhandler": "^4.3.0", "expensify-common": "2.0.156", - "expo": "53.0.7", + "expo": "53.0.22", "expo-asset": "^11.1.2", "expo-av": "^15.1.5", "expo-font": "^13.0.4", - "expo-image": "^2.4.0", + "expo-image": "~2.4.0", "expo-image-manipulator": "^13.1.5", "fast-equals": "^5.2.2", "focus-trap-react": "^11.0.3", @@ -326,7 +326,9 @@ "license": "UNLICENSED" }, "node_modules/@0no-co/graphql.web": { - "version": "1.1.2", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@0no-co/graphql.web/-/graphql.web-1.2.0.tgz", + "integrity": "sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw==", "license": "MIT", "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" @@ -1272,7 +1274,9 @@ } }, "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.27.1", + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.28.0.tgz", + "integrity": "sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==", "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", @@ -1393,6 +1397,8 @@ }, "node_modules/@babel/plugin-syntax-decorators": { "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.27.1.tgz", + "integrity": "sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" @@ -3848,27 +3854,30 @@ } }, "node_modules/@expo/cli": { - "version": "0.24.11", + "version": "0.24.21", + "resolved": "https://registry.npmjs.org/@expo/cli/-/cli-0.24.21.tgz", + "integrity": "sha512-DT6K9vgFHqqWL/19mU1ofRcPoO1pn4qmgi76GtuiNU4tbBe/02mRHwFsQw7qRfFAT28If5e/wiwVozgSuZVL8g==", "license": "MIT", "dependencies": { "@0no-co/graphql.web": "^1.0.8", "@babel/runtime": "^7.20.0", "@expo/code-signing-certificates": "^0.0.5", - "@expo/config": "~11.0.8", - "@expo/config-plugins": "~10.0.2", + "@expo/config": "~11.0.13", + "@expo/config-plugins": "~10.1.2", "@expo/devcert": "^1.1.2", - "@expo/env": "~1.0.5", - "@expo/image-utils": "^0.7.4", - "@expo/json-file": "^9.1.4", - "@expo/metro-config": "~0.20.13", - "@expo/osascript": "^2.2.4", - "@expo/package-manager": "^1.8.4", - "@expo/plist": "^0.3.4", - "@expo/prebuild-config": "^9.0.5", + "@expo/env": "~1.0.7", + "@expo/image-utils": "^0.7.6", + "@expo/json-file": "^9.1.5", + "@expo/metro-config": "~0.20.17", + "@expo/osascript": "^2.2.5", + "@expo/package-manager": "^1.8.6", + "@expo/plist": "^0.3.5", + "@expo/prebuild-config": "^9.0.11", + "@expo/schema-utils": "^0.1.0", "@expo/spawn-async": "^1.7.2", "@expo/ws-tunnel": "^1.0.1", "@expo/xcpretty": "^4.3.0", - "@react-native/dev-middleware": "0.79.2", + "@react-native/dev-middleware": "0.79.6", "@urql/core": "^5.0.6", "@urql/exchange-retry": "^1.3.0", "accepts": "^1.3.8", @@ -3883,9 +3892,9 @@ "debug": "^4.3.4", "env-editor": "^0.4.1", "freeport-async": "^2.0.0", - "getenv": "^1.0.0", + "getenv": "^2.0.0", "glob": "^10.4.2", - "lan-network": "^0.1.4", + "lan-network": "^0.1.6", "minimatch": "^9.0.0", "node-forge": "^1.3.1", "npm-package-arg": "^11.0.0", @@ -3917,8 +3926,50 @@ "expo-internal": "build/bin/cli" } }, + "node_modules/@expo/cli/node_modules/@react-native/debugger-frontend": { + "version": "0.79.6", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.79.6.tgz", + "integrity": "sha512-lIK/KkaH7ueM22bLO0YNaQwZbT/oeqhaghOvmZacaNVbJR1Cdh/XAqjT8FgCS+7PUnbxA8B55NYNKGZG3O2pYw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=18" + } + }, + "node_modules/@expo/cli/node_modules/@react-native/dev-middleware": { + "version": "0.79.6", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.79.6.tgz", + "integrity": "sha512-BK3GZBa9c7XSNR27EDRtxrgyyA3/mf1j3/y+mPk7Ac0Myu85YNrXnC9g3mL5Ytwo0g58TKrAIgs1fF2Q5Mn6mQ==", + "license": "MIT", + "dependencies": { + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.79.6", + "chrome-launcher": "^0.15.2", + "chromium-edge-launcher": "^0.2.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "open": "^7.0.3", + "serve-static": "^1.16.2", + "ws": "^6.2.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@expo/cli/node_modules/@react-native/dev-middleware/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, "node_modules/@expo/cli/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -3932,10 +3983,14 @@ }, "node_modules/@expo/cli/node_modules/arg": { "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", "license": "MIT" }, "node_modules/@expo/cli/node_modules/brace-expansion": { - "version": "2.0.1", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" @@ -3943,6 +3998,8 @@ }, "node_modules/@expo/cli/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -3957,6 +4014,8 @@ }, "node_modules/@expo/cli/node_modules/chownr": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", "license": "BlueOak-1.0.0", "engines": { "node": ">=18" @@ -3964,6 +4023,8 @@ }, "node_modules/@expo/cli/node_modules/cli-cursor": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", "license": "MIT", "dependencies": { "restore-cursor": "^2.0.0" @@ -3974,6 +4035,8 @@ }, "node_modules/@expo/cli/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -3984,17 +4047,41 @@ }, "node_modules/@expo/cli/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, + "node_modules/@expo/cli/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/@expo/cli/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", "engines": { "node": ">=0.8.0" } }, + "node_modules/@expo/cli/node_modules/getenv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-2.0.0.tgz", + "integrity": "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/@expo/cli/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" @@ -4002,6 +4089,8 @@ }, "node_modules/@expo/cli/node_modules/log-symbols": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", "license": "MIT", "dependencies": { "chalk": "^2.0.1" @@ -4012,6 +4101,8 @@ }, "node_modules/@expo/cli/node_modules/log-symbols/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -4022,6 +4113,8 @@ }, "node_modules/@expo/cli/node_modules/log-symbols/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -4034,6 +4127,8 @@ }, "node_modules/@expo/cli/node_modules/log-symbols/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -4041,10 +4136,14 @@ }, "node_modules/@expo/cli/node_modules/log-symbols/node_modules/color-name": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "license": "MIT" }, "node_modules/@expo/cli/node_modules/log-symbols/node_modules/has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", "engines": { "node": ">=4" @@ -4052,6 +4151,8 @@ }, "node_modules/@expo/cli/node_modules/log-symbols/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -4062,6 +4163,8 @@ }, "node_modules/@expo/cli/node_modules/mimic-fn": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", "license": "MIT", "engines": { "node": ">=4" @@ -4069,6 +4172,8 @@ }, "node_modules/@expo/cli/node_modules/minimatch": { "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -4082,6 +4187,8 @@ }, "node_modules/@expo/cli/node_modules/minipass": { "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" @@ -4089,6 +4196,8 @@ }, "node_modules/@expo/cli/node_modules/minizlib": { "version": "3.0.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.2.tgz", + "integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==", "license": "MIT", "dependencies": { "minipass": "^7.1.2" @@ -4099,6 +4208,8 @@ }, "node_modules/@expo/cli/node_modules/mkdirp": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", "license": "MIT", "bin": { "mkdirp": "dist/cjs/src/bin.js" @@ -4110,8 +4221,16 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/@expo/cli/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, "node_modules/@expo/cli/node_modules/onetime": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", "license": "MIT", "dependencies": { "mimic-fn": "^1.0.0" @@ -4122,6 +4241,8 @@ }, "node_modules/@expo/cli/node_modules/ora": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", "license": "MIT", "dependencies": { "chalk": "^2.4.2", @@ -4137,6 +4258,8 @@ }, "node_modules/@expo/cli/node_modules/ora/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -4147,6 +4270,8 @@ }, "node_modules/@expo/cli/node_modules/ora/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -4159,6 +4284,8 @@ }, "node_modules/@expo/cli/node_modules/ora/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -4166,10 +4293,14 @@ }, "node_modules/@expo/cli/node_modules/ora/node_modules/color-name": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "license": "MIT" }, "node_modules/@expo/cli/node_modules/ora/node_modules/has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", "engines": { "node": ">=4" @@ -4177,6 +4308,8 @@ }, "node_modules/@expo/cli/node_modules/ora/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -4187,6 +4320,8 @@ }, "node_modules/@expo/cli/node_modules/picomatch": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz", + "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==", "license": "MIT", "engines": { "node": ">=10" @@ -4197,6 +4332,8 @@ }, "node_modules/@expo/cli/node_modules/restore-cursor": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", "license": "MIT", "dependencies": { "onetime": "^2.0.0", @@ -4207,7 +4344,9 @@ } }, "node_modules/@expo/cli/node_modules/semver": { - "version": "7.7.1", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -4216,8 +4355,25 @@ "node": ">=10" } }, + "node_modules/@expo/cli/node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/@expo/cli/node_modules/strip-ansi": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "license": "MIT", "dependencies": { "ansi-regex": "^4.1.0" @@ -4228,6 +4384,8 @@ }, "node_modules/@expo/cli/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -4238,6 +4396,8 @@ }, "node_modules/@expo/cli/node_modules/tar": { "version": "7.4.3", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", + "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", "license": "ISC", "dependencies": { "@isaacs/fs-minipass": "^4.0.0", @@ -4253,6 +4413,8 @@ }, "node_modules/@expo/cli/node_modules/yallist": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", "license": "BlueOak-1.0.0", "engines": { "node": ">=18" @@ -4260,6 +4422,8 @@ }, "node_modules/@expo/code-signing-certificates": { "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz", + "integrity": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==", "license": "MIT", "dependencies": { "node-forge": "^1.2.1", @@ -4267,15 +4431,17 @@ } }, "node_modules/@expo/config": { - "version": "11.0.8", + "version": "11.0.13", + "resolved": "https://registry.npmjs.org/@expo/config/-/config-11.0.13.tgz", + "integrity": "sha512-TnGb4u/zUZetpav9sx/3fWK71oCPaOjZHoVED9NaEncktAd0Eonhq5NUghiJmkUGt3gGSjRAEBXiBbbY9/B1LA==", "license": "MIT", "dependencies": { "@babel/code-frame": "~7.10.4", - "@expo/config-plugins": "~10.0.2", - "@expo/config-types": "^53.0.3", - "@expo/json-file": "^9.1.4", + "@expo/config-plugins": "~10.1.2", + "@expo/config-types": "^53.0.5", + "@expo/json-file": "^9.1.5", "deepmerge": "^4.3.1", - "getenv": "^1.0.0", + "getenv": "^2.0.0", "glob": "^10.4.2", "require-from-string": "^2.0.2", "resolve-from": "^5.0.0", @@ -4286,16 +4452,18 @@ } }, "node_modules/@expo/config-plugins": { - "version": "10.0.2", + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-10.1.2.tgz", + "integrity": "sha512-IMYCxBOcnuFStuK0Ay+FzEIBKrwW8OVUMc65+v0+i7YFIIe8aL342l7T4F8lR4oCfhXn7d6M5QPgXvjtc/gAcw==", "license": "MIT", "dependencies": { - "@expo/config-types": "^53.0.3", - "@expo/json-file": "~9.1.4", - "@expo/plist": "^0.3.4", + "@expo/config-types": "^53.0.5", + "@expo/json-file": "~9.1.5", + "@expo/plist": "^0.3.5", "@expo/sdk-runtime-versions": "^1.0.0", "chalk": "^4.1.2", "debug": "^4.3.5", - "getenv": "^1.0.0", + "getenv": "^2.0.0", "glob": "^10.4.2", "resolve-from": "^5.0.0", "semver": "^7.5.4", @@ -4307,6 +4475,8 @@ }, "node_modules/@expo/config-plugins/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -4320,6 +4490,8 @@ }, "node_modules/@expo/config-plugins/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -4334,6 +4506,8 @@ }, "node_modules/@expo/config-plugins/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -4344,17 +4518,32 @@ }, "node_modules/@expo/config-plugins/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, + "node_modules/@expo/config-plugins/node_modules/getenv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-2.0.0.tgz", + "integrity": "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/@expo/config-plugins/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@expo/config-plugins/node_modules/semver": { - "version": "7.7.1", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -4365,6 +4554,8 @@ }, "node_modules/@expo/config-plugins/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -4374,7 +4565,9 @@ } }, "node_modules/@expo/config-types": { - "version": "53.0.3", + "version": "53.0.5", + "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-53.0.5.tgz", + "integrity": "sha512-kqZ0w44E+HEGBjy+Lpyn0BVL5UANg/tmNixxaRMLS6nf37YsDrLk2VMAmeKMMk5CKG0NmOdVv3ngeUjRQMsy9g==", "license": "MIT" }, "node_modules/@expo/config/node_modules/@babel/code-frame": { @@ -4384,6 +4577,15 @@ "@babel/highlight": "^7.10.4" } }, + "node_modules/@expo/config/node_modules/getenv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-2.0.0.tgz", + "integrity": "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/@expo/config/node_modules/semver": { "version": "7.7.1", "license": "ISC", @@ -4396,6 +4598,8 @@ }, "node_modules/@expo/devcert": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", "license": "MIT", "dependencies": { "@expo/sudo-prompt": "^9.3.1", @@ -4405,24 +4609,30 @@ }, "node_modules/@expo/devcert/node_modules/debug": { "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/@expo/env": { - "version": "1.0.5", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@expo/env/-/env-1.0.7.tgz", + "integrity": "sha512-qSTEnwvuYJ3umapO9XJtrb1fAqiPlmUUg78N0IZXXGwQRt+bkp0OBls+Y5Mxw/Owj8waAM0Z3huKKskRADR5ow==", "license": "MIT", "dependencies": { "chalk": "^4.0.0", "debug": "^4.3.4", "dotenv": "~16.4.5", "dotenv-expand": "~11.0.6", - "getenv": "^1.0.0" + "getenv": "^2.0.0" } }, "node_modules/@expo/env/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -4436,6 +4646,8 @@ }, "node_modules/@expo/env/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -4450,6 +4662,8 @@ }, "node_modules/@expo/env/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -4460,10 +4674,23 @@ }, "node_modules/@expo/env/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, + "node_modules/@expo/env/node_modules/getenv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-2.0.0.tgz", + "integrity": "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/@expo/env/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" @@ -4471,6 +4698,8 @@ }, "node_modules/@expo/env/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -4580,12 +4809,14 @@ } }, "node_modules/@expo/image-utils": { - "version": "0.7.4", + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.7.6.tgz", + "integrity": "sha512-GKnMqC79+mo/1AFrmAcUcGfbsXXTRqOMNS1umebuevl3aaw+ztsYEFEiuNhHZW7PQ3Xs3URNT513ZxKhznDscw==", "license": "MIT", "dependencies": { "@expo/spawn-async": "^1.7.2", "chalk": "^4.0.0", - "getenv": "^1.0.0", + "getenv": "^2.0.0", "jimp-compact": "0.16.1", "parse-png": "^2.1.0", "resolve-from": "^5.0.0", @@ -4596,6 +4827,8 @@ }, "node_modules/@expo/image-utils/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -4609,6 +4842,8 @@ }, "node_modules/@expo/image-utils/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -4623,6 +4858,8 @@ }, "node_modules/@expo/image-utils/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -4633,17 +4870,32 @@ }, "node_modules/@expo/image-utils/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, + "node_modules/@expo/image-utils/node_modules/getenv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-2.0.0.tgz", + "integrity": "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/@expo/image-utils/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@expo/image-utils/node_modules/semver": { - "version": "7.7.1", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -4654,6 +4906,8 @@ }, "node_modules/@expo/image-utils/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -4663,7 +4917,9 @@ } }, "node_modules/@expo/json-file": { - "version": "9.1.4", + "version": "9.1.5", + "resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-9.1.5.tgz", + "integrity": "sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==", "license": "MIT", "dependencies": { "@babel/code-frame": "~7.10.4", @@ -4678,22 +4934,24 @@ } }, "node_modules/@expo/metro-config": { - "version": "0.20.13", + "version": "0.20.17", + "resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.20.17.tgz", + "integrity": "sha512-lpntF2UZn5bTwrPK6guUv00Xv3X9mkN3YYla+IhEHiYXWyG7WKOtDU0U4KR8h3ubkZ6SPH3snDyRyAzMsWtZFA==", "license": "MIT", "dependencies": { "@babel/core": "^7.20.0", "@babel/generator": "^7.20.5", "@babel/parser": "^7.20.0", "@babel/types": "^7.20.0", - "@expo/config": "~11.0.8", - "@expo/env": "~1.0.5", - "@expo/json-file": "~9.1.4", + "@expo/config": "~11.0.12", + "@expo/env": "~1.0.7", + "@expo/json-file": "~9.1.5", "@expo/spawn-async": "^1.7.2", "chalk": "^4.1.0", "debug": "^4.3.2", "dotenv": "~16.4.5", "dotenv-expand": "~11.0.6", - "getenv": "^1.0.0", + "getenv": "^2.0.0", "glob": "^10.4.2", "jsc-safe-url": "^0.2.4", "lightningcss": "~1.27.0", @@ -4704,6 +4962,8 @@ }, "node_modules/@expo/metro-config/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -4716,7 +4976,9 @@ } }, "node_modules/@expo/metro-config/node_modules/brace-expansion": { - "version": "2.0.1", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" @@ -4724,6 +4986,8 @@ }, "node_modules/@expo/metro-config/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -4738,6 +5002,8 @@ }, "node_modules/@expo/metro-config/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -4748,10 +5014,23 @@ }, "node_modules/@expo/metro-config/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, + "node_modules/@expo/metro-config/node_modules/getenv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-2.0.0.tgz", + "integrity": "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/@expo/metro-config/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" @@ -4759,6 +5038,8 @@ }, "node_modules/@expo/metro-config/node_modules/minimatch": { "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -4772,6 +5053,8 @@ }, "node_modules/@expo/metro-config/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -4788,7 +5071,9 @@ } }, "node_modules/@expo/osascript": { - "version": "2.2.4", + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/@expo/osascript/-/osascript-2.2.5.tgz", + "integrity": "sha512-Bpp/n5rZ0UmpBOnl7Li3LtM7la0AR3H9NNesqL+ytW5UiqV/TbonYW3rDZY38u4u/lG7TnYflVIVQPD+iqZJ5w==", "license": "MIT", "dependencies": { "@expo/spawn-async": "^1.7.2", @@ -4799,10 +5084,12 @@ } }, "node_modules/@expo/package-manager": { - "version": "1.8.4", + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.8.6.tgz", + "integrity": "sha512-gcdICLuL+nHKZagPIDC5tX8UoDDB8vNA5/+SaQEqz8D+T2C4KrEJc2Vi1gPAlDnKif834QS6YluHWyxjk0yZlQ==", "license": "MIT", "dependencies": { - "@expo/json-file": "^9.1.4", + "@expo/json-file": "^9.1.5", "@expo/spawn-async": "^1.7.2", "chalk": "^4.0.0", "npm-package-arg": "^11.0.0", @@ -4812,6 +5099,8 @@ }, "node_modules/@expo/package-manager/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -4825,6 +5114,8 @@ }, "node_modules/@expo/package-manager/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -4839,6 +5130,8 @@ }, "node_modules/@expo/package-manager/node_modules/cli-cursor": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", "license": "MIT", "dependencies": { "restore-cursor": "^2.0.0" @@ -4849,6 +5142,8 @@ }, "node_modules/@expo/package-manager/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -4859,10 +5154,14 @@ }, "node_modules/@expo/package-manager/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, "node_modules/@expo/package-manager/node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", "engines": { "node": ">=0.8.0" @@ -4870,6 +5169,8 @@ }, "node_modules/@expo/package-manager/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" @@ -4877,6 +5178,8 @@ }, "node_modules/@expo/package-manager/node_modules/log-symbols": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", "license": "MIT", "dependencies": { "chalk": "^2.0.1" @@ -4887,6 +5190,8 @@ }, "node_modules/@expo/package-manager/node_modules/log-symbols/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -4897,6 +5202,8 @@ }, "node_modules/@expo/package-manager/node_modules/log-symbols/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -4909,6 +5216,8 @@ }, "node_modules/@expo/package-manager/node_modules/log-symbols/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -4916,10 +5225,14 @@ }, "node_modules/@expo/package-manager/node_modules/log-symbols/node_modules/color-name": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "license": "MIT" }, "node_modules/@expo/package-manager/node_modules/log-symbols/node_modules/has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", "engines": { "node": ">=4" @@ -4927,6 +5240,8 @@ }, "node_modules/@expo/package-manager/node_modules/log-symbols/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -4937,6 +5252,8 @@ }, "node_modules/@expo/package-manager/node_modules/mimic-fn": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", "license": "MIT", "engines": { "node": ">=4" @@ -4944,6 +5261,8 @@ }, "node_modules/@expo/package-manager/node_modules/onetime": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", "license": "MIT", "dependencies": { "mimic-fn": "^1.0.0" @@ -4954,6 +5273,8 @@ }, "node_modules/@expo/package-manager/node_modules/ora": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", "license": "MIT", "dependencies": { "chalk": "^2.4.2", @@ -4969,6 +5290,8 @@ }, "node_modules/@expo/package-manager/node_modules/ora/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -4979,6 +5302,8 @@ }, "node_modules/@expo/package-manager/node_modules/ora/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -4991,6 +5316,8 @@ }, "node_modules/@expo/package-manager/node_modules/ora/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -4998,10 +5325,14 @@ }, "node_modules/@expo/package-manager/node_modules/ora/node_modules/color-name": { "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "license": "MIT" }, "node_modules/@expo/package-manager/node_modules/ora/node_modules/has-flag": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "license": "MIT", "engines": { "node": ">=4" @@ -5009,6 +5340,8 @@ }, "node_modules/@expo/package-manager/node_modules/ora/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -5019,6 +5352,8 @@ }, "node_modules/@expo/package-manager/node_modules/restore-cursor": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", "license": "MIT", "dependencies": { "onetime": "^2.0.0", @@ -5030,6 +5365,8 @@ }, "node_modules/@expo/package-manager/node_modules/strip-ansi": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "license": "MIT", "dependencies": { "ansi-regex": "^4.1.0" @@ -5040,6 +5377,8 @@ }, "node_modules/@expo/package-manager/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -5049,7 +5388,9 @@ } }, "node_modules/@expo/plist": { - "version": "0.3.4", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.3.5.tgz", + "integrity": "sha512-9RYVU1iGyCJ7vWfg3e7c/NVyMFs8wbl+dMWZphtFtsqyN9zppGREU3ctlD3i8KUE0sCUTVnLjCWr+VeUIDep2g==", "license": "MIT", "dependencies": { "@xmldom/xmldom": "^0.8.8", @@ -5057,30 +5398,27 @@ "xmlbuilder": "^15.1.1" } }, - "node_modules/@expo/plist/node_modules/@xmldom/xmldom": { - "version": "0.8.10", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/@expo/plist/node_modules/xmlbuilder": { "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", "license": "MIT", "engines": { "node": ">=8.0" } }, "node_modules/@expo/prebuild-config": { - "version": "9.0.5", + "version": "9.0.11", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-9.0.11.tgz", + "integrity": "sha512-0DsxhhixRbCCvmYskBTq8czsU0YOBsntYURhWPNpkl0IPVpeP9haE5W4OwtHGzXEbmHdzaoDwNmVcWjS/mqbDw==", "license": "MIT", "dependencies": { - "@expo/config": "~11.0.7", - "@expo/config-plugins": "~10.0.2", - "@expo/config-types": "^53.0.3", - "@expo/image-utils": "^0.7.4", - "@expo/json-file": "^9.1.4", - "@react-native/normalize-colors": "0.79.2", + "@expo/config": "~11.0.13", + "@expo/config-plugins": "~10.1.2", + "@expo/config-types": "^53.0.5", + "@expo/image-utils": "^0.7.6", + "@expo/json-file": "^9.1.5", + "@react-native/normalize-colors": "0.79.5", "debug": "^4.3.1", "resolve-from": "^5.0.0", "semver": "^7.6.0", @@ -5088,11 +5426,15 @@ } }, "node_modules/@expo/prebuild-config/node_modules/@react-native/normalize-colors": { - "version": "0.79.2", + "version": "0.79.5", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.79.5.tgz", + "integrity": "sha512-nGXMNMclZgzLUxijQQ38Dm3IAEhgxuySAWQHnljFtfB0JdaMwpe0Ox9H7Tp2OgrEA+EMEv+Od9ElKlHwGKmmvQ==", "license": "MIT" }, "node_modules/@expo/prebuild-config/node_modules/semver": { - "version": "7.7.1", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -5101,8 +5443,16 @@ "node": ">=10" } }, + "node_modules/@expo/schema-utils": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@expo/schema-utils/-/schema-utils-0.1.0.tgz", + "integrity": "sha512-Me2avOfbcVT/O5iRmPKLCCSvbCfVfxIstGMlzVJOffplaZX1+ut8D18siR1wx5fkLMTWKs14ozEz11cGUY7hcw==", + "license": "MIT" + }, "node_modules/@expo/sdk-runtime-versions": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz", + "integrity": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==", "license": "MIT" }, "node_modules/@expo/spawn-async": { @@ -5117,6 +5467,8 @@ }, "node_modules/@expo/sudo-prompt": { "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==", "license": "MIT" }, "node_modules/@expo/vector-icons": { @@ -5125,10 +5477,14 @@ }, "node_modules/@expo/ws-tunnel": { "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@expo/ws-tunnel/-/ws-tunnel-1.0.6.tgz", + "integrity": "sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==", "license": "MIT" }, "node_modules/@expo/xcpretty": { "version": "4.3.2", + "resolved": "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.3.2.tgz", + "integrity": "sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==", "license": "BSD-3-Clause", "dependencies": { "@babel/code-frame": "7.10.4", @@ -5142,6 +5498,8 @@ }, "node_modules/@expo/xcpretty/node_modules/@babel/code-frame": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", "license": "MIT", "dependencies": { "@babel/highlight": "^7.10.4" @@ -5149,6 +5507,8 @@ }, "node_modules/@expo/xcpretty/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -5162,10 +5522,14 @@ }, "node_modules/@expo/xcpretty/node_modules/argparse": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "license": "Python-2.0" }, "node_modules/@expo/xcpretty/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -5180,6 +5544,8 @@ }, "node_modules/@expo/xcpretty/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -5190,10 +5556,14 @@ }, "node_modules/@expo/xcpretty/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, "node_modules/@expo/xcpretty/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" @@ -5201,6 +5571,8 @@ }, "node_modules/@expo/xcpretty/node_modules/js-yaml": { "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "license": "MIT", "dependencies": { "argparse": "^2.0.1" @@ -5211,6 +5583,8 @@ }, "node_modules/@expo/xcpretty/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -9744,6 +10118,7 @@ }, "node_modules/@react-native/babel-plugin-codegen": { "version": "0.79.2", + "dev": true, "license": "MIT", "dependencies": { "@babel/traverse": "^7.25.3", @@ -9755,6 +10130,7 @@ }, "node_modules/@react-native/babel-plugin-codegen/node_modules/@babel/traverse": { "version": "7.27.1", + "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", @@ -9771,6 +10147,7 @@ }, "node_modules/@react-native/babel-preset": { "version": "0.79.2", + "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.25.2", @@ -14574,18 +14951,22 @@ "license": "ISC" }, "node_modules/@urql/core": { - "version": "5.1.1", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@urql/core/-/core-5.2.0.tgz", + "integrity": "sha512-/n0ieD0mvvDnVAXEQgX/7qJiVcvYvNkOHeBvkwtylfjydar123caCXcl58PXFY11oU1oquJocVXHxLAbtv4x1A==", "license": "MIT", "dependencies": { - "@0no-co/graphql.web": "^1.0.5", + "@0no-co/graphql.web": "^1.0.13", "wonka": "^6.3.2" } }, "node_modules/@urql/exchange-retry": { - "version": "1.3.1", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-1.3.2.tgz", + "integrity": "sha512-TQMCz2pFJMfpNxmSfX1VSfTjwUIFx/mL+p1bnfM1xjjdla7Z+KnGMW/EhFbpckp3LyWAH4PgOsMwOMnIN+MBFg==", "license": "MIT", "dependencies": { - "@urql/core": "^5.1.1", + "@urql/core": "^5.1.2", "wonka": "^6.3.2" }, "peerDependencies": { @@ -14859,6 +15240,15 @@ "react": "^16 || ^17 || ^18" } }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.11", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.11.tgz", + "integrity": "sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "license": "BSD-3-Clause" @@ -16172,7 +16562,9 @@ } }, "node_modules/babel-preset-expo": { - "version": "13.1.11", + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-13.2.4.tgz", + "integrity": "sha512-3IKORo3KR+4qtLdCkZNDj8KeA43oBn7RRQejFGWfiZgu/NeaRUSri8YwYjZqybm7hn3nmMv9OLahlvXBX23o5Q==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.25.9", @@ -16189,7 +16581,7 @@ "@babel/plugin-transform-runtime": "^7.24.7", "@babel/preset-react": "^7.22.15", "@babel/preset-typescript": "^7.23.0", - "@react-native/babel-preset": "0.79.2", + "@react-native/babel-preset": "0.79.6", "babel-plugin-react-native-web": "~0.19.13", "babel-plugin-syntax-hermes-parser": "^0.25.1", "babel-plugin-transform-flow-enums": "^0.0.2", @@ -16206,10 +16598,144 @@ } } }, + "node_modules/babel-preset-expo/node_modules/@babel/traverse": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.3.tgz", + "integrity": "sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.3", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.3", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.2", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/babel-preset-expo/node_modules/@react-native/babel-plugin-codegen": { + "version": "0.79.6", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.79.6.tgz", + "integrity": "sha512-CS5OrgcMPixOyUJ/Sk/HSsKsKgyKT5P7y3CojimOQzWqRZBmoQfxdST4ugj7n1H+ebM2IKqbgovApFbqXsoX0g==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.3", + "@react-native/codegen": "0.79.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/babel-preset-expo/node_modules/@react-native/babel-preset": { + "version": "0.79.6", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.79.6.tgz", + "integrity": "sha512-H+FRO+r2Ql6b5IwfE0E7D52JhkxjeGSBSUpCXAI5zQ60zSBJ54Hwh2bBJOohXWl4J+C7gKYSAd2JHMUETu+c/A==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.2", + "@babel/plugin-proposal-export-default-from": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-default-from": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.4", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.25.4", + "@babel/plugin-transform-classes": "^7.25.4", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-flow-strip-types": "^7.25.2", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.25.2", + "@babel/plugin-transform-react-jsx-self": "^7.24.7", + "@babel/plugin-transform-react-jsx-source": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-runtime": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.25.2", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/template": "^7.25.0", + "@react-native/babel-plugin-codegen": "0.79.6", + "babel-plugin-syntax-hermes-parser": "0.25.1", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/babel-preset-expo/node_modules/@react-native/codegen": { + "version": "0.79.6", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.79.6.tgz", + "integrity": "sha512-iRBX8Lgbqypwnfba7s6opeUwVyaR23mowh9ILw7EcT2oLz3RqMmjJdrbVpWhGSMGq2qkPfqAH7bhO8C7O+xfjQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.25.2", + "@babel/parser": "^7.25.3", + "glob": "^7.1.1", + "hermes-parser": "0.25.1", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "yargs": "^17.6.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, "node_modules/babel-preset-expo/node_modules/babel-plugin-react-native-web": { "version": "0.19.13", + "resolved": "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.13.tgz", + "integrity": "sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==", "license": "MIT" }, + "node_modules/babel-preset-expo/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/babel-preset-jest": { "version": "29.6.3", "license": "MIT", @@ -16321,6 +16847,8 @@ }, "node_modules/big-integer": { "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", "license": "Unlicense", "engines": { "node": ">=0.6" @@ -16473,6 +17001,8 @@ }, "node_modules/bplist-parser": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", + "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", "license": "MIT", "dependencies": { "big-integer": "1.6.x" @@ -18177,6 +18707,8 @@ }, "node_modules/crypto-random-string": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", "license": "MIT", "engines": { "node": ">=8" @@ -19542,6 +20074,8 @@ }, "node_modules/env-editor": { "version": "0.4.2", + "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz", + "integrity": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==", "license": "MIT", "engines": { "node": ">=8" @@ -21338,6 +21872,8 @@ }, "node_modules/exec-async": { "version": "2.2.0", + "resolved": "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz", + "integrity": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==", "license": "MIT" }, "node_modules/execa": { @@ -21448,24 +21984,26 @@ } }, "node_modules/expo": { - "version": "53.0.7", + "version": "53.0.22", + "resolved": "https://registry.npmjs.org/expo/-/expo-53.0.22.tgz", + "integrity": "sha512-sJ2I4W/e5iiM4u/wYCe3qmW4D7WPCRqByPDD0hJcdYNdjc9HFFFdO4OAudZVyC/MmtoWZEIH5kTJP1cw9FjzYA==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.20.0", - "@expo/cli": "0.24.11", - "@expo/config": "~11.0.8", - "@expo/config-plugins": "~10.0.2", - "@expo/fingerprint": "0.12.4", - "@expo/metro-config": "0.20.13", + "@expo/cli": "0.24.21", + "@expo/config": "~11.0.13", + "@expo/config-plugins": "~10.1.2", + "@expo/fingerprint": "0.13.4", + "@expo/metro-config": "0.20.17", "@expo/vector-icons": "^14.0.0", - "babel-preset-expo": "~13.1.11", - "expo-asset": "~11.1.5", - "expo-constants": "~17.1.5", - "expo-file-system": "~18.1.9", - "expo-font": "~13.3.1", + "babel-preset-expo": "~13.2.4", + "expo-asset": "~11.1.7", + "expo-constants": "~17.1.7", + "expo-file-system": "~18.1.11", + "expo-font": "~13.3.2", "expo-keep-awake": "~14.1.4", - "expo-modules-autolinking": "2.1.9", - "expo-modules-core": "2.3.12", + "expo-modules-autolinking": "2.1.14", + "expo-modules-core": "2.5.0", "react-native-edge-to-edge": "1.6.0", "whatwg-url-without-unicode": "8.0.0-3" }, @@ -21494,11 +22032,13 @@ } }, "node_modules/expo-asset": { - "version": "11.1.5", + "version": "11.1.7", + "resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-11.1.7.tgz", + "integrity": "sha512-b5P8GpjUh08fRCf6m5XPVAh7ra42cQrHBIMgH2UXP+xsj4Wufl6pLy6jRF5w6U7DranUMbsXm8TOyq4EHy7ADg==", "license": "MIT", "dependencies": { - "@expo/image-utils": "^0.7.4", - "expo-constants": "~17.1.5" + "@expo/image-utils": "^0.7.6", + "expo-constants": "~17.1.7" }, "peerDependencies": { "expo": "*", @@ -21522,11 +22062,13 @@ } }, "node_modules/expo-constants": { - "version": "17.1.5", + "version": "17.1.7", + "resolved": "https://registry.npmjs.org/expo-constants/-/expo-constants-17.1.7.tgz", + "integrity": "sha512-byBjGsJ6T6FrLlhOBxw4EaiMXrZEn/MlUYIj/JAd+FS7ll5X/S4qVRbIimSJtdW47hXMq0zxPfJX6njtA56hHA==", "license": "MIT", "dependencies": { - "@expo/config": "~11.0.7", - "@expo/env": "~1.0.5" + "@expo/config": "~11.0.12", + "@expo/env": "~1.0.7" }, "peerDependencies": { "expo": "*", @@ -21534,7 +22076,9 @@ } }, "node_modules/expo-file-system": { - "version": "18.1.9", + "version": "18.1.11", + "resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-18.1.11.tgz", + "integrity": "sha512-HJw/m0nVOKeqeRjPjGdvm+zBi5/NxcdPf8M8P3G2JFvH5Z8vBWqVDic2O58jnT1OFEy0XXzoH9UqFu7cHg9DTQ==", "license": "MIT", "peerDependencies": { "expo": "*", @@ -21542,7 +22086,9 @@ } }, "node_modules/expo-font": { - "version": "13.3.1", + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/expo-font/-/expo-font-13.3.2.tgz", + "integrity": "sha512-wUlMdpqURmQ/CNKK/+BIHkDA5nGjMqNlYmW0pJFXY/KE/OG80Qcavdu2sHsL4efAIiNGvYdBS10WztuQYU4X0A==", "license": "MIT", "dependencies": { "fontfaceobserver": "^2.1.0" @@ -21595,7 +22141,9 @@ } }, "node_modules/expo-modules-autolinking": { - "version": "2.1.9", + "version": "2.1.14", + "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-2.1.14.tgz", + "integrity": "sha512-nT5ERXwc+0ZT/pozDoJjYZyUQu5RnXMk9jDGm5lg+PiKvsrCTSA/2/eftJGMxLkTjVI2MXp5WjSz3JRjbA7UXA==", "license": "MIT", "dependencies": { "@expo/spawn-async": "^1.7.2", @@ -21612,6 +22160,8 @@ }, "node_modules/expo-modules-autolinking/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -21625,6 +22175,8 @@ }, "node_modules/expo-modules-autolinking/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -21639,6 +22191,8 @@ }, "node_modules/expo-modules-autolinking/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -21649,10 +22203,14 @@ }, "node_modules/expo-modules-autolinking/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, "node_modules/expo-modules-autolinking/node_modules/commander": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "license": "MIT", "engines": { "node": ">= 10" @@ -21660,6 +22218,8 @@ }, "node_modules/expo-modules-autolinking/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" @@ -21667,6 +22227,8 @@ }, "node_modules/expo-modules-autolinking/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -21676,14 +22238,18 @@ } }, "node_modules/expo-modules-core": { - "version": "2.3.12", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-2.5.0.tgz", + "integrity": "sha512-aIbQxZE2vdCKsolQUl6Q9Farlf8tjh/ROR4hfN1qT7QBGPl1XrJGnaOKkcgYaGrlzCPg/7IBe0Np67GzKMZKKQ==", "license": "MIT", "dependencies": { "invariant": "^2.2.4" } }, "node_modules/expo/node_modules/@expo/fingerprint": { - "version": "0.12.4", + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/@expo/fingerprint/-/fingerprint-0.13.4.tgz", + "integrity": "sha512-MYfPYBTMfrrNr07DALuLhG6EaLVNVrY/PXjEzsjWdWE4ZFn0yqI0IdHNkJG7t1gePT8iztHc7qnsx+oo/rDo6w==", "license": "MIT", "dependencies": { "@expo/spawn-async": "^1.7.2", @@ -21691,7 +22257,9 @@ "chalk": "^4.1.2", "debug": "^4.3.4", "find-up": "^5.0.0", - "getenv": "^1.0.0", + "getenv": "^2.0.0", + "glob": "^10.4.2", + "ignore": "^5.3.1", "minimatch": "^9.0.0", "p-limit": "^3.1.0", "resolve-from": "^5.0.0", @@ -21703,6 +22271,8 @@ }, "node_modules/expo/node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -21716,10 +22286,14 @@ }, "node_modules/expo/node_modules/arg": { "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", "license": "MIT" }, "node_modules/expo/node_modules/brace-expansion": { - "version": "2.0.1", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" @@ -21727,6 +22301,8 @@ }, "node_modules/expo/node_modules/chalk": { "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", @@ -21741,6 +22317,8 @@ }, "node_modules/expo/node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -21751,10 +22329,23 @@ }, "node_modules/expo/node_modules/color-name": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "license": "MIT" }, + "node_modules/expo/node_modules/getenv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-2.0.0.tgz", + "integrity": "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/expo/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" @@ -21762,6 +22353,8 @@ }, "node_modules/expo/node_modules/minimatch": { "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -21774,7 +22367,9 @@ } }, "node_modules/expo/node_modules/semver": { - "version": "7.7.1", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -21785,6 +22380,8 @@ }, "node_modules/expo/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -22648,6 +23245,8 @@ }, "node_modules/freeport-async": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz", + "integrity": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==", "license": "MIT", "engines": { "node": ">=8" @@ -22929,6 +23528,7 @@ }, "node_modules/getenv": { "version": "1.0.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -23824,7 +24424,6 @@ }, "node_modules/ignore": { "version": "5.3.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 4" @@ -26990,6 +27589,8 @@ }, "node_modules/jimp-compact": { "version": "0.16.1", + "resolved": "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz", + "integrity": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==", "license": "MIT" }, "node_modules/jiti": { @@ -27348,7 +27949,9 @@ } }, "node_modules/lan-network": { - "version": "0.1.5", + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/lan-network/-/lan-network-0.1.7.tgz", + "integrity": "sha512-mnIlAEMu4OyEvUNdzco9xpuB9YVcPkQec+QsgycBCtPZvEqWPCDPfbAE4OJMdBBWpZWtpCn1xw9jJYlwjWI5zQ==", "license": "MIT", "bin": { "lan-network": "dist/lan-network-cli.js" @@ -27440,6 +28043,8 @@ }, "node_modules/lightningcss": { "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.27.0.tgz", + "integrity": "sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==", "license": "MPL-2.0", "dependencies": { "detect-libc": "^1.0.3" @@ -27466,6 +28071,8 @@ }, "node_modules/lightningcss-darwin-arm64": { "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.27.0.tgz", + "integrity": "sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==", "cpu": [ "arm64" ], @@ -27482,8 +28089,190 @@ "url": "https://opencollective.com/parcel" } }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.27.0.tgz", + "integrity": "sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.27.0.tgz", + "integrity": "sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.27.0.tgz", + "integrity": "sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==", + "cpu": [ + "arm" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.27.0.tgz", + "integrity": "sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.27.0.tgz", + "integrity": "sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.27.0.tgz", + "integrity": "sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.27.0.tgz", + "integrity": "sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.27.0.tgz", + "integrity": "sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.27.0.tgz", + "integrity": "sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==", + "cpu": [ + "x64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, "node_modules/lightningcss/node_modules/detect-libc": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", "license": "Apache-2.0", "bin": { "detect-libc": "bin/detect-libc.js" @@ -28979,6 +29768,8 @@ }, "node_modules/nested-error-stacks": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz", + "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==", "license": "MIT" }, "node_modules/nitro-codegen": { @@ -29260,6 +30051,8 @@ }, "node_modules/npm-package-arg": { "version": "11.0.3", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.3.tgz", + "integrity": "sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==", "license": "ISC", "dependencies": { "hosted-git-info": "^7.0.0", @@ -29273,6 +30066,8 @@ }, "node_modules/npm-package-arg/node_modules/hosted-git-info": { "version": "7.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", + "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", "license": "ISC", "dependencies": { "lru-cache": "^10.0.1" @@ -29283,6 +30078,8 @@ }, "node_modules/npm-package-arg/node_modules/lru-cache": { "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "license": "ISC" }, "node_modules/npm-run-path": { @@ -29808,6 +30605,8 @@ }, "node_modules/parse-png": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz", + "integrity": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==", "license": "MIT", "dependencies": { "pngjs": "^3.3.0" @@ -29818,6 +30617,8 @@ }, "node_modules/parse-png/node_modules/pngjs": { "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", "license": "MIT", "engines": { "node": ">=4.0.0" @@ -30355,13 +31156,6 @@ "node": ">=10.4.0" } }, - "node_modules/plist/node_modules/@xmldom/xmldom": { - "version": "0.8.10", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/plist/node_modules/xmlbuilder": { "version": "15.1.1", "license": "MIT", @@ -30565,6 +31359,8 @@ }, "node_modules/pretty-bytes": { "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "license": "MIT", "engines": { "node": ">=6" @@ -30606,6 +31402,8 @@ }, "node_modules/proc-log": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", + "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==", "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -30785,6 +31583,8 @@ }, "node_modules/qrcode-terminal": { "version": "0.11.0", + "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz", + "integrity": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==", "bin": { "qrcode-terminal": "bin/qrcode-terminal.js" } @@ -32686,6 +33486,8 @@ }, "node_modules/requireg": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz", + "integrity": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==", "dependencies": { "nested-error-stacks": "~2.0.1", "rc": "~1.2.7", @@ -32697,6 +33499,8 @@ }, "node_modules/requireg/node_modules/resolve": { "version": "1.7.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", + "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", "license": "MIT", "dependencies": { "path-parse": "^1.0.5" @@ -33496,6 +34300,8 @@ }, "node_modules/simple-plist": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz", + "integrity": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==", "license": "MIT", "dependencies": { "bplist-creator": "0.1.0", @@ -33505,6 +34311,8 @@ }, "node_modules/simple-plist/node_modules/bplist-parser": { "version": "0.3.1", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz", + "integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==", "license": "MIT", "dependencies": { "big-integer": "1.6.x" @@ -34179,6 +34987,8 @@ }, "node_modules/structured-headers": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz", + "integrity": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==", "license": "MIT" }, "node_modules/style-loader": { @@ -34280,6 +35090,8 @@ }, "node_modules/supports-hyperlinks": { "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0", @@ -34291,6 +35103,8 @@ }, "node_modules/supports-hyperlinks/node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" @@ -34298,6 +35112,8 @@ }, "node_modules/supports-hyperlinks/node_modules/supports-color": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -34461,6 +35277,8 @@ }, "node_modules/temp-dir": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", "license": "MIT", "engines": { "node": ">=8" @@ -34520,6 +35338,8 @@ }, "node_modules/terminal-link": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", @@ -35333,7 +36153,9 @@ "license": "MIT" }, "node_modules/undici": { - "version": "6.21.2", + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.3.tgz", + "integrity": "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==", "license": "MIT", "engines": { "node": ">=18.17" @@ -35418,6 +36240,8 @@ }, "node_modules/unique-string": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", "license": "MIT", "dependencies": { "crypto-random-string": "^2.0.0" @@ -35613,6 +36437,8 @@ }, "node_modules/validate-npm-package-name": { "version": "5.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -36335,6 +37161,8 @@ }, "node_modules/wonka": { "version": "6.3.5", + "resolved": "https://registry.npmjs.org/wonka/-/wonka-6.3.5.tgz", + "integrity": "sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw==", "license": "MIT" }, "node_modules/word-wrap": { @@ -36472,6 +37300,8 @@ }, "node_modules/xcode": { "version": "3.0.1", + "resolved": "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz", + "integrity": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==", "license": "Apache-2.0", "dependencies": { "simple-plist": "^1.1.0", @@ -36483,6 +37313,8 @@ }, "node_modules/xcode/node_modules/uuid": { "version": "7.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==", "license": "MIT", "bin": { "uuid": "dist/bin/uuid" @@ -36503,6 +37335,8 @@ }, "node_modules/xml2js": { "version": "0.6.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz", + "integrity": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==", "license": "MIT", "dependencies": { "sax": ">=0.6.0", @@ -36514,6 +37348,8 @@ }, "node_modules/xml2js/node_modules/xmlbuilder": { "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", "license": "MIT", "engines": { "node": ">=4.0" diff --git a/package.json b/package.json index b100b42b41481..25676f877be46 100644 --- a/package.json +++ b/package.json @@ -130,11 +130,11 @@ "dom-serializer": "^0.2.2", "domhandler": "^4.3.0", "expensify-common": "2.0.156", - "expo": "53.0.7", + "expo": "53.0.22", "expo-asset": "^11.1.2", "expo-av": "^15.1.5", "expo-font": "^13.0.4", - "expo-image": "^2.4.0", + "expo-image": "~2.4.0", "expo-image-manipulator": "^13.1.5", "fast-equals": "^5.2.2", "focus-trap-react": "^11.0.3", @@ -385,7 +385,6 @@ "send": "0.19.0", "regexpu-core": "5.3.2", "react": "19.0.0", - "expo": "53.0.7", "react-dom": "19.0.0" }, "expo": { diff --git a/patches/expo-asset+11.1.5+001+initial.patch b/patches/expo-asset+11.1.5+001+initial.patch deleted file mode 100644 index c9505e69e230a..0000000000000 --- a/patches/expo-asset+11.1.5+001+initial.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/node_modules/expo-asset/build/PlatformUtils.web.js b/node_modules/expo-asset/build/PlatformUtils.web.js -index c013cd0..03662e1 100644 ---- a/node_modules/expo-asset/build/PlatformUtils.web.js -+++ b/node_modules/expo-asset/build/PlatformUtils.web.js -@@ -1,4 +1,19 @@ --export const IS_ENV_WITH_LOCAL_ASSETS = false; -+import {requireOptionalNativeModule} from 'expo-modules-core'; -+import Constants, {AppOwnership} from 'expo-constants'; -+ -+const ExpoUpdates = requireOptionalNativeModule('ExpoUpdates'); -+const isRunningInExpoGo = Constants.appOwnership === AppOwnership.Expo; -+// expo-updates (and Expo Go expo-updates override) manages assets from updates and exposes -+// the ExpoUpdates.localAssets constant containing information about the assets. -+const expoUpdatesIsInstalledAndEnabled = !!ExpoUpdates?.isEnabled; -+const expoUpdatesIsUsingEmbeddedAssets = ExpoUpdates?.isUsingEmbeddedAssets; -+// if expo-updates is installed but we're running directly from the embedded bundle, we don't want -+// to override the AssetSourceResolver. -+const shouldUseUpdatesAssetResolution = expoUpdatesIsInstalledAndEnabled && !expoUpdatesIsUsingEmbeddedAssets; -+// Expo Go always uses the updates module for asset resolution (local assets) since it -+// overrides the expo-updates module. -+export const IS_ENV_WITH_LOCAL_ASSETS = isRunningInExpoGo || shouldUseUpdatesAssetResolution; -+ - export function getLocalAssets() { - return {}; - } diff --git a/patches/expo-modules-core/details.md b/patches/expo-modules-core/details.md deleted file mode 100644 index c5dbaf47dc189..0000000000000 --- a/patches/expo-modules-core/details.md +++ /dev/null @@ -1,17 +0,0 @@ - - -# `expo-modules-core` patches - -### [expo-modules-core+2.3.12+001+disableViewRecycling.patch](expo-modules-core+2.3.12+001+disableViewRecycling.patch) -- Reason: Disable view recycling to fix rendering issues -- Upstream PR/issue: N/A -- E/App issue: N/A -- PR Introducing Patch: N/A -- PR Updating Patch: N/A - -### [expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch](expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch) -- Reason: Enable support for 16kb memory page size on Android -- Upstream PR/issue: N/A -- E/App issue: N/A -- PR Introducing Patch: N/A -- PR Updating Patch: N/A diff --git a/patches/expo-modules-core/expo-modules-core+2.3.12+001+disableViewRecycling.patch b/patches/expo-modules-core/expo-modules-core+2.3.12+001+disableViewRecycling.patch deleted file mode 100644 index f638a14bb0e83..0000000000000 --- a/patches/expo-modules-core/expo-modules-core+2.3.12+001+disableViewRecycling.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/node_modules/expo-modules-core/ios/Fabric/ExpoFabricViewObjC.mm b/node_modules/expo-modules-core/ios/Fabric/ExpoFabricViewObjC.mm -index 2eacddf..346bbb9 100644 ---- a/node_modules/expo-modules-core/ios/Fabric/ExpoFabricViewObjC.mm -+++ b/node_modules/expo-modules-core/ios/Fabric/ExpoFabricViewObjC.mm -@@ -138,6 +138,11 @@ - (void)finalizeUpdates:(RNComponentViewUpdateMask)updateMask - } - } - -++ (BOOL)shouldBeRecycled -+{ -+ return NO; -+} -+ - #pragma mark - Events - - - (void)dispatchEvent:(nonnull NSString *)eventName payload:(nullable id)payload diff --git a/patches/expo-modules-core/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch b/patches/expo-modules-core/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch deleted file mode 100644 index b0f74af097a77..0000000000000 --- a/patches/expo-modules-core/expo-modules-core+2.3.12+002+android-enable-16kb-memory-page-size.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/node_modules/expo-modules-core/android/build.gradle b/node_modules/expo-modules-core/android/build.gradle -index 9914a74..3f9404f 100644 ---- a/node_modules/expo-modules-core/android/build.gradle -+++ b/node_modules/expo-modules-core/android/build.gradle -@@ -89,7 +89,8 @@ android { - "-DREACT_NATIVE_TARGET_VERSION=${expoModuleExtension.reactNativeVersion.minor}", - "-DUSE_HERMES=${USE_HERMES}", - "-DIS_NEW_ARCHITECTURE_ENABLED=${isNewArchitectureEnabled}", -- "-DUNIT_TEST=${isExpoModulesCoreTests}" -+ "-DUNIT_TEST=${isExpoModulesCoreTests}", -+ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" - } - } - } -@@ -134,6 +135,10 @@ android { - "**/libyoga.so", - ] - -+ jniLibs { -+ useLegacyPackaging true -+ } -+ - // Required or mockk will crash - resources { - excludes += [ \ No newline at end of file From eee574beba66fe7dd9005f65b3688dc07b8a4160 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Thu, 28 Aug 2025 16:34:26 +0200 Subject: [PATCH 48/50] fix(63871): update dependencies --- ios/Podfile.lock | 24 ++++++++-------- modules/ExpensifyNitroUtils/babel.config.js | 2 +- package-lock.json | 32 ++++++--------------- package.json | 4 +-- src/libs/SidebarUtils.ts | 14 ++++----- 5 files changed, 31 insertions(+), 45 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 26bda930af949..328a17a771033 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -32,7 +32,7 @@ PODS: - EXAV (15.1.5): - ExpoModulesCore - ReactCommon/turbomodule/core - - EXConstants (17.1.5): + - EXConstants (17.1.7): - ExpoModulesCore - EXImageLoader (5.1.0): - ExpoModulesCore @@ -86,7 +86,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - Expo (53.0.7): + - Expo (53.0.22): - DoubleConversion - ExpoModulesCore - glog @@ -113,9 +113,9 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - ExpoAsset (11.1.5): + - ExpoAsset (11.1.7): - ExpoModulesCore - - ExpoFont (13.3.1): + - ExpoFont (13.3.2): - ExpoModulesCore - ExpoImage (2.4.0): - ExpoModulesCore @@ -128,7 +128,7 @@ PODS: - EXImageLoader - ExpoModulesCore - SDWebImageWebPCoder - - ExpoModulesCore (2.3.12): + - ExpoModulesCore (2.5.0): - DoubleConversion - glog - hermes-engine @@ -1839,7 +1839,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - react-native-blob-util (0.19.4): + - react-native-blob-util (0.22.2): - DoubleConversion - glog - hermes-engine @@ -3749,16 +3749,16 @@ SPEC CHECKSUMS: boost: 659a89341ea4ab3df8259733813b52f26d8be9a5 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb EXAV: 13d43af15268a3f448a6b994e91574c939f065e6 - EXConstants: 26f334022fc0b454b7ecdc7c12d36ffa68c7c397 + EXConstants: 9d62a46a36eae6d28cb978efcbc68aef354d1704 EXImageLoader: ab4fcf9240cf3636a83c00e3fc5229d692899428 expensify-react-native-background-task: 33f3c3977ee1bcfb75b5466735d467cacda86746 ExpensifyNitroUtils: e0db1bd03c2ee179bdca45c57bf0497e626b18cd - Expo: a02b1eb4c08689dc866eabf48e2eefee712ded6b - ExpoAsset: 3ea3275cca6a7793b3d36fbf1075c590f803fbcb - ExpoFont: 312c73403bbd4f98e1d6a5330641a56292583cd2 + Expo: 547153e016cb57b06d63cd5cf11daf6efc88644e + ExpoAsset: 7bdbbacf4e6752ae6e3cf70555cee076f6229e6e + ExpoFont: 091a47eeaa1b30b0b760aa1d0a2e7814e8bf6fe6 ExpoImage: 04ffc79f9a0391573b77efbc549d59c655caa5a8 ExpoImageManipulator: 7096d6bf874c0a0a649f60733fef8a99c4ad0fe2 - ExpoModulesCore: 5411340438617e068df45f70127ff34640f3f337 + ExpoModulesCore: fdcc7469efc73d085a42bbe73dfb0fed21e7e836 fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6 FBLazyVector: 84b955f7b4da8b895faf5946f73748267347c975 Firebase: 3435bc66b4d494c2f22c79fd3aae4c1db6662327 @@ -3840,7 +3840,7 @@ SPEC CHECKSUMS: react-native-advanced-input-mask: 34f8a63cda1e7225ff0093b300181508a910ef41 react-native-airship: ff2599900d29e0e64ff2b2dd9f897c0c220a9163 react-native-app-logs: 45d7515e7a92e61be56dffb10f315b578dedee01 - react-native-blob-util: a013bd1bb12de304a726c2308cc0e219f34ab66c + react-native-blob-util: 68f288ed8fd64a191a4d83ffa5a1dd375dc786d2 react-native-cameraroll: d98f8a64b53620754864c33a034e054ca4a3b360 react-native-config: ab9f9cc16883aed5355ca43478fe39e6aec5ebb9 react-native-document-picker: 06ad77eb1650e628def114ff74f9f767f1888edd diff --git a/modules/ExpensifyNitroUtils/babel.config.js b/modules/ExpensifyNitroUtils/babel.config.js index cafccd5f22030..80ce241fccb3a 100644 --- a/modules/ExpensifyNitroUtils/babel.config.js +++ b/modules/ExpensifyNitroUtils/babel.config.js @@ -1,3 +1,3 @@ module.exports = { - presets: ['module:@react-native/babel-preset'], + presets: ['module:metro-react-native-babel-preset'], }; diff --git a/package-lock.json b/package-lock.json index 4384f08734960..04e43bde15430 100644 --- a/package-lock.json +++ b/package-lock.json @@ -91,7 +91,7 @@ "react-native-advanced-input-mask": "1.3.1", "react-native-android-location-enabler": "^2.0.1", "react-native-app-logs": "0.3.1", - "react-native-blob-util": "0.19.4", + "react-native-blob-util": "^0.22.2", "react-native-collapsible": "^1.6.2", "react-native-config": "1.5.3", "react-native-device-info": "10.3.1", @@ -100,7 +100,7 @@ "react-native-gesture-handler": "2.25.0", "react-native-google-places-autocomplete": "2.5.6", "react-native-haptic-feedback": "^2.3.3", - "react-native-image-picker": "^7.1.2", + "react-native-image-picker": "^8.2.1", "react-native-image-size": "git+https://github.com/Expensify/react-native-image-size#cb392140db4953a283590d7cf93b4d0461baa2a9", "react-native-key-command": "1.0.14", "react-native-keyboard-controller": "1.18.1", @@ -32089,35 +32089,19 @@ } }, "node_modules/react-native-blob-util": { - "version": "0.19.4", + "version": "0.22.2", + "resolved": "https://registry.npmjs.org/react-native-blob-util/-/react-native-blob-util-0.22.2.tgz", + "integrity": "sha512-Czx01QMg7aLsm/4F/7+eqoRAi1q/qjLY2Kao16g+n2SRnTH1+qkD8Qhx2q9okB+VNQvZKB1LbiXhktzYQV52xQ==", "license": "MIT", "dependencies": { "base-64": "0.1.0", - "glob": "^7.2.3" + "glob": "^10.3.10" }, "peerDependencies": { "react": "*", "react-native": "*" } }, - "node_modules/react-native-blob-util/node_modules/glob": { - "version": "7.2.3", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/react-native-clean-project": { "version": "4.0.1", "dev": true, @@ -32241,7 +32225,9 @@ } }, "node_modules/react-native-image-picker": { - "version": "7.1.2", + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/react-native-image-picker/-/react-native-image-picker-8.2.1.tgz", + "integrity": "sha512-FBeGYJGFDjMdGCcyubDJgBAPCQ4L1D3hwLXyUU91jY9ahOZMTbluceVvRmrEKqnDPFJ0gF1NVhJ0nr1nROFLdg==", "license": "MIT", "peerDependencies": { "react": "*", diff --git a/package.json b/package.json index 25676f877be46..ff7457c8fedb3 100644 --- a/package.json +++ b/package.json @@ -161,7 +161,7 @@ "react-native-advanced-input-mask": "1.3.1", "react-native-android-location-enabler": "^2.0.1", "react-native-app-logs": "0.3.1", - "react-native-blob-util": "0.19.4", + "react-native-blob-util": "^0.22.2", "react-native-collapsible": "^1.6.2", "react-native-config": "1.5.3", "react-native-device-info": "10.3.1", @@ -170,7 +170,7 @@ "react-native-gesture-handler": "2.25.0", "react-native-google-places-autocomplete": "2.5.6", "react-native-haptic-feedback": "^2.3.3", - "react-native-image-picker": "^7.1.2", + "react-native-image-picker": "^8.2.1", "react-native-image-size": "git+https://github.com/Expensify/react-native-image-size#cb392140db4953a283590d7cf93b4d0461baa2a9", "react-native-key-command": "1.0.14", "react-native-keyboard-controller": "1.18.1", diff --git a/src/libs/SidebarUtils.ts b/src/libs/SidebarUtils.ts index f2e347a86e36f..9ef84aa57b731 100644 --- a/src/libs/SidebarUtils.ts +++ b/src/libs/SidebarUtils.ts @@ -475,20 +475,20 @@ function sortCategorizedReports( }; // Sort each group of reports accordingly - const sortedPinnedAndGBRReports = pinnedAndGBRReports.toSorted(compareDisplayNames); - const sortedErrorReports = errorReports.toSorted(compareDisplayNames); - const sortedDraftReports = draftReports.toSorted(compareDisplayNames); + const sortedPinnedAndGBRReports = [...pinnedAndGBRReports].sort(compareDisplayNames); + const sortedErrorReports = [...errorReports].sort(compareDisplayNames); + const sortedDraftReports = [...draftReports].sort(compareDisplayNames); let sortedNonArchivedReports: MiniReport[]; let sortedArchivedReports: MiniReport[]; if (isInDefaultMode) { - sortedNonArchivedReports = nonArchivedReports.toSorted(compareNonArchivedDefault); + sortedNonArchivedReports = [...nonArchivedReports].sort(compareNonArchivedDefault); // For archived reports ensure that most recent reports are at the top by reversing the order - sortedArchivedReports = archivedReports.toSorted(compareDatesDesc); + sortedArchivedReports = [...archivedReports].sort(compareDatesDesc); } else { - sortedNonArchivedReports = nonArchivedReports.toSorted(compareDisplayNames); - sortedArchivedReports = archivedReports.toSorted(compareDisplayNames); + sortedNonArchivedReports = [...nonArchivedReports].sort(compareDisplayNames); + sortedArchivedReports = [...archivedReports].sort(compareDisplayNames); } return { From 0828ab223db7680ad58db6731cfd25a416d3bffc Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Thu, 28 Aug 2025 18:31:02 +0200 Subject: [PATCH 49/50] fix(63871): revert image-picker to 7.1.2 --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 04e43bde15430..43eb078d9e37a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -100,7 +100,7 @@ "react-native-gesture-handler": "2.25.0", "react-native-google-places-autocomplete": "2.5.6", "react-native-haptic-feedback": "^2.3.3", - "react-native-image-picker": "^8.2.1", + "react-native-image-picker": "^7.1.2", "react-native-image-size": "git+https://github.com/Expensify/react-native-image-size#cb392140db4953a283590d7cf93b4d0461baa2a9", "react-native-key-command": "1.0.14", "react-native-keyboard-controller": "1.18.1", @@ -32225,9 +32225,9 @@ } }, "node_modules/react-native-image-picker": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/react-native-image-picker/-/react-native-image-picker-8.2.1.tgz", - "integrity": "sha512-FBeGYJGFDjMdGCcyubDJgBAPCQ4L1D3hwLXyUU91jY9ahOZMTbluceVvRmrEKqnDPFJ0gF1NVhJ0nr1nROFLdg==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/react-native-image-picker/-/react-native-image-picker-7.1.2.tgz", + "integrity": "sha512-b5y5nP60RIPxlAXlptn2QwlIuZWCUDWa/YPUVjgHc0Ih60mRiOg1PSzf0IjHSLeOZShCpirpvSPGnDExIpTRUg==", "license": "MIT", "peerDependencies": { "react": "*", diff --git a/package.json b/package.json index ff7457c8fedb3..1527984a820be 100644 --- a/package.json +++ b/package.json @@ -170,7 +170,7 @@ "react-native-gesture-handler": "2.25.0", "react-native-google-places-autocomplete": "2.5.6", "react-native-haptic-feedback": "^2.3.3", - "react-native-image-picker": "^8.2.1", + "react-native-image-picker": "^7.1.2", "react-native-image-size": "git+https://github.com/Expensify/react-native-image-size#cb392140db4953a283590d7cf93b4d0461baa2a9", "react-native-key-command": "1.0.14", "react-native-keyboard-controller": "1.18.1", From 06ac2e4991bdc3c91cba635f451de481f560b344 Mon Sep 17 00:00:00 2001 From: Alexey Kureev Date: Fri, 29 Aug 2025 16:15:15 +0200 Subject: [PATCH 50/50] fix(63871): use shellUtils for formatting check-android-16kb script --- ...oid-16kb-memory-page-size-compatibility.sh | 41 +++++++++---------- 1 file changed, 19 insertions(+), 22 deletions(-) diff --git a/scripts/check-android-16kb-memory-page-size-compatibility.sh b/scripts/check-android-16kb-memory-page-size-compatibility.sh index 7a64c1f6132dc..92faf3941ccd0 100755 --- a/scripts/check-android-16kb-memory-page-size-compatibility.sh +++ b/scripts/check-android-16kb-memory-page-size-compatibility.sh @@ -5,7 +5,6 @@ progname="${0##*/}" progname="${progname%.sh}" # usage: check_elf_alignment.sh [path to *.so files|path to *.apk] - cleanup_trap() { if [ -n "$tmp" ] && [ -d "$tmp" ]; then rm -rf "$tmp" @@ -13,6 +12,9 @@ cleanup_trap() { exit "${1:-0}" } +# shellcheck disable=SC1090 +source "$(dirname "$0")/shellUtils.sh" + usage() { echo "Host side script to check the ELF alignment of shared libraries." echo "Shared libraries are reported ALIGNED when their ELF regions are" @@ -37,7 +39,7 @@ case "$1" in esac if ! [ -f "$dir" ] && ! [ -d "$dir" ]; then - echo "Invalid file: $dir" >&2 + error "Invalid file: $dir" exit 1 fi @@ -45,20 +47,19 @@ if [[ "$dir" == *.apk ]]; then trap 'cleanup_trap' EXIT echo - echo "Recursively analyzing $dir" + title "Recursively analyzing $dir" echo if zipalign --help 2>&1 | grep -q "\-P "; then - echo "=== APK zip-alignment ===" - # SC2196: use grep -E instead of egrep + title "APK zip-alignment" zipalign -v -c -P 16 4 "$dir" | grep -E 'lib/arm64-v8a|lib/x86_64|Verification' echo "=========================" else - echo "NOTICE: Zip alignment check requires build-tools version 35.0.0-rc3 or higher." - echo " You can install the latest build-tools by running the below command" - echo " and updating your \$PATH:" + info "NOTICE: Zip alignment check requires build-tools version 35.0.0-rc3 or higher." + info " You can install the latest build-tools by running the below command" + info " and updating your \$PATH:" echo - echo " sdkmanager \"build-tools;35.0.0-rc3\"" + info ' sdkmanager "build-tools;35.0.0-rc3"' fi dir_filename=$(basename "$dir") @@ -71,47 +72,43 @@ if [[ "$dir" == *.apex ]]; then trap 'cleanup_trap' EXIT echo - echo "Recursively analyzing $dir" + title "Recursively analyzing $dir" echo dir_filename=$(basename "$dir") tmp=$(mktemp -d -t "${dir_filename%.apex}_out_XXXXX") if ! deapexer extract "$dir" "$tmp"; then - echo "Failed to deapex." + error "Failed to deapex." exit 1 fi dir="$tmp" fi -RED="\e[31m" -GREEN="\e[32m" -ENDCOLOR="\e[0m" - unaligned_libs=() echo -echo "=== ELF alignment ===" +title "ELF alignment" matches="$(find "$dir" -type f)" IFS=$'\n' for match in $matches; do - [[ "$match" == *".apk" ]] && echo "WARNING: doesn't recursively inspect .apk file: $match" - [[ "$match" == *".apex" ]] && echo "WARNING: doesn't recursively inspect .apex file: $match" + [[ "$match" == *".apk" ]] && warn "doesn't recursively inspect .apk file: $match" + [[ "$match" == *".apex" ]] && warn "doesn't recursively inspect .apex file: $match" [[ $(file "$match") == *"ELF"* ]] || continue res="$(objdump -p "$match" | grep LOAD | awk '{ print $NF }' | head -1)" if [[ $res =~ 2\*\*(1[4-9]|[2-9][0-9]|[1-9][0-9]{2,}) ]]; then - echo -e "$match: ${GREEN}ALIGNED${ENDCOLOR} ($res)" + printf "%s: %sALIGNED%s (%s)\n" "$match" "$GREEN" "$RESET" "$res" else - echo -e "$match: ${RED}UNALIGNED${ENDCOLOR} ($res)" + printf "%s: %sUNALIGNED%s (%s)\n" "$match" "$RED" "$RESET" "$res" unaligned_libs+=("$match") fi done if [ "${#unaligned_libs[@]}" -gt 0 ]; then - echo -e "${RED}Found ${#unaligned_libs[@]} unaligned libs (only arm64-v8a/x86_64 libs need to be aligned).${ENDCOLOR}" + printf "%sFound %d unaligned libs (only arm64-v8a/x86_64 libs need to be aligned).%s\n" "$RED" "${#unaligned_libs[@]}" "$RESET" elif [ -n "${dir_filename:-}" ]; then - echo -e "ELF Verification Successful" + success "ELF Verification Successful" fi echo "=====================" \ No newline at end of file