diff --git a/apps/mobile/app/components/header/right-menus.tsx b/apps/mobile/app/components/header/right-menus.tsx index cfbb00bbe..9f33831c4 100644 --- a/apps/mobile/app/components/header/right-menus.tsx +++ b/apps/mobile/app/components/header/right-menus.tsx @@ -71,7 +71,7 @@ export const RightMenus = ({ testID={notesnook.ids.default.addBtn} icon={renderedInRoute === "Trash" ? "delete" : "plus"} iconSize={SIZE.xl} - type="shade" + type="accent" hitSlop={{ top: 10, right: 10, @@ -82,7 +82,7 @@ export const RightMenus = ({ marginLeft: 10, width: 32, height: 32, - borderRadius: 5, + borderRadius: 100, paddingHorizontal: 0, borderWidth: 1, borderColor: colors.primary.accent diff --git a/apps/mobile/app/components/side-menu/index.tsx b/apps/mobile/app/components/side-menu/index.tsx index 2f27eb6da..2c8cce7c6 100644 --- a/apps/mobile/app/components/side-menu/index.tsx +++ b/apps/mobile/app/components/side-menu/index.tsx @@ -155,26 +155,6 @@ export const SideMenu = React.memo( subscriptionType === SUBSCRIPTION_STATUS.BASIC ? ( ) : null} - - {BottomItemsList.slice(DDS.isLargeTablet() ? 0 : 1, 3).map( - (item, index) => ( - - ) - )} {dragging ? ( @@ -206,14 +186,7 @@ export const SideMenu = React.memo( /> ) : ( - - - + )} diff --git a/apps/mobile/app/components/side-menu/user-status.js b/apps/mobile/app/components/side-menu/user-status.js index 6033fceec..d150a99a3 100644 --- a/apps/mobile/app/components/side-menu/user-status.js +++ b/apps/mobile/app/components/side-menu/user-status.js @@ -20,7 +20,13 @@ along with this program. If not, see . import { useThemeColors } from "@notesnook/theme"; import { useNetInfo } from "@react-native-community/netinfo"; import React from "react"; -import { ActivityIndicator, Image, Platform, View } from "react-native"; +import { + ActivityIndicator, + Image, + Platform, + TouchableOpacity, + View +} from "react-native"; import Icon from "react-native-vector-icons/MaterialCommunityIcons"; import useGlobalSafeAreaInsets from "../../hooks/use-global-safe-area-insets"; import useSyncProgress from "../../hooks/use-sync-progress"; @@ -33,6 +39,7 @@ import { SIZE } from "../../utils/size"; import { Pressable } from "../ui/pressable"; import { TimeSince } from "../ui/time-since"; import Paragraph from "../ui/typography/paragraph"; +import Navigation from "../../services/navigation"; export const UserStatus = () => { const { colors } = useThemeColors(); @@ -53,7 +60,8 @@ export const UserStatus = () => { alignSelf: "center", paddingBottom: Platform.OS === "ios" ? insets.bottom / 2 : null, borderTopWidth: 1, - borderTopColor: colors.primary.border + borderTopColor: colors.primary.border, + backgroundColor: colors.primary.background }} > { }} > { - if (user) { - Sync.run(); - } else { - tabBarRef.current?.closeDrawer(); - eSendEvent(eOpenLoginDialog); - } + onPress={() => { + Navigation.navigate("Settings"); + tabBarRef.current.closeDrawer(); }} type="plain" style={{ @@ -78,7 +82,8 @@ export const UserStatus = () => { justifyContent: "flex-start", padding: 12, borderRadius: 0, - alignItems: "center" + alignItems: "center", + gap: 10 }} > {userProfile?.profilePicture ? ( @@ -89,8 +94,7 @@ export const UserStatus = () => { style={{ width: 35, height: 35, - borderRadius: 100, - marginRight: 10 + borderRadius: 100 }} /> ) : null} @@ -102,9 +106,7 @@ export const UserStatus = () => { }} > @@ -113,9 +115,7 @@ export const UserStatus = () => { : lastSyncStatus === SyncStatus.Failed ? "Sync failed, tap to retry" : syncing - ? `Syncing your notes${ - progress ? ` (${progress.current})` : "" - }` + ? `Syncing ${progress ? `(${progress.current})` : ""}` : !userProfile?.fullName ? "Tap to sync" : userProfile.fullName} @@ -162,25 +162,56 @@ export const UserStatus = () => { - {user ? ( - syncing ? ( - - ) : lastSyncStatus === SyncStatus.Failed ? ( - + { + if (user) { + Sync.run(); + } else { + tabBarRef.current?.closeDrawer(); + eSendEvent(eOpenLoginDialog); + } + }} + > + {user ? ( + syncing ? ( + + ) : lastSyncStatus === SyncStatus.Failed ? ( + + ) : ( + + ) ) : ( - ) - ) : null} + )} + diff --git a/apps/mobile/app/navigation/tabs-holder.js b/apps/mobile/app/navigation/tabs-holder.js index 2d7ab3acf..9e8df3b49 100644 --- a/apps/mobile/app/navigation/tabs-holder.js +++ b/apps/mobile/app/navigation/tabs-holder.js @@ -165,9 +165,7 @@ const _TabsHolder = () => { _deviceMode === "smallTablet" ? dimensions.width - valueLimiter(dimensions.width * 0.4, 300, 450) - : dimensions.width > 1100 - ? dimensions.width * 0.55 - : dimensions.width * 0.5, + : dimensions.width * 0.48, zIndex: null, paddingHorizontal: 0 } @@ -258,9 +256,7 @@ const _TabsHolder = () => { position: "relative", width: current === "tablet" - ? size.width > 1100 - ? size.width * 0.55 - : size.width * 0.5 + ? size.width * 0.48 : current === "smallTablet" ? size.width - valueLimiter(size.width * 0.4, 300, 450) : size.width, @@ -372,15 +368,9 @@ const _TabsHolder = () => { editor: dimensions.width - valueLimiter(dimensions.width * 0.4, 300, 450) }, tablet: { - sidebar: - dimensions.width > 1100 - ? dimensions.width * 0.15 - : dimensions.width * 0.2, + sidebar: dimensions.width * 0.22, list: dimensions.width * 0.3, - editor: - dimensions.width > 1100 - ? dimensions.width * 0.55 - : dimensions.width * 0.5 + editor: dimensions.width * 0.48 } }; diff --git a/apps/mobile/app/screens/settings/settings-data.tsx b/apps/mobile/app/screens/settings/settings-data.tsx index 6c6913d83..909940f97 100644 --- a/apps/mobile/app/screens/settings/settings-data.tsx +++ b/apps/mobile/app/screens/settings/settings-data.tsx @@ -456,7 +456,7 @@ export const settingsGroups: SettingSection[] = [ }, { id: "background-sync", - name: "Background sync (Experimental)", + name: "Background sync (experimental)", description: "Periodically wake up the app in background to sync your notes from other devices.", type: "switch", diff --git a/apps/mobile/app/screens/settings/user-section.js b/apps/mobile/app/screens/settings/user-section.js index 6afc1c997..ff3f8cbcf 100644 --- a/apps/mobile/app/screens/settings/user-section.js +++ b/apps/mobile/app/screens/settings/user-section.js @@ -104,7 +104,7 @@ const onChangePicture = () => { const SettingsUserSection = ({ item }) => { const { colors } = useThemeColors(); - const user = useUserStore((state) => state.user); + const [user, premium] = useUserStore((state) => [state.user, state.premium]); const lastSynced = useUserStore((state) => state.lastSynced); const lastSyncStatus = useUserStore((state) => state.lastSyncStatus); const { isInternetReachable } = useNetInfo(); @@ -172,17 +172,20 @@ const SettingsUserSection = ({ item }) => { alignItems: "center" }} > - - {SUBSCRIPTION_STATUS_STRINGS[ - user.subscription?.type - ]?.toUpperCase() || "Basic"} - + {premium ? ( + + {SUBSCRIPTION_STATUS_STRINGS[ + user.subscription?.type + ]?.toUpperCase() || "Basic"} + + ) : null} { presentDialog({ - title: "Set name", - paragraph: "Set your full name", + title: "Set your full name", + paragraph: + "Your name is end-to-end encrypted and only visible to you.", positiveText: "Save", input: true, inputPlaceholder: "Enter your full name", diff --git a/apps/mobile/native/fonts/MaterialCommunityIcons.ttf b/apps/mobile/native/fonts/MaterialCommunityIcons.ttf index 592983a4d..9b18bfeb2 100644 Binary files a/apps/mobile/native/fonts/MaterialCommunityIcons.ttf and b/apps/mobile/native/fonts/MaterialCommunityIcons.ttf differ diff --git a/apps/mobile/patches/react-native-vector-icons+9.2.0.patch b/apps/mobile/patches/react-native-vector-icons+9.2.0.patch index afac34aa1..a39d0e70b 100644 --- a/apps/mobile/patches/react-native-vector-icons+9.2.0.patch +++ b/apps/mobile/patches/react-native-vector-icons+9.2.0.patch @@ -9,6 +9,17 @@ diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/1a new file mode 100644 index 0000000..d4bdd72 Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/.transforms/1a87deef090d6cf8aea1dfa552bdc5fd/transformed/classes/classes.dex differ +diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/2e7e8d25233add3d19a6d271696b5812/results.bin b/node_modules/react-native-vector-icons/android/build/.transforms/2e7e8d25233add3d19a6d271696b5812/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/.transforms/2e7e8d25233add3d19a6d271696b5812/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/2e7e8d25233add3d19a6d271696b5812/transformed/classes/classes.dex b/node_modules/react-native-vector-icons/android/build/.transforms/2e7e8d25233add3d19a6d271696b5812/transformed/classes/classes.dex +new file mode 100644 +index 0000000..d4bdd72 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/.transforms/2e7e8d25233add3d19a6d271696b5812/transformed/classes/classes.dex differ diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/8ba358b129ab2b7100dd2d41942baf40/results.bin b/node_modules/react-native-vector-icons/android/build/.transforms/8ba358b129ab2b7100dd2d41942baf40/results.bin new file mode 100644 index 0000000..e69de29 @@ -22,6 +33,2006 @@ index 0000000..0d259dd diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/9469767ddf733a51f4497b9a4a4c145a/transformed/classes/classes.dex b/node_modules/react-native-vector-icons/android/build/.transforms/9469767ddf733a51f4497b9a4a4c145a/transformed/classes/classes.dex new file mode 100644 index 0000000..e69de29 +diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/results.bin b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/results.bin +new file mode 100644 +index 0000000..6e09b8c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/results.bin +@@ -0,0 +1 @@ ++o/out +diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/AndroidManifest.xml b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/AndroidManifest.xml +new file mode 100644 +index 0000000..eb8cc91 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties +new file mode 100644 +index 0000000..776557e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/META-INF/com/android/build/gradle/aar-metadata.properties +@@ -0,0 +1,5 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 +diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/R.txt b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/R.txt +new file mode 100644 +index 0000000..5347f17 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/R.txt +@@ -0,0 +1,1954 @@ ++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 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 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 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_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 redbox_top_border_background 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 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 buttonPanel 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 expand_activities_button 0x0 ++int id expanded_menu 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 home 0x0 ++int id icon 0x0 ++int id icon_group 0x0 ++int id image 0x0 ++int id info 0x0 ++int id italic 0x0 ++int id item1 0x0 ++int id item2 0x0 ++int id item3 0x0 ++int id item4 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 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 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 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 unchecked 0x0 ++int id uniform 0x0 ++int id up 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_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 react_native_inspector_proxy_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 autofill_inline_suggestion 0x0 ++int layout custom_dialog 0x0 ++int layout dev_loading_view 0x0 ++int layout fps_view 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 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 menu example_menu 0x0 ++int menu example_menu2 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 catalyst_change_bundle_location 0x0 ++int string catalyst_copy_button 0x0 ++int string catalyst_debug 0x0 ++int string catalyst_debug_chrome 0x0 ++int string catalyst_debug_chrome_stop 0x0 ++int string catalyst_debug_connecting 0x0 ++int string catalyst_debug_error 0x0 ++int string catalyst_debug_open 0x0 ++int string catalyst_debug_stop 0x0 ++int string catalyst_devtools_open 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 0x0 ++int string catalyst_inspector_stop 0x0 ++int string catalyst_loading_from_url 0x0 ++int string catalyst_open_flipper_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_disable 0x0 ++int string catalyst_sample_profiler_enable 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 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 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, 0x0 } ++int styleable SimpleDraweeView_actualImageResource 0 ++int styleable SimpleDraweeView_actualImageScaleType 1 ++int styleable SimpleDraweeView_actualImageUri 2 ++int styleable SimpleDraweeView_backgroundImage 3 ++int styleable SimpleDraweeView_fadeDuration 4 ++int styleable SimpleDraweeView_failureImage 5 ++int styleable SimpleDraweeView_failureImageScaleType 6 ++int styleable SimpleDraweeView_overlayImage 7 ++int styleable SimpleDraweeView_placeholderImage 8 ++int styleable SimpleDraweeView_placeholderImageScaleType 9 ++int styleable SimpleDraweeView_pressedStateOverlayImage 10 ++int styleable SimpleDraweeView_progressBarAutoRotateInterval 11 ++int styleable SimpleDraweeView_progressBarImage 12 ++int styleable SimpleDraweeView_progressBarImageScaleType 13 ++int styleable SimpleDraweeView_retryImage 14 ++int styleable SimpleDraweeView_retryImageScaleType 15 ++int styleable SimpleDraweeView_roundAsCircle 16 ++int styleable SimpleDraweeView_roundBottomEnd 17 ++int styleable SimpleDraweeView_roundBottomLeft 18 ++int styleable SimpleDraweeView_roundBottomRight 19 ++int styleable SimpleDraweeView_roundBottomStart 20 ++int styleable SimpleDraweeView_roundTopEnd 21 ++int styleable SimpleDraweeView_roundTopLeft 22 ++int styleable SimpleDraweeView_roundTopRight 23 ++int styleable SimpleDraweeView_roundTopStart 24 ++int styleable SimpleDraweeView_roundWithOverlayColor 25 ++int styleable SimpleDraweeView_roundedCornerRadius 26 ++int styleable SimpleDraweeView_roundingBorderColor 27 ++int styleable SimpleDraweeView_roundingBorderPadding 28 ++int styleable SimpleDraweeView_roundingBorderWidth 29 ++int styleable SimpleDraweeView_viewAspectRatio 30 ++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 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-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/jars/classes.jar b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/jars/classes.jar +new file mode 100644 +index 0000000..d5ab4d1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/jars/classes.jar differ +diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/jars/libs/R.jar b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/jars/libs/R.jar +new file mode 100644 +index 0000000..bd4434a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/.transforms/e752d9754ea2c8eb9379a0c19450619b/transformed/out/jars/libs/R.jar differ diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/f1314fc28eaff1170375cbb76465cb24/results.bin b/node_modules/react-native-vector-icons/android/build/.transforms/f1314fc28eaff1170375cbb76465cb24/results.bin new file mode 100644 index 0000000..0d259dd @@ -32,6 +2043,22 @@ index 0000000..0d259dd diff --git a/node_modules/react-native-vector-icons/android/build/.transforms/f1314fc28eaff1170375cbb76465cb24/transformed/classes/classes.dex b/node_modules/react-native-vector-icons/android/build/.transforms/f1314fc28eaff1170375cbb76465cb24/transformed/classes/classes.dex new file mode 100644 index 0000000..e69de29 +diff --git a/node_modules/react-native-vector-icons/android/build/generated/source/buildConfig/androidTest/debug/com/oblador/vectoricons/test/BuildConfig.java b/node_modules/react-native-vector-icons/android/build/generated/source/buildConfig/androidTest/debug/com/oblador/vectoricons/test/BuildConfig.java +new file mode 100644 +index 0000000..180e4f2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/generated/source/buildConfig/androidTest/debug/com/oblador/vectoricons/test/BuildConfig.java +@@ -0,0 +1,10 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.oblador.vectoricons.test; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String APPLICATION_ID = "com.oblador.vectoricons.test"; ++ public static final String BUILD_TYPE = "debug"; ++} diff --git a/node_modules/react-native-vector-icons/android/build/generated/source/buildConfig/debug/com/oblador/vectoricons/BuildConfig.java b/node_modules/react-native-vector-icons/android/build/generated/source/buildConfig/debug/com/oblador/vectoricons/BuildConfig.java new file mode 100644 index 0000000..52a02e0 @@ -142,6 +2169,10 @@ index 0000000..33c1765 + "elementType": "File" +} \ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/aar_main_jar/release/classes.jar b/node_modules/react-native-vector-icons/android/build/intermediates/aar_main_jar/release/classes.jar +new file mode 100644 +index 0000000..d5ab4d1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/aar_main_jar/release/classes.jar differ diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/aar_metadata/debug/aar-metadata.properties b/node_modules/react-native-vector-icons/android/build/intermediates/aar_metadata/debug/aar-metadata.properties new file mode 100644 index 0000000..776557e @@ -172,6 +2203,14 @@ index 0000000..9e26dfe @@ -0,0 +1 @@ +{} \ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json b/node_modules/react-native-vector-icons/android/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json b/node_modules/react-native-vector-icons/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe @@ -180,6 +2219,21 @@ index 0000000..9e26dfe @@ -0,0 +1 @@ +{} \ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/annotations_typedef_file/release/typedefs.txt b/node_modules/react-native-vector-icons/android/build/intermediates/annotations_typedef_file/release/typedefs.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/apk_ide_redirect_file/debugAndroidTest/redirect.txt b/node_modules/react-native-vector-icons/android/build/intermediates/apk_ide_redirect_file/debugAndroidTest/redirect.txt +new file mode 100644 +index 0000000..b7d5868 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/apk_ide_redirect_file/debugAndroidTest/redirect.txt +@@ -0,0 +1,2 @@ ++#- File Locator - ++listingFile=../../../outputs/apk/androidTest/debug/output-metadata.json +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar b/node_modules/react-native-vector-icons/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar +new file mode 100644 +index 0000000..f8e6645 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar differ diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/compile_library_classes_jar/debug/classes.jar b/node_modules/react-native-vector-icons/android/build/intermediates/compile_library_classes_jar/debug/classes.jar new file mode 100644 index 0000000..77c2a69 @@ -4114,13 +6168,93 @@ index 0000000..5347f17 +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-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_4/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_4/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_4/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_5/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_5/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_5/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_0/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_0/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_0/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_1/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_1/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_1/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_2/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_2/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_2/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_3/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_3/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_3/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_4/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_4/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_4/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_5/graph.bin b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_5/graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_81e43c3baee3ded8eee6b7719506dbe44d9d52021e9b3d809f0ddabd5f48fac0_bucket_5/graph.bin differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex b/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex +new file mode 100644 +index 0000000..45a1876 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/0/classes.dex b/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/0/classes.dex +new file mode 100644 +index 0000000..b4e4de4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/0/classes.dex differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex b/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex +new file mode 100644 +index 0000000..c437290 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/4/classes.dex b/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/4/classes.dex +new file mode 100644 +index 0000000..7948b83 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/4/classes.dex differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out b/node_modules/react-native-vector-icons/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out +new file mode 100644 +index 0000000..f31ee3e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out b/node_modules/react-native-vector-icons/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out +new file mode 100644 +index 0000000..62f9457 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out +@@ -0,0 +1 @@ ++6 +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/full_jar/release/full.jar b/node_modules/react-native-vector-icons/android/build/intermediates/full_jar/release/full.jar +new file mode 100644 +index 0000000..d356ca8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/full_jar/release/full.jar differ diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties new file mode 100644 -index 0000000..3b5ce7a +index 0000000..ea5d1a6 --- /dev/null +++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties @@ -0,0 +1 @@ -+#Sat Mar 16 07:24:12 PKT 2024 ++#Wed Apr 24 10:15:35 PKT 2024 diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml new file mode 100644 index 0000000..c417283 @@ -4130,6 +6264,12362 @@ index 0000000..c417283 + + \ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..cd56e60 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0Dxj4IkeiM+c1JosvMEPkfzfeyU= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0Dxj4IkeiM+c1JosvMEPkfzfeyU= +new file mode 100644 +index 0000000..2c40dd3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0Dxj4IkeiM+c1JosvMEPkfzfeyU= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/1z8jzCoFCz4TjOIVW4IFbJCl_oQ= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/1z8jzCoFCz4TjOIVW4IFbJCl_oQ= +new file mode 100644 +index 0000000..1ffce77 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/1z8jzCoFCz4TjOIVW4IFbJCl_oQ= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2+_S4pCoaYjAZrJdoG8vRLmHLB4= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2+_S4pCoaYjAZrJdoG8vRLmHLB4= +new file mode 100644 +index 0000000..5dd6acd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2+_S4pCoaYjAZrJdoG8vRLmHLB4= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2wT_6kJOv9s1W8A+WpRkaifuA3s= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2wT_6kJOv9s1W8A+WpRkaifuA3s= +new file mode 100644 +index 0000000..5b308b8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2wT_6kJOv9s1W8A+WpRkaifuA3s= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3bVcgwxQ+B+vBM+64zKv+Yde6Ug= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3bVcgwxQ+B+vBM+64zKv+Yde6Ug= +new file mode 100644 +index 0000000..1c472d0 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3bVcgwxQ+B+vBM+64zKv+Yde6Ug= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/4Gg4kTEb0E2oaMp+0_JabaD8e5k= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/4Gg4kTEb0E2oaMp+0_JabaD8e5k= +new file mode 100644 +index 0000000..81db71e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/4Gg4kTEb0E2oaMp+0_JabaD8e5k= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5SxgjPcWrqqj1zjZtF4WGy138K0= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5SxgjPcWrqqj1zjZtF4WGy138K0= +new file mode 100644 +index 0000000..092121f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5SxgjPcWrqqj1zjZtF4WGy138K0= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5b8QoZsmzq_IiSVJJ9ubc8Kdpw0= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5b8QoZsmzq_IiSVJJ9ubc8Kdpw0= +new file mode 100644 +index 0000000..6f686cc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5b8QoZsmzq_IiSVJJ9ubc8Kdpw0= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5uGUaaeChDrptED6crOm2LPEZzg= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5uGUaaeChDrptED6crOm2LPEZzg= +new file mode 100644 +index 0000000..d4a0a25 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/5uGUaaeChDrptED6crOm2LPEZzg= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/6ixZL8H0FHMzpW6unp96lTGpIeM= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/6ixZL8H0FHMzpW6unp96lTGpIeM= +new file mode 100644 +index 0000000..95afcce +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/6ixZL8H0FHMzpW6unp96lTGpIeM= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/7u_KCQ8QfKlOD9lBhMrR5ajCofM= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/7u_KCQ8QfKlOD9lBhMrR5ajCofM= +new file mode 100644 +index 0000000..8fd6cd4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/7u_KCQ8QfKlOD9lBhMrR5ajCofM= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9DOs9w+eT4dgvvctldg6whX1vCg= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9DOs9w+eT4dgvvctldg6whX1vCg= +new file mode 100644 +index 0000000..21eb307 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9DOs9w+eT4dgvvctldg6whX1vCg= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9icJ5arp7nR0IeDA9WFfz2Gdapo= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9icJ5arp7nR0IeDA9WFfz2Gdapo= +new file mode 100644 +index 0000000..5ff5dc6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/9icJ5arp7nR0IeDA9WFfz2Gdapo= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/B9O5jj1ENnHFiHrutNg5TsPIFEc= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/B9O5jj1ENnHFiHrutNg5TsPIFEc= +new file mode 100644 +index 0000000..e36377d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/B9O5jj1ENnHFiHrutNg5TsPIFEc= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/CZpZOg+JvqaSUwPUZV+K1aDzvOc= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/CZpZOg+JvqaSUwPUZV+K1aDzvOc= +new file mode 100644 +index 0000000..696031b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/CZpZOg+JvqaSUwPUZV+K1aDzvOc= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DTNdgZNH91ve4XBIJBHSdsEdw90= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DTNdgZNH91ve4XBIJBHSdsEdw90= +new file mode 100644 +index 0000000..2723fd2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DTNdgZNH91ve4XBIJBHSdsEdw90= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DxV9QlbvzM3iCZ24+J2kEpUZNRY= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DxV9QlbvzM3iCZ24+J2kEpUZNRY= +new file mode 100644 +index 0000000..fb794be +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/DxV9QlbvzM3iCZ24+J2kEpUZNRY= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/E0x2axDGlufk4kuvi2t4dTyPeu8= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/E0x2axDGlufk4kuvi2t4dTyPeu8= +new file mode 100644 +index 0000000..7fefd79 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/E0x2axDGlufk4kuvi2t4dTyPeu8= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/F5EjBYLzf1T11Vgx9yS9ypCqqII= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/F5EjBYLzf1T11Vgx9yS9ypCqqII= +new file mode 100644 +index 0000000..2015c21 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/F5EjBYLzf1T11Vgx9yS9ypCqqII= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/FRH11XF9VxEh3eTAVH4ai_udbGo= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/FRH11XF9VxEh3eTAVH4ai_udbGo= +new file mode 100644 +index 0000000..638cb28 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/FRH11XF9VxEh3eTAVH4ai_udbGo= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/GEv_OFv0tj18pGiewopf_d8Giwg= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/GEv_OFv0tj18pGiewopf_d8Giwg= +new file mode 100644 +index 0000000..7e6eb47 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/GEv_OFv0tj18pGiewopf_d8Giwg= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ItHVevAXU8EzeZROUrIV0Zf0zPc= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ItHVevAXU8EzeZROUrIV0Zf0zPc= +new file mode 100644 +index 0000000..5707aa8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ItHVevAXU8EzeZROUrIV0Zf0zPc= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/JvSe4hGIIlIshrrbkyU1JJlqjSk= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/JvSe4hGIIlIshrrbkyU1JJlqjSk= +new file mode 100644 +index 0000000..b2a9d0b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/JvSe4hGIIlIshrrbkyU1JJlqjSk= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Kk9MIRryVZktc1AH0b0QknWaVAw= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Kk9MIRryVZktc1AH0b0QknWaVAw= +new file mode 100644 +index 0000000..926710e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Kk9MIRryVZktc1AH0b0QknWaVAw= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LsTYTfSYrzbUvLpR1r0lWB1MvMk= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LsTYTfSYrzbUvLpR1r0lWB1MvMk= +new file mode 100644 +index 0000000..9ed07b4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LsTYTfSYrzbUvLpR1r0lWB1MvMk= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MPcI6MguEmmtCsl55WDRmFwcrwM= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MPcI6MguEmmtCsl55WDRmFwcrwM= +new file mode 100644 +index 0000000..c68ea7a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MPcI6MguEmmtCsl55WDRmFwcrwM= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OVutanxKTEg7c3_imSqtubftTi8= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OVutanxKTEg7c3_imSqtubftTi8= +new file mode 100644 +index 0000000..d851e6b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OVutanxKTEg7c3_imSqtubftTi8= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OpnQJ1RAV2X2mPIliS3FneJYJQk= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OpnQJ1RAV2X2mPIliS3FneJYJQk= +new file mode 100644 +index 0000000..ff3d698 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/OpnQJ1RAV2X2mPIliS3FneJYJQk= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/PIDughaNEhBy0i5kJapmXziFHsI= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/PIDughaNEhBy0i5kJapmXziFHsI= +new file mode 100644 +index 0000000..fe3b040 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/PIDughaNEhBy0i5kJapmXziFHsI= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/RA1df9tf2mECnTstqcG4uWqStaQ= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/RA1df9tf2mECnTstqcG4uWqStaQ= +new file mode 100644 +index 0000000..761fe3b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/RA1df9tf2mECnTstqcG4uWqStaQ= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/SCPqPKf55AExkqUPtZY_36EaNP4= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/SCPqPKf55AExkqUPtZY_36EaNP4= +new file mode 100644 +index 0000000..a631075 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/SCPqPKf55AExkqUPtZY_36EaNP4= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UJqQ9yMyEbToruTsh13i8fqABZ8= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UJqQ9yMyEbToruTsh13i8fqABZ8= +new file mode 100644 +index 0000000..6ccda32 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UJqQ9yMyEbToruTsh13i8fqABZ8= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UteMbAxDany0vKSsWBrON7hx87k= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UteMbAxDany0vKSsWBrON7hx87k= +new file mode 100644 +index 0000000..160357a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UteMbAxDany0vKSsWBrON7hx87k= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/V9uSZwY1bFuhcKyIVodxvlqyGzI= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/V9uSZwY1bFuhcKyIVodxvlqyGzI= +new file mode 100644 +index 0000000..54bd507 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/V9uSZwY1bFuhcKyIVodxvlqyGzI= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VC0nzFmyGmqqRgCevDo+HV6GdwU= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VC0nzFmyGmqqRgCevDo+HV6GdwU= +new file mode 100644 +index 0000000..5ab8cbd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VC0nzFmyGmqqRgCevDo+HV6GdwU= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VduPOelcrD_bFHN0dTZ2QK+B0Fg= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VduPOelcrD_bFHN0dTZ2QK+B0Fg= +new file mode 100644 +index 0000000..f8d2608 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VduPOelcrD_bFHN0dTZ2QK+B0Fg= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Vwf6Hrmb_xdeh2O4ub43LMGTYMY= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Vwf6Hrmb_xdeh2O4ub43LMGTYMY= +new file mode 100644 +index 0000000..ab6eb53 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Vwf6Hrmb_xdeh2O4ub43LMGTYMY= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/WORvoZgdOeWXlMkwmPTCRaRl6IA= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/WORvoZgdOeWXlMkwmPTCRaRl6IA= +new file mode 100644 +index 0000000..f224688 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/WORvoZgdOeWXlMkwmPTCRaRl6IA= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XG_fQYX+YANWqAdImEZob+6Q2vY= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XG_fQYX+YANWqAdImEZob+6Q2vY= +new file mode 100644 +index 0000000..89fbacd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/XG_fQYX+YANWqAdImEZob+6Q2vY= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Xa_OPQvSxRkfmHWlOl34OA5MwwA= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Xa_OPQvSxRkfmHWlOl34OA5MwwA= +new file mode 100644 +index 0000000..862ee84 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Xa_OPQvSxRkfmHWlOl34OA5MwwA= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/YCWXbojLDMWUSeXa3yy7ITK6VQ4= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/YCWXbojLDMWUSeXa3yy7ITK6VQ4= +new file mode 100644 +index 0000000..8495984 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/YCWXbojLDMWUSeXa3yy7ITK6VQ4= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Z00AFY6L3mlNSuIoqOA3FpOKVUE= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Z00AFY6L3mlNSuIoqOA3FpOKVUE= +new file mode 100644 +index 0000000..995ec15 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Z00AFY6L3mlNSuIoqOA3FpOKVUE= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZklTXLjMAMbW1i3QHIIqZHX4Z8o= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZklTXLjMAMbW1i3QHIIqZHX4Z8o= +new file mode 100644 +index 0000000..2107ace +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ZklTXLjMAMbW1i3QHIIqZHX4Z8o= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_vmGcQpJufccdIHcLj1EmJsFnz4= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_vmGcQpJufccdIHcLj1EmJsFnz4= +new file mode 100644 +index 0000000..24c78f4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_vmGcQpJufccdIHcLj1EmJsFnz4= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/a9JPd+xl9em_uLKkY3k1YX1XPcI= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/a9JPd+xl9em_uLKkY3k1YX1XPcI= +new file mode 100644 +index 0000000..59222d9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/a9JPd+xl9em_uLKkY3k1YX1XPcI= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/b3aTuVIcIpop4EeU2puMtQQz7Ko= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/b3aTuVIcIpop4EeU2puMtQQz7Ko= +new file mode 100644 +index 0000000..40f58a5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/b3aTuVIcIpop4EeU2puMtQQz7Ko= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cTs92OBXLykCulD5xJdR2KJwRF4= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cTs92OBXLykCulD5xJdR2KJwRF4= +new file mode 100644 +index 0000000..30185e4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cTs92OBXLykCulD5xJdR2KJwRF4= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cjBPwcQVjQgU+Sj+VSaFH4RqbpA= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cjBPwcQVjQgU+Sj+VSaFH4RqbpA= +new file mode 100644 +index 0000000..d4118d6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cjBPwcQVjQgU+Sj+VSaFH4RqbpA= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/clZsgzANlr1pRx4b8L1og8rXVDE= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/clZsgzANlr1pRx4b8L1og8rXVDE= +new file mode 100644 +index 0000000..12dee8f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/clZsgzANlr1pRx4b8L1og8rXVDE= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dMG_ckhC1OdeDOdyfn+6+azkShc= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dMG_ckhC1OdeDOdyfn+6+azkShc= +new file mode 100644 +index 0000000..de755d1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dMG_ckhC1OdeDOdyfn+6+azkShc= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/hO9jWsB+CEyy+EUhNMaM7x8wPEY= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/hO9jWsB+CEyy+EUhNMaM7x8wPEY= +new file mode 100644 +index 0000000..37b8328 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/hO9jWsB+CEyy+EUhNMaM7x8wPEY= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/iPHH5oN1knBO4DmzmSLggA+R8B4= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/iPHH5oN1knBO4DmzmSLggA+R8B4= +new file mode 100644 +index 0000000..8568b5b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/iPHH5oN1knBO4DmzmSLggA+R8B4= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ir_7m2nGr1vCX+I481Fo7ycqfJg= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ir_7m2nGr1vCX+I481Fo7ycqfJg= +new file mode 100644 +index 0000000..c036e32 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ir_7m2nGr1vCX+I481Fo7ycqfJg= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/itfT3U0TE1Geenml_RXShxuLBYg= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/itfT3U0TE1Geenml_RXShxuLBYg= +new file mode 100644 +index 0000000..10c7c9d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/itfT3U0TE1Geenml_RXShxuLBYg= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jGHXar5Yerw_RbPg7RST1VmX7yc= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jGHXar5Yerw_RbPg7RST1VmX7yc= +new file mode 100644 +index 0000000..9cade31 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jGHXar5Yerw_RbPg7RST1VmX7yc= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jNTuxRvsQEdxhwP6boyK4ZQ5uoo= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jNTuxRvsQEdxhwP6boyK4ZQ5uoo= +new file mode 100644 +index 0000000..f9e8870 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jNTuxRvsQEdxhwP6boyK4ZQ5uoo= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jXcgQGPyXAskTIgCI5eJ3GogNwo= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jXcgQGPyXAskTIgCI5eJ3GogNwo= +new file mode 100644 +index 0000000..c6661be +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jXcgQGPyXAskTIgCI5eJ3GogNwo= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/kI7pszePqbrZ8tjamEeqsrKjgQI= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/kI7pszePqbrZ8tjamEeqsrKjgQI= +new file mode 100644 +index 0000000..6888d08 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/kI7pszePqbrZ8tjamEeqsrKjgQI= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mrlK4BYfxdl58niM9z3MYCYHHao= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mrlK4BYfxdl58niM9z3MYCYHHao= +new file mode 100644 +index 0000000..33a6966 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mrlK4BYfxdl58niM9z3MYCYHHao= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nZUFdcMAFWFkw43g4wHt9rLss1o= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nZUFdcMAFWFkw43g4wHt9rLss1o= +new file mode 100644 +index 0000000..44a52c1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nZUFdcMAFWFkw43g4wHt9rLss1o= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nfMx3VMKmYaFX4uvO0X5srkbTqc= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nfMx3VMKmYaFX4uvO0X5srkbTqc= +new file mode 100644 +index 0000000..5e67692 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nfMx3VMKmYaFX4uvO0X5srkbTqc= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ngft7330grc3nma9ZcCLwzo4OtU= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ngft7330grc3nma9ZcCLwzo4OtU= +new file mode 100644 +index 0000000..6d19763 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ngft7330grc3nma9ZcCLwzo4OtU= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nm03JQ89Mve7J5NkSpG7cX3SxgQ= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nm03JQ89Mve7J5NkSpG7cX3SxgQ= +new file mode 100644 +index 0000000..b0efa63 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nm03JQ89Mve7J5NkSpG7cX3SxgQ= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ph9t8g8e9_kfccqpNpoMBNLMJRE= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ph9t8g8e9_kfccqpNpoMBNLMJRE= +new file mode 100644 +index 0000000..7e2537c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/ph9t8g8e9_kfccqpNpoMBNLMJRE= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qwqqtRNbtvCiJYv2by8_ZoeIZSk= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qwqqtRNbtvCiJYv2by8_ZoeIZSk= +new file mode 100644 +index 0000000..22bdb4e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qwqqtRNbtvCiJYv2by8_ZoeIZSk= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rCyBOMY+t0zbTFzHR3EIzrWs0G4= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rCyBOMY+t0zbTFzHR3EIzrWs0G4= +new file mode 100644 +index 0000000..ef898ee +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rCyBOMY+t0zbTFzHR3EIzrWs0G4= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uq2Gb4GCL7kw5wKMxJhNwCRcl2E= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uq2Gb4GCL7kw5wKMxJhNwCRcl2E= +new file mode 100644 +index 0000000..4d0a804 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uq2Gb4GCL7kw5wKMxJhNwCRcl2E= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/wreLSDQQ3+EZr94BMnESOBaJQ+o= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/wreLSDQQ3+EZr94BMnESOBaJQ+o= +new file mode 100644 +index 0000000..46ce690 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/wreLSDQQ3+EZr94BMnESOBaJQ+o= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/xEnHetJ8gSw6ci0XyB+bMVByYRg= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/xEnHetJ8gSw6ci0XyB+bMVByYRg= +new file mode 100644 +index 0000000..da323a9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/xEnHetJ8gSw6ci0XyB+bMVByYRg= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/yLjAsHJq4dfTh2I1V83A30US5j4= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/yLjAsHJq4dfTh2I1V83A30US5j4= +new file mode 100644 +index 0000000..d0a17a9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/yLjAsHJq4dfTh2I1V83A30US5j4= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/zDwrTwmoeJMj3dGaokiSHrZOqs8= b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/zDwrTwmoeJMj3dGaokiSHrZOqs8= +new file mode 100644 +index 0000000..ba19014 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/zDwrTwmoeJMj3dGaokiSHrZOqs8= differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties +new file mode 100644 +index 0000000..f9e9739 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Wed Apr 17 12:20:19 PKT 2024 +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml +new file mode 100644 +index 0000000..304fd2e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Gaan na tuisskerm" ++ "Gaan op" ++ "Nog opsies" ++ "Klaar" ++ "Sien alles" ++ "Kies \'n program" ++ "AF" ++ "AAN" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Funksie+" ++ "Meta+" ++ "Shift+" ++ "spasiebalk" ++ "Simbool+" ++ "Kieslys+" ++ "Soek …" ++ "Vee navraag uit" ++ "Soektognavraag" ++ "Soek" ++ "Dien navraag in" ++ "Stemsoektog" ++ "Deel met" ++ "Deel met %s" ++ "Vou in" ++ "Soek" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml +new file mode 100644 +index 0000000..88b54b7 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "መነሻ ዳስስ" ++ "ወደ ላይ ያስሱ" ++ "ተጨማሪ አማራጮች" ++ "ተከናውኗል" ++ "ሁሉንም ይመልከቱ" ++ "አንድ መተግበሪያ ይምረጡ" ++ "አጥፋ" ++ "አብራ" ++ "Alt+" ++ "Ctrl+" ++ "ሰርዝ" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ክፍተት" ++ "Sym+" ++ "Menu+" ++ "ይፈልጉ…" ++ "መጠይቅ አጽዳ" ++ "የፍለጋ መጠይቅ" ++ "ፍለጋ" ++ "መጠይቅ አስገባ" ++ "የድምጽ ፍለጋ" ++ "አጋራ በ" ++ "ለ%s አጋራ" ++ "ሰብስብ" ++ "ፍለጋ" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +new file mode 100644 +index 0000000..83cb0df +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "التوجه إلى المنزل" ++ "التنقل إلى أعلى" ++ "خيارات أكثر" ++ "تم" ++ "عرض الكل" ++ "اختيار تطبيق" ++ "إيقاف" ++ "مفعّلة" ++ "Alt+" ++ "Ctrl+" ++ "حذف" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "فضاء" ++ "Sym+" ++ "القائمة+" ++ "بحث…" ++ "محو طلب البحث" ++ "طلب بحث" ++ "البحث" ++ "إرسال طلب البحث" ++ "بحث صوتي" ++ "مشاركة مع" ++ "مشاركة مع %s" ++ "تصغير" ++ "البحث" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml +new file mode 100644 +index 0000000..2a889e2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "গৃহ পৃষ্ঠালৈ যাওক" ++ "ওপৰলৈ যাওক" ++ "অধিক বিকল্প" ++ "সম্পন্ন হ’ল" ++ "সকলো চাওক" ++ "কোনো এপ্ বাছনি কৰক" ++ "অফ" ++ "অন" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সন্ধান কৰক…" ++ "সন্ধান কৰা প্ৰশ্ন মচক" ++ "সন্ধান কৰা প্ৰশ্ন" ++ "সন্ধান কৰক" ++ "প্ৰশ্ন দাখিল কৰক" ++ "কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান" ++ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "সংকোচন কৰক" ++ "সন্ধান" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml +new file mode 100644 +index 0000000..8f27789 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Əsas səhifəyə keçin" ++ "Yuxarı keçin" ++ "Digər seçimlər" ++ "Hazırdır" ++ "Hamısına baxın" ++ "Tətbiq seçin" ++ "DEAKTİV" ++ "AKTİV" ++ "Alt+" ++ "Ctrl+" ++ "silin" ++ "daxil olun" ++ "Funksiya+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menyu+" ++ "Axtarış..." ++ "Sorğunu silin" ++ "Axtarış sorğusu" ++ "Axtarın" ++ "Sorğunu göndərin" ++ "Səsli axtarış" ++ "Paylaşın" ++ "%s ilə paylaşın" ++ "Yığcamlaşdırın" ++ "Axtarın" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +new file mode 100644 +index 0000000..1742b18 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Idite na početnu" ++ "Idite nagore" ++ "Još opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Izaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "taster za razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Obrišite upit" ++ "Pretražite upit" ++ "Pretražite" ++ "Pošaljite upit" ++ "Glasovna pretraga" ++ "Delite pomoću" ++ "Delite pomoću aplikacije %s" ++ "Skupi" ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml +new file mode 100644 +index 0000000..0cd2a62 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Перайсці на галоўную старонку" ++ "Перайсці ўверх" ++ "Дадатковыя параметры" ++ "Гатова" ++ "Паказаць усе" ++ "Выберыце праграму" ++ "ВЫКЛ." ++ "УКЛ." ++ "Alt +" ++ "Ctrl +" ++ "Delete" ++ "Enter" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "Прабел" ++ "Sym +" ++ "Меню +" ++ "Пошук…" ++ "Выдаліць запыт" ++ "Пошукавы запыт" ++ "Пошук" ++ "Адправіць запыт" ++ "Галасавы пошук" ++ "Абагуліць праз" ++ "Абагуліць праз праграму \"%s\"" ++ "Згарнуць" ++ "Пошук" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +new file mode 100644 +index 0000000..31c32cb +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Навигиране към началния екран" ++ "Навигиране нагоре" ++ "Още опции" ++ "Готово" ++ "Преглед на всички" ++ "Изберете приложение" ++ "ИЗКЛ." ++ "ВКЛ." ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "клавиша за интервал" ++ "Sym+" ++ "Menu+" ++ "Търсете…" ++ "Изчистване на заявката" ++ "Заявка за търсене" ++ "Търсене" ++ "Изпращане на заявката" ++ "Гласово търсене" ++ "Споделяне със:" ++ "Споделяне със: %s" ++ "Свиване" ++ "Търсене" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +new file mode 100644 +index 0000000..65c84be +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "হোমে নেভিগেট করুন" ++ "উপরে নেভিগেট করুন" ++ "আরও বিকল্প" ++ "হয়ে গেছে" ++ "সবগুলি দেখুন" ++ "একটি অ্যাপ বেছে নিন" ++ "বন্ধ আছে" ++ "চালু করুন" ++ "Alt+" ++ "Ctrl+" ++ "মুছুন" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সার্চ করুন…" ++ "কোয়েরি মুছে ফেলুন" ++ "সার্চ কোয়েরি" ++ "সার্চ করুন" ++ "কোয়েরি জমা দিন" ++ "ভয়েস সার্চ করুন" ++ "শেয়ার করুন" ++ "%s-এর সাথে শেয়ার করুন" ++ "সঙ্কুচিত করুন" ++ "সার্চ করুন" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +new file mode 100644 +index 0000000..008ce54 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Vratite se na početnu stranicu" ++ "Idi gore" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite..." ++ "Obriši upit" ++ "Pretraži upit" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli sa" ++ "Dijeli putem aplikacije %s" ++ "Suzi" ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +new file mode 100644 +index 0000000..c47fac8 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navega fins a la pàgina d\'inici" ++ "Navega cap amunt" ++ "Més opcions" ++ "Fet" ++ "Mostra-ho tot" ++ "Selecciona una aplicació" ++ "DESACTIVA" ++ "ACTIVA" ++ "Alt+" ++ "Ctrl+" ++ "Supr" ++ "Retorn" ++ "Funció+" ++ "Meta+" ++ "Maj+" ++ "Espai" ++ "Sym+" ++ "Menú+" ++ "Cerca…" ++ "Esborra la consulta" ++ "Consulta de cerca" ++ "Cerca" ++ "Envia la consulta" ++ "Cerca per veu" ++ "Comparteix amb" ++ "Comparteix amb %s" ++ "Replega" ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +new file mode 100644 +index 0000000..606075a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Přejít na plochu" ++ "Přejít nahoru" ++ "Další možnosti" ++ "Hotovo" ++ "Zobrazit vše" ++ "Vybrat aplikaci" ++ "VYP" ++ "ZAP" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mezerník" ++ "Sym+" ++ "Menu+" ++ "Vyhledat…" ++ "Smazat dotaz" ++ "Dotaz pro vyhledávání" ++ "Hledat" ++ "Odeslat dotaz" ++ "Hlasové vyhledávání" ++ "Sdílet s" ++ "Sdílet s aplikací %s" ++ "Sbalit" ++ "Hledat" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml +new file mode 100644 +index 0000000..6c4307e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Find hjem" ++ "Gå op" ++ "Flere valgmuligheder" ++ "Udfør" ++ "Se alle" ++ "Vælg en app" ++ "FRA" ++ "TIL" ++ "Alt+" ++ "Ctrl+" ++ "slet" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mellemrum" ++ "Sym+" ++ "Menu+" ++ "Søg…" ++ "Ryd forespørgsel" ++ "Søgeforespørgsel" ++ "Søg" ++ "Indsend forespørgsel" ++ "Talesøgning" ++ "Del med" ++ "Del med %s" ++ "Skjul" ++ "Søg" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml +new file mode 100644 +index 0000000..a96e870 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Zur Startseite" ++ "Nach oben" ++ "Weitere Optionen" ++ "Fertig" ++ "Alle anzeigen" ++ "App auswählen" ++ "AUS" ++ "AN" ++ "Alt +" ++ "Strg +" ++ "Löschen" ++ "Eingabetaste" ++ "Funktionstaste +" ++ "Meta-Taste +" ++ "Umschalttaste +" ++ "Leertaste" ++ "Sym-Taste +" ++ "Menütaste +" ++ "Suchen…" ++ "Suchanfrage löschen" ++ "Suchanfrage" ++ "Suche" ++ "Anfrage senden" ++ "Sprachsuche" ++ "Teilen mit" ++ "Mit %s teilen" ++ "Minimieren" ++ "Suche" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml +new file mode 100644 +index 0000000..4ebd780 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Πλοήγηση στην αρχική σελίδα" ++ "Πλοήγηση προς τα επάνω" ++ "Περισσότερες επιλογές" ++ "Τέλος" ++ "Εμφάνιση όλων" ++ "Επιλέξτε μια εφαρμογή" ++ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "ΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "διάστημα" ++ "Sym+" ++ "Menu+" ++ "Αναζήτηση…" ++ "Διαγραφή ερωτήματος" ++ "Ερώτημα αναζήτησης" ++ "Αναζήτηση" ++ "Υποβολή ερωτήματος" ++ "Φωνητική αναζήτηση" ++ "Κοινοποίηση σε" ++ "Κοινοποίηση στην εφαρμογή %s" ++ "Σύμπτυξη" ++ "Αναζήτηση" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml +new file mode 100644 +index 0000000..14b21fa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‎‎‎‎‏‏‎‏‎‏‏‎‎‏‎‎‎‏‎‏‎‏‏‏‎‏‎‎‎‎‏‏‎‏‏‏‏‏‏‎‎Navigate home‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‏‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‎‏‏‎‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‎‎‏‏‏‎‎‎‎‎Navigate up‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‎‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‎‏‎‏‏‏‏‏‎‏‎‎‏‎More options‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‎‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‎‎‏‏‏‎‎‎‎‏‎‎‎‏‏‏‎‎‏‎‎‎‏‎‎‎‎‎Done‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‎‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‎‎‎‏‏‎‏‏‏‎‎‎‎‏‏‏‎‎‏‎‎‎‎‏‏‏‎‏‏‎‏‎‏‎‏‎‎‎‎‏‎See all‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‎‏‎‏‎‎‏‏‎‏‏‎‏‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‎‏‎‎‏‎‏‎‎‎‎‎‎‎‎‎‎Choose an app‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‎‏‎‎‎‏‏‏‎‏‏‎‎‏‏‎‏‏‎‏‎‎‎‎‎‏‏‎‏‎‏‏‎‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‎‏‏‎OFF‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‎‎‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎ON‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‎‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‎‎‏‏‎‎‏‏‏‏‎‏‎‎Alt+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‎‏‏‏‏‎‎‏‎‎‎‏‎‎‏‎‏‎‎‎‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‎Ctrl+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‏‎‏‏‎‏‎‏‏‏‏‏‎‏‏‎‎‏‎‏‎‎‏‏‏‎‏‏‏‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎delete‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‎‏‎‏‏‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‏‏‎enter‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‎‏‎‎‏‏‎‏‎‏‎‎‎‎‎‏‏‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‏‎‎‏‏‎‎‏‎‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎Function+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‎‎‏‎‎‎‎‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‎‎Meta+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‎‎‏‎‎‎‏‏‎‎‎‎‏‏‎Shift+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‏‎‎‎‎‎‎‎‏‏‎‏‏‎‎‎‏‏‎‎‏‎‎‎‏‏‎‏‎‎‎‎‏‎‏‏‎‎space‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‏‏‏‎‎‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‏‏‏‏‏‎‏‎‎‎‎‎‎‎‎‎‎‎‏‎‎‎‏‎‎‏‏‎‏‏‏‎‎Sym+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‎‎‎‏‏‏‎‏‏‏‏‎‎‎‎‎‏‎‎‎‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎‎‏‏‏‏‎‏‏‏‏‏‎‎Menu+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‎‏‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‎‏‎‎‎‏‏‏‏‏‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‏‏‎‏‎‎‎Search…‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‏‏‏‎‏‎‏‏‎‏‎‏‎‎‎‏‎‎‏‏‏‏‎‎‎‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‏‏‏‎‎‏‏‎Clear query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‏‏‏‎‏‏‎‏‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‎Search query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‎‏‎‎‏‎‏‎‎‏‏‎‎‎‎‎‎‎‎‎‏‏‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‏‏‎‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‎‎‏‎‏‎‎‎‎‏‎‎‏‏‏‏‎‎‎‎‏‎‏‏‎‏‎‏‎‏‎‏‏‎‏‏‏‎‎‎‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‏‏‏‎Submit query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‏‏‎‏‏‎‏‏‎‎‎‏‎‏‏‏‏‏‎‏‏‎‎‎‏‏‎‏‏‎‏‎‎‎‎‏‎‎‎‏‎‎‏‎‏‏‏‎Voice search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‎‏‎‏‎‏‎‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‏‎‏‏‏‏‎‏‏‎‏‏‏‎Share with‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‏‎‏‎‏‎‏‏‎‎‎‏‏‎‏‏‏‎‎‏‎‏‎‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‎‎‏‏‏‎‎‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‏‎‏‎‎‏‏‎‏‏‏‎‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎Collapse‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‏‏‏‎‎‎‎‏‎‏‏‎‎‎‏‎‏‏‎‎‏‎‏‎‎‏‎‎‏‎‎‎‏‎‏‏‎‎‏‎‏‎‏‏‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +new file mode 100644 +index 0000000..47c7e5c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navegar a la página principal" ++ "Navegar hacia arriba" ++ "Más opciones" ++ "Listo" ++ "Ver todas" ++ "Elegir una app" ++ "DESACTIVAR" ++ "ACTIVAR" ++ "Alt+" ++ "Ctrl+" ++ "borrar" ++ "intro" ++ "Función+" ++ "Meta+" ++ "Mayúscula+" ++ "espacio" ++ "Sym+" ++ "Menú+" ++ "Buscar…" ++ "Borrar consulta" ++ "Búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Contraer" ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml +new file mode 100644 +index 0000000..086125a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Ir a inicio" ++ "Desplazarse hacia arriba" ++ "Más opciones" ++ "Hecho" ++ "Ver todo" ++ "Seleccionar una aplicación" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "Suprimir" ++ "Intro" ++ "Función +" ++ "Meta +" ++ "Mayús +" ++ "Espacio" ++ "Sym +" ++ "Menú +" ++ "Buscar…" ++ "Borrar consulta" ++ "Consulta de búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Ocultar" ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml +new file mode 100644 +index 0000000..f0d9121 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Liigu avalehele" ++ "Liigu üles" ++ "Rohkem valikuid" ++ "Valmis" ++ "Kuva kõik" ++ "Valige rakendus" ++ "VÄLJAS" ++ "SEES" ++ "Alt +" ++ "Ctrl +" ++ "kustuta" ++ "sisestusklahv" ++ "Funktsiooniklahv +" ++ "Meta +" ++ "Tõstuklahv +" ++ "tühik" ++ "Sym +" ++ "Menüü +" ++ "Otsige …" ++ "Päringu tühistamine" ++ "Otsingupäring" ++ "Otsing" ++ "Päringu esitamine" ++ "Häälotsing" ++ "Jaga:" ++ "Jagamine rakendusega %s" ++ "Ahendamine" ++ "Otsing" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +new file mode 100644 +index 0000000..1015ba8 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Joan orri nagusira" ++ "Joan gora" ++ "Aukera gehiago" ++ "Eginda" ++ "Ikusi guztiak" ++ "Aukeratu aplikazio bat" ++ "DESAKTIBATU" ++ "AKTIBATU" ++ "Alt +" ++ "Ktrl +" ++ "ezabatu" ++ "sartu" ++ "Funtzioa +" ++ "Meta +" ++ "Maius +" ++ "zuriunea" ++ "Sym +" ++ "Menua +" ++ "Bilatu…" ++ "Garbitu kontsulta" ++ "Bilaketa-kontsulta" ++ "Bilatu" ++ "Bidali kontsulta" ++ "Ahozko bilaketa" ++ "Partekatu honekin" ++ "Partekatu %s aplikazioarekin" ++ "Tolestu" ++ "Bilatu" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +new file mode 100644 +index 0000000..a21615c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "پیمایش به صفحه اصلی" ++ "رفتن به بالا" ++ "گزینه‌های بیشتر" ++ "تمام" ++ "دیدن همه" ++ "انتخاب برنامه" ++ "خاموش" ++ "روشن" ++ "‎Alt+‎" ++ "‎Ctrl+‎" ++ "حذف" ++ "enter" ++ "‎Function+‎" ++ "‎Meta+‎" ++ "‎Shift+‎" ++ "فاصله" ++ "‎Sym+‎" ++ "منو+" ++ "جستجو…‏" ++ "پاک کردن پُرسمان" ++ "درخواست جستجو" ++ "جستجو" ++ "ارسال پُرسمان" ++ "جستجوی گفتاری" ++ "هم‌رسانی با" ++ "هم‌رسانی با %s" ++ "کوچک کردن" ++ "جستجو" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +new file mode 100644 +index 0000000..74084f1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Siirry etusivulle" ++ "Siirry ylös" ++ "Lisäasetukset" ++ "Valmis" ++ "Näytä kaikki" ++ "Valitse sovellus" ++ "POIS PÄÄLTÄ" ++ "PÄÄLLÄ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Vaihto+" ++ "välilyönti" ++ "Sym+" ++ "Valikko+" ++ "Haku…" ++ "Tyhjennä kysely" ++ "Hakukysely" ++ "Haku" ++ "Lähetä kysely" ++ "Puhehaku" ++ "Jaa…" ++ "Jaa: %s" ++ "Tiivistä" ++ "Haku" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +new file mode 100644 +index 0000000..935b03e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Revenir à l\'accueil" ++ "Revenir en arrière" ++ "Autres options" ++ "Terminé" ++ "Tout afficher" ++ "Sélectionner une application" ++ "DÉSACTIVER" ++ "ACTIVER" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ "Rechercher" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +new file mode 100644 +index 0000000..6238d96 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Revenir à l\'accueil" ++ "Revenir en haut de la page" ++ "Autres options" ++ "OK" ++ "Tout afficher" ++ "Sélectionner une application" ++ "NON" ++ "OUI" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ "Rechercher" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +new file mode 100644 +index 0000000..12cb980 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Vai ao inicio" ++ "Vai cara arriba" ++ "Máis opcións" ++ "Feito" ++ "Ver todo" ++ "Selecciona unha aplicación" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "eliminar" ++ "intro" ++ "Función +" ++ "Meta +" ++ "Maiús +" ++ "espazo" ++ "Sym +" ++ "Menú +" ++ "Busca…" ++ "Borra a consulta" ++ "Busca a consulta" ++ "Realiza buscas" ++ "Envía a consulta" ++ "Busca por voz" ++ "Comparte contido con" ++ "Comparte contido coa aplicación %s" ++ "Contrae" ++ "Buscar" ++ ">999" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +new file mode 100644 +index 0000000..1148bc9 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "ઘરનો રસ્તો બતાવો" ++ "ઉપર નૅવિગેટ કરો" ++ "વધુ વિકલ્પો" ++ "થઈ ગયું" ++ "બધી જુઓ" ++ "ઍપ્લિકેશન પસંદ કરો" ++ "બંધ" ++ "ચાલુ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "શોધો…" ++ "ક્વેરી સાફ કરો" ++ "શોધ ક્વેરી" ++ "શોધો" ++ "ક્વેરી સબમિટ કરો" ++ "વૉઇસ શોધ" ++ "આની સાથે શેર કરો" ++ "%sની સાથે શેર કરો" ++ "સંકુચિત કરો" ++ "શોધો" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +new file mode 100644 +index 0000000..e38bb90 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 54dip ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +new file mode 100644 +index 0000000..d5a138e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +@@ -0,0 +1,8 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +new file mode 100644 +index 0000000..03aa7d1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "होम पेज पर जाएं" ++ "वापस जाएं" ++ "ज़्यादा विकल्प" ++ "हो गया" ++ "सभी देखें" ++ "कोई ऐप्लिकेशन चुनें" ++ "बंद" ++ "चालू" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "खोजें…" ++ "क्‍वेरी हटाएं" ++ "सर्च क्वेरी" ++ "खोजें" ++ "क्वेरी सबमिट करें" ++ "बोलकर खोजें" ++ "इससे शेयर करें:" ++ "%s से शेयर करें" ++ "छोटा करें" ++ "खोजें" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +new file mode 100644 +index 0000000..37e5c0a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Idi na početnu" ++ "Natrag" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odabir aplikacije" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "svemir" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Izbriši upit" ++ "Upit za pretraživanje" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli s" ++ "Dijeli putem aplikacije %s" ++ "Sažmi" ++ "Pretraži" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +new file mode 100644 +index 0000000..0fcd6d4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Ugrás a főoldalra" ++ "Fel" ++ "További lehetőségek" ++ "Kész" ++ "Az összes megtekintése" ++ "Válasszon alkalmazást" ++ "KI" ++ "BE" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Szóköz" ++ "Sym+" ++ "Menu+" ++ "Keresés…" ++ "Lekérdezés törlése" ++ "Keresési lekérdezés" ++ "Keresés" ++ "Lekérdezés küldése" ++ "Hangalapú keresés" ++ "Megosztás a következővel:" ++ "Megosztás a következő alkalmazással: %s" ++ "Összecsukás" ++ "Keresés" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +new file mode 100644 +index 0000000..c0dcbe4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Անցնել գլխավոր էջ" ++ "Անցնել վերև" ++ "Այլ ընտրանքներ" ++ "Պատրաստ է" ++ "Տեսնել բոլորը" ++ "Ընտրել հավելված" ++ "ԱՆՋԱՏԵԼ" ++ "ՄԻԱՑՆԵԼ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "բացատ" ++ "Sym+" ++ "Menu+" ++ "Որոնում…" ++ "Ջնջել հարցումը" ++ "Որոնման հարցում" ++ "Որոնել" ++ "Ուղարկել հարցումը" ++ "Ձայնային որոնում" ++ "Կիսվել…" ++ "Կիսվել %s հավելվածի միջոցով" ++ "Ծալել" ++ "Որոնել" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml +new file mode 100644 +index 0000000..29513d2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Tunjukkan jalan ke rumah" ++ "Kembali ke atas" ++ "Opsi lain" ++ "Selesai" ++ "Lihat semua" ++ "Pilih aplikasi" ++ "NONAKTIF" ++ "AKTIF" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "spasi" ++ "Sym+" ++ "Menu+" ++ "Telusuri..." ++ "Hapus kueri" ++ "Telusuri kueri" ++ "Telusuri" ++ "Kirim kueri" ++ "Penelusuran suara" ++ "Bagikan dengan" ++ "Bagikan dengan %s" ++ "Ciutkan" ++ "Telusuri" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml +new file mode 100644 +index 0000000..1d7b8aa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Fara heim" ++ "Fara upp" ++ "Fleiri valkostir" ++ "Lokið" ++ "Sjá allt" ++ "Veldu forrit" ++ "SLÖKKT" ++ "KVEIKT" ++ "Alt+" ++ "Ctrl+" ++ "eyða" ++ "enter" ++ "Aðgerðarlykill+" ++ "Meta+" ++ "Shift+" ++ "bilslá" ++ "Sym+" ++ "Valmynd+" ++ "Leita…" ++ "Hreinsa fyrirspurn" ++ "Leitarfyrirspurn" ++ "Leit" ++ "Senda fyrirspurn" ++ "Raddleit" ++ "Deila með" ++ "Deila með %s" ++ "Minnka" ++ "Leit" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml +new file mode 100644 +index 0000000..0876d05 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Portami a casa" ++ "Torna indietro" ++ "Altre opzioni" ++ "Fine" ++ "Mostra tutto" ++ "Scelta di un\'app" ++ "OFF" ++ "ON" ++ "ALT +" ++ "CTRL +" ++ "CANC" ++ "INVIO" ++ "FUNZIONE +" ++ "META +" ++ "MAIUSC +" ++ "SPAZIO" ++ "SYM +" ++ "MENU +" ++ "Cerca…" ++ "Cancella query" ++ "Query di ricerca" ++ "Cerca" ++ "Invia query" ++ "Ricerca vocale" ++ "Condividi con" ++ "Condividi tramite %s" ++ "Comprimi" ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +new file mode 100644 +index 0000000..f0a1c3a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "ניווט לדף הבית" ++ "ניווט למעלה" ++ "עוד אפשרויות" ++ "סיום" ++ "הצגת הכול" ++ "בחירת אפליקציה" ++ "כבוי" ++ "מופעל" ++ "Alt+" ++ "Ctrl+‎" ++ "מחיקה" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "רווח" ++ "Sym+" ++ "תפריט+" ++ "חיפוש…" ++ "מחיקת השאילתה" ++ "שאילתת חיפוש" ++ "חיפוש" ++ "שליחת שאילתה" ++ "חיפוש קולי" ++ "שיתוף עם" ++ "שיתוף עם %s" ++ "כיווץ" ++ "חיפוש" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +new file mode 100644 +index 0000000..3abbbc4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "ホームに戻る" ++ "前に戻る" ++ "その他のオプション" ++ "完了" ++ "すべて表示" ++ "アプリの選択" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Space" ++ "Sym+" ++ "Menu+" ++ "検索…" ++ "検索キーワードを削除" ++ "検索キーワード" ++ "検索" ++ "検索キーワードを送信" ++ "音声検索" ++ "共有" ++ "%sと共有" ++ "折りたたむ" ++ "検索" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +new file mode 100644 +index 0000000..0469550 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "მთავარზე გადასვლა" ++ "ზემოთ გადასვლა" ++ "სხვა ვარიანტები" ++ "მზადაა" ++ "ყველას ნახვა" ++ "აირჩიეთ აპი" ++ "გამორთვა" ++ "ჩართვა" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "შორისი" ++ "Sym+" ++ "Menu+" ++ "ძიება…" ++ "მოთხოვნის გასუფთავება" ++ "მოთხოვნის ძიება" ++ "ძიება" ++ "მოთხოვნის გადაგზავნა" ++ "ხმოვანი ძიება" ++ "გაზიარება:" ++ "%s-ით გაზიარება" ++ "ჩაკეცვა" ++ "ძიება" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +new file mode 100644 +index 0000000..7e9fffa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Негізгі бетке өту" ++ "Жоғары қарай өту" ++ "Басқа опциялар" ++ "Дайын" ++ "Барлығын көру" ++ "Қолданбаны таңдау" ++ "ӨШІРУ" ++ "ҚОСУ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "бос орын" ++ "Sym+" ++ "Menu+" ++ "Іздеу…" ++ "Сұрауды өшіру" ++ "Іздеу сұрауы" ++ "Іздеу" ++ "Сұрауды жіберу" ++ "Дауыспен іздеу" ++ "Бөлісу" ++ "%s қолданбасымен бөлісу" ++ "Жию" ++ "Іздеу" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml +new file mode 100644 +index 0000000..207f6f6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "​ទៅទំព័រដើម" ++ "រំកិលឡើងលើ" ++ "ជម្រើសច្រើនទៀត" ++ "រួចរាល់" ++ "មើលទាំងអស់" ++ "ជ្រើសរើស​កម្មវិធី​​" ++ "បិទ" ++ "បើក" ++ "Alt+" ++ "Ctrl+" ++ "លុប" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ស្វែងរក…" ++ "សម្អាត​សំណួរ" ++ "ស្វែងរកសំណួរ​" ++ "ស្វែងរក" ++ "ដាក់បញ្ជូន​សំណួរ" ++ "ស្វែងរក​តាម​សំឡេង" ++ "ចែករំលែក​ជា​មួយ" ++ "ចែក​រំលែក​ជា​មួយ %s" ++ "បង្រួម" ++ "ស្វែងរក" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +new file mode 100644 +index 0000000..84dcee6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "ಹೋಮ್‌ಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" ++ "ಮುಗಿದಿದೆ" ++ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" ++ "ಆ್ಯಪ್‌ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ" ++ "ಆಫ್" ++ "ಆನ್" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ಹುಡುಕಿ…" ++ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" ++ "ಹುಡುಕಿ" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸಿ" ++ "ಧ್ವನಿ ಹುಡುಕಾಟ" ++ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "ಕುಗ್ಗಿಸಿ" ++ "ಹುಡುಕಿ" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +new file mode 100644 +index 0000000..d92f75b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "홈으로 이동" ++ "위로 이동" ++ "추가 옵션" ++ "완료" ++ "전체 보기" ++ "앱 선택" ++ "사용 중지" ++ "사용" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "스페이스바" ++ "Sym+" ++ "Menu+" ++ "검색..." ++ "검색어 삭제" ++ "검색어" ++ "검색" ++ "검색어 보내기" ++ "음성 검색" ++ "공유 대상:" ++ "%s과(와) 공유" ++ "접기" ++ "검색" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +new file mode 100644 +index 0000000..a34668f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Башкы бетке чабыттоо" ++ "Мурунку экранга өтүү" ++ "Дагы параметрлер" ++ "Бүттү" ++ "Баарын көрүү" ++ "Колдонмо тандоо" ++ "ӨЧҮК" ++ "КҮЙҮК" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "боштук" ++ "Sym+" ++ "Menu+" ++ "Издөө…" ++ "Сурамды өчүрүү" ++ "Изделген сурам" ++ "Издөө" ++ "Сурам тапшыруу" ++ "Айтып издөө" ++ "Төмөнкү менен бөлүшүү" ++ "%s аркылуу бөлүшүү" ++ "Жыйыштыруу" ++ "Издөө" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml +new file mode 100644 +index 0000000..a12899f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml +@@ -0,0 +1,6 @@ ++ ++ ++ 48dp ++ 12dp ++ 14dp ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +new file mode 100644 +index 0000000..cc236eb +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml +@@ -0,0 +1,12 @@ ++ ++ ++ 440dp ++ 60% ++ 90% ++ 60% ++ 90% ++ 55% ++ 80% ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +new file mode 100644 +index 0000000..f85a197 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml +@@ -0,0 +1,62 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +new file mode 100644 +index 0000000..7dad77f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 0px ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +new file mode 100644 +index 0000000..9ee03e1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml +@@ -0,0 +1,277 @@ ++ ++ ++ @color/androidx_core_secondary_text_default_material_light ++ 0dp ++ 0dp ++ 12dp ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +new file mode 100644 +index 0000000..1ad118e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +new file mode 100644 +index 0000000..edb25cd +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml +@@ -0,0 +1,51 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml +new file mode 100644 +index 0000000..f9b3c08 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml +@@ -0,0 +1,5 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +new file mode 100644 +index 0000000..4c30667 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml +new file mode 100644 +index 0000000..99bddaa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Chỉ đường về nhà" ++ "Di chuyển lên" ++ "Tùy chọn khác" ++ "Xong" ++ "Xem tất cả" ++ "Chọn một ứng dụng" ++ "TẮT" ++ "BẬT" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Tìm kiếm…" ++ "Xóa truy vấn" ++ "Truy vấn tìm kiếm" ++ "Tìm kiếm" ++ "Gửi truy vấn" ++ "Tìm kiếm bằng giọng nói" ++ "Chia sẻ với" ++ "Chia sẻ với %s" ++ "Thu gọn" ++ "Tìm kiếm" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml +new file mode 100644 +index 0000000..2d85812 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml +@@ -0,0 +1,12 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml +new file mode 100644 +index 0000000..deecc9e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +new file mode 100644 +index 0000000..b499d2c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +@@ -0,0 +1,9 @@ ++ ++ ++ 60% ++ 90% ++ 50% ++ 70% ++ 45% ++ 72% ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +new file mode 100644 +index 0000000..2ef777a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "转到首页" ++ "转到上一层级" ++ "更多选项" ++ "完成" ++ "查看全部" ++ "选择应用" ++ "关闭" ++ "开启" ++ "Alt+" ++ "Ctrl+" ++ "Delete 键" ++ "Enter 键" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "空格键" ++ "Sym+" ++ "Menu+" ++ "搜索…" ++ "清除查询" ++ "搜索查询" ++ "搜索" ++ "提交查询" ++ "语音搜索" ++ "分享对象" ++ "与%s分享" ++ "收起" ++ "搜索" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +new file mode 100644 +index 0000000..95dfec1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "瀏覽主頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "刪除" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空白鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "使用「%s」分享" ++ "收合" ++ "搜尋" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +new file mode 100644 +index 0000000..78f2716 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "瀏覽首頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "Delete 鍵" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空格鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "與「%s」分享" ++ "收合" ++ "搜尋" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml +new file mode 100644 +index 0000000..d04e556 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Zulazulela ekhaya" ++ "Zulazulela phezulu" ++ "Ezinye izinketho" ++ "Kwenziwe" ++ "Buka konke" ++ "Khetha insiza" ++ "VALA" ++ "VULA" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Imenyu+" ++ "Sesha…" ++ "Sula inkinga" ++ "Sesha umbuzo" ++ "Sesha" ++ "Thumela umbuzo" ++ "Ukusesha ngezwi" ++ "Yabelana no" ++ "Yabelana ne-%s" ++ "Goqa" ++ "Sesha" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values/values.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..fd43196 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merged.dir/values/values.xml +@@ -0,0 +1,3558 @@ ++ ++ ++ ++ ++ ++ ++ ++ true ++ true ++ #ff000000 ++ #ffffffff ++ #7fa87f ++ @android:color/black ++ @android:color/black ++ @color/material_deep_teal_200 ++ @color/material_deep_teal_500 ++ #1f000000 ++ #8a000000 ++ @color/material_grey_800 ++ @android:color/white ++ @color/material_grey_850 ++ @color/material_grey_50 ++ #80ffffff ++ #80000000 ++ @color/bright_foreground_material_light ++ @color/bright_foreground_material_dark ++ @android:color/white ++ @android:color/black ++ #ff5a595b ++ #ffd6d7d7 ++ #ffffffff ++ #eecc0000 ++ #80bebebe ++ #80323232 ++ #ffbebebe ++ #ff323232 ++ #ff7043 ++ #ff5722 ++ @android:color/white ++ @android:color/black ++ #6680cbc4 ++ #66009688 ++ #ff37474f ++ #ff263238 ++ #ff21272b ++ #ff80cbc4 ++ #ff008577 ++ #fff5f5f5 ++ #ffe0e0e0 ++ #fffafafa ++ #ff757575 ++ #ff424242 ++ #ff303030 ++ #ff212121 ++ #ffffffff ++ #ff9e9e9e ++ @android:color/black ++ @color/material_grey_600 ++ @color/material_grey_900 ++ @color/material_grey_100 ++ #ffffffff ++ #de000000 ++ #4Dffffff ++ #39000000 ++ #33ffffff ++ #1f000000 ++ #b3ffffff ++ #8a000000 ++ #36ffffff ++ #24000000 ++ #ff616161 ++ #ffbdbdbd ++ #ffbdbdbd ++ #fff1f1f1 ++ #e6616161 ++ #e6FFFFFF ++ 16dp ++ 72dp ++ 56dp ++ 0dp ++ 0dp ++ 4dp ++ 16dp ++ 10dp ++ 6dp ++ 48dp ++ 180dp ++ 5dp ++ -3dp ++ 48dp ++ 48dp ++ 36dp ++ 48dp ++ 48dp ++ @dimen/abc_control_inset_material ++ 6dp ++ 8dp ++ @dimen/abc_control_padding_material ++ 720dp ++ 320dp ++ 2dp ++ 4dp ++ 4dp ++ 2dp ++ 80% ++ 100% ++ 320dp ++ 320dp ++ 8dp ++ 8dp ++ 65% ++ 95% ++ 24dp ++ 18dp ++ 8dp ++ 0.30 ++ 0.26 ++ 32dip ++ 8dip ++ 8dip ++ 7dp ++ 4dp ++ 10dp ++ 16dp ++ 80dp ++ 64dp ++ 48dp ++ @dimen/abc_action_bar_content_inset_material ++ 296dp ++ 4dp ++ 48dip ++ 320dip ++ 2dp ++ 2dp ++ 20dp ++ 48dp ++ 36dp ++ 16dp ++ 3dp ++ 14sp ++ 14sp ++ 14sp ++ 12sp ++ 34sp ++ 45sp ++ 56sp ++ 112sp ++ 24sp ++ 22sp ++ 18sp ++ 14sp ++ 16sp ++ 14sp ++ 16sp ++ 16dp ++ 20sp ++ 20dp ++ 20dp ++ 4dp ++ 6dp ++ 8dp ++ 4dp ++ 2dp ++ 320dp ++ 320dp ++ 0.30 ++ 0.26 ++ 0.26 ++ 0.20 ++ 0.12 ++ 0.50 ++ 0.38 ++ 0.70 ++ 0.54 ++ 32dp ++ 13sp ++ 12dp ++ 8dp ++ 64dp ++ 64dp ++ 10dp ++ @dimen/notification_content_margin_start ++ 16dp ++ 2dp ++ 3dp ++ 24dp ++ 13sp ++ 10dp ++ 5dp ++ 2dp ++ 16dp ++ 8dp ++ 8dp ++ 96dp ++ 6.5dp ++ 0dp ++ 16dp ++ #3333B5E5 ++ #0cffffff ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 220 ++ 150 ++ 127 ++ 150 ++ 8081 ++ 8081 ++ 999 ++ Navigate home ++ Navigate up ++ More options ++ Done ++ See all ++ Choose an app ++ OFF ++ ON ++ Alt+ ++ Ctrl+ ++ delete ++ enter ++ Function+ ++ Meta+ ++ Shift+ ++ space ++ Sym+ ++ Menu+ ++ Search… ++ Clear query ++ Search query ++ Search ++ Submit query ++ Voice search ++ Share with ++ Share with %s ++ Collapse ++ Alert ++ androidx.startup ++ Change Bundle Location ++ Copy\n ++ Debug ++ Debug with Chrome ++ Stop Chrome Debugging ++ Connecting to debugger... ++ Failed to connect to debugger! ++ Open Debugger ++ Stop Debugging ++ Open React DevTools ++ Dismiss\n(ESC) ++ Capture Heap ++ Enable Fast Refresh ++ Disabling Fast Refresh because it requires a development bundle. ++ Switching to development bundle in order to enable Fast Refresh. ++ Disable Fast Refresh ++ Show Element Inspector ++ Hide Element Inspector ++ Loading from %1$s… ++ Failed to open Flipper. Please check that Metro is running. ++ Show Perf Monitor ++ Hide Perf Monitor ++ Reload ++ Reload\n(R,\u00A0R) ++ Failed to load bundle. Try restarting the bundler or reconnecting your device. ++ Report ++ Disable Sampling Profiler ++ Enable Sampling Profiler ++ Settings ++ Debug Settings ++ Combo Box ++ Heading ++ Image ++ Button, Image ++ Link ++ Menu ++ Menu Bar ++ Menu Item ++ Progress Bar ++ Radio Group ++ Tab ++ Scroll Bar ++ Search ++ Spin Button ++ busy ++ collapsed ++ expanded ++ mixed ++ off ++ on ++ unselected ++ 999+ ++ Summary ++ Tab List ++ Timer ++ Tool Bar ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml +new file mode 100644 +index 0000000..049f62f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml +@@ -0,0 +1,4442 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ androidx.startup@color/androidx_core_secondary_text_default_material_light0dp0dp12dp"999+""999+"">999""999+"4dp"999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""९९९+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+"#1f000000#8a000000#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 24dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Gata""Afișați tot""Alegeți o aplicație""DEZACTIVAT""ACTIVAT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Termen de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți folosind %s""Restrângeți""Căutați""హోమ్‌కు నావిగేట్ చేస్తుంది""పైకి నావిగేట్ చేస్తుంది""మరిన్ని ఆప్షన్‌లు""పూర్తయింది""అన్నీ చూడండి""యాప్‌ను ఎంచుకోండి""ఆఫ్""ఆన్""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""స్పేస్""Sym+""Menu+""సెర్చ్ చేయండి…""ప్రశ్నను తీసివేస్తుంది""సెర్చ్ క్వెరీ""సెర్చ్""ప్రశ్నని సమర్పిస్తుంది""వాయిస్ సెర్చ్""వీరితో షేర్ చేస్తుంది""%sతో షేర్ చేస్తుంది""కుదిస్తుంది""సెర్చ్"0px"Перейти на главный экран""Перейти вверх""Ещё""Готово""Показать все""Выберите приложение""ВЫКЛ""ВКЛ""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Введите запрос""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Поделиться с помощью""Поделиться с помощью %s""Свернуть""Поиск""Mag-navigate sa home""Mag-navigate pataas""Higit pang opsyon""Tapos na""Tingnan lahat""Pumili ng app""I-OFF""I-ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Maghanap…""I-clear ang query""Query sa paghahanap""Maghanap""Isumite ang query""Paghahanap gamit ang boses""Ibahagi sa/kay""Ibahagi gamit ang %s""I-collapse""Maghanap""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""收合""搜尋""Portami a casa""Torna indietro""Altre opzioni""Fine""Mostra tutto""Scelta di un\'app""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""SPAZIO""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Cerca""Navega fins a la pàgina d\'inici""Navega cap amunt""Més opcions""Fet""Mostra-ho tot""Selecciona una aplicació""DESACTIVA""ACTIVA""Alt+""Ctrl+""Supr""Retorn""Funció+""Meta+""Maj+""Espai""Sym+""Menú+""Cerca…""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""eyða""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leit""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leit""Přejít na plochu""Přejít nahoru""Další možnosti""Hotovo""Zobrazit vše""Vybrat aplikaci""VYP""ZAP""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledat…""Smazat dotaz""Dotaz pro vyhledávání""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet s""Sdílet s aplikací %s""Sbalit""Hledat""转到首页""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享对象""与%s分享""收起""搜索""Tunjukkan jalan ke rumah""Kembali ke atas""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Telusuri kueri""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""ホームに戻る""前に戻る""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""Πλοήγηση στην αρχική σελίδα""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Εμφάνιση όλων""Επιλέξτε μια εφαρμογή""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""ΕΝΕΡΓΟΠΟΙΗΣΗ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""διάστημα""Sym+""Menu+""Αναζήτηση…""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινοποίηση σε""Κοινοποίηση στην εφαρμογή %s""Σύμπτυξη""Αναζήτηση""นำทางไปหน้าแรก""กลับ""ตัวเลือกอื่น""เสร็จ""ดูทั้งหมด""เลือกแอป""ปิด""เปิด""Alt+""Ctrl+""ลบ""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างคำค้นหา""คำค้นหา""ค้นหา""ส่งคำค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์ทาง %s""ยุบ""ค้นหา""پیمایش به صفحه اصلی""رفتن به بالا""گزینه‌های بیشتر""تمام""دیدن همه""انتخاب برنامه""خاموش""روشن""‎Alt+‎""‎Ctrl+‎""حذف""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""فاصله""‎Sym+‎""منو+""جستجو…‏""پاک کردن پُرسمان""درخواست جستجو""جستجو""ارسال پُرسمان""جستجوی گفتاری""هم‌رسانی با""هم‌رسانی با %s""کوچک کردن""جستجو""Eiti į pagrindinį puslapį""Naršyti aukštyn""Daugiau parinkčių""Atlikta""Žr. viską""Pasirinkite programą""IŠJUNGTI""ĮJUNGTI""„Alt“ +""„Ctrl“ +""„delete“""„enter“""„Function“ +""„Meta“ +""„Shift“ +""„space“""„Sym“ +""„Menu“ +""Ieškoti…""Išvalyti užklausą""Paieškos užklausa""Ieškoti""Pateikti užklausą""Paieška balsu""Bendrinti su""Bendrinti naudojant programą „%s“""Sutraukti""Ieškoti""ହୋମ୍ ପେଜ୍‌କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଅଧିକ ବିକଳ୍ପ""ହୋଇଗଲା""ସବୁ ଦେଖନ୍ତୁ""ଗୋଟିଏ ଆପ୍‍ ବାଛନ୍ତୁ""ବନ୍ଦ""ଚାଲୁ ଅଛି""Alt+""Ctrl+""ଡିଲିଟ୍‌ କରନ୍ତୁ""ଏଣ୍ଟର୍""Function+""Meta+""Shift+""ସ୍ପେସ୍‍""Sym+""ମେନୁ""ସର୍ଚ୍ଚ କରନ୍ତୁ…""କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ""ସର୍ଚ୍ଚ କ୍ୱେରୀ""ସନ୍ଧାନ କରନ୍ତୁ""କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ""ଭଏସ୍‌ ସର୍ଚ୍ଚ""ଏହାଙ୍କ ସହ ସେୟାର୍‌ କରନ୍ତୁ""%s ସହ ସେୟାର୍‍ କରନ୍ତୁ""ସଂକୁଚିତ କରନ୍ତୁ""ସନ୍ଧାନ କରନ୍ତୁ""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATU""AKTIBATU""Alt +""Ktrl +""ezabatu""sartu""Funtzioa +""Meta +""Maius +""zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu honekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""ກັບໄປໜ້າຫຼັກ""ເລື່ອນຂຶ້ນເທິງ""ຕົວເລືອກເພີ່ມເຕີມ""ແລ້ວໆ""ເບິ່ງທັງໝົດ""ເລືອກແອັບ""ປິດ""ເປີດ""Alt+""Ctrl+""ລຶບ""enter""Function+""Meta+""Shift+""ຍະຫວ່າງ""Sym+""Menu+""ຊອກຫາ…""ລຶບຂໍ້ຄວາມຊອກຫາ""ຄຳສຳລັບຄົ້ນຫາ""ຊອກຫາ""ສົ່ງຂໍ້ມູນ""ຊອກຫາດ້ວຍສຽງ""ແບ່ງປັນກັບ""ແບ່ງປັນດ້ວຍ %s""ຫຍໍ້ລົງ""ຊອກຫາ""ניווט לדף הבית""ניווט למעלה""עוד אפשרויות""סיום""הצגת הכול""בחירת אפליקציה""כבוי""מופעל""Alt+""Ctrl+‎""מחיקה""Enter""Function+""Meta+""Shift+""רווח""Sym+""תפריט+""חיפוש…""מחיקת השאילתה""שאילתת חיפוש""חיפוש""שליחת שאילתה""חיפוש קולי""שיתוף עם""שיתוף עם %s""כיווץ""חיפוש""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Siirry etusivulle""Siirry ylös""Lisäasetukset""Valmis""Näytä kaikki""Valitse sovellus""POIS PÄÄLTÄ""PÄÄLLÄ""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Vaihto+""välilyönti""Sym+""Valikko+""Haku…""Tyhjennä kysely""Hakukysely""Haku""Lähetä kysely""Puhehaku""Jaa…""Jaa: %s""Tiivistä""Haku" ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml +new file mode 100644 +index 0000000..659a32c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml +new file mode 100644 +index 0000000..b8a35f0 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml +new file mode 100644 +index 0000000..78ca898 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000..994a515 @@ -4166,6 +18656,33 @@ index 0000000..acc08a1 + + \ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt +new file mode 100644 +index 0000000..2038a2c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt +@@ -0,0 +1,13 @@ ++#Wed Apr 17 12:20:31 PKT 2024 ++path.3=4/classes.dex ++path.2=0/classes.dex ++path.1=0/classes.dex ++path.0=classes.dex ++base.3=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/4/classes.dex ++base.2=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex ++base.1=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/0/classes.dex ++base.0=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex ++renamed.3=classes4.dex ++renamed.2=classes3.dex ++renamed.1=classes2.dex ++renamed.0=classes.dex +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources +new file mode 100644 +index 0000000..788c9cd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 +new file mode 100644 +index 0000000..2b81175 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 differ diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000..9b07b6e @@ -4184,6 +18701,12406 @@ index 0000000..8fba594 + + \ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release-mergeJavaRes/merge-state b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..1c983fc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release-mergeJavaRes/merge-state differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties +new file mode 100644 +index 0000000..afb41d0 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/compile-file-map.properties +@@ -0,0 +1,356 @@ ++#Wed Apr 17 12:10:11 PKT 2024 ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_screen_content_include.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_screen_content_include.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_btn_borderless_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_borderless_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_background_cache_hint_selector_material_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_background_cache_hint_selector_material_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_hint_foreground_material_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_hint_foreground_material_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_background_cache_hint_selector_material_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_background_cache_hint_selector_material_light.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_tint_spinner.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_spinner.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_btn_colored_text_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_btn_colored_text_material.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/layout/notification_template_part_chronometer.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/notification_template_part_chronometer.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_radio_to_on_mtrl_dot_group_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_dot_group_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/select_dialog_item_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/select_dialog_item_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_tint_switch_track.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_switch_track.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable/notification_icon_background.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_icon_background.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout-watch-v20/abc_alert_dialog_title_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-watch-v20/abc_alert_dialog_title_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-v21/notification_action_background.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/notification_action_background.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/select_dialog_multichoice_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/select_dialog_multichoice_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_popup_exit.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_popup_exit.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ratingbar_indicator_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_indicator_material.xml ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/anim/catalyst_push_up_in.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_push_up_in.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_alert_dialog_title_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_alert_dialog_title_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-watch-v20/abc_dialog_material_background.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-watch-v20/abc_dialog_material_background.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_action_mode_bar.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_action_mode_bar.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_tab_indicator_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_tab_indicator_material.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-hdpi-v4/notification_bg_normal.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_normal.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/switch_thumb_material_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/switch_thumb_material_light.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/btn_radio_off_to_on_mtrl_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_off_to_on_mtrl_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/layout-v21/notification_template_icon_group.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_template_icon_group.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-mdpi-v4/notification_bg_low_normal.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_low_normal.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_slide_out_bottom.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_out_bottom.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/layout/notification_template_part_time.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/notification_template_part_time.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable/notification_bg_low.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_bg_low.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_tint_edittext.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_edittext.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_screen_simple_overlay_action_mode.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_screen_simple_overlay_action_mode.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_btn_colored_text_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_btn_colored_text_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_go_search_api_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_go_search_api_material.xml ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/drawable/redbox_top_border_background.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/redbox_top_border_background.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_voice_search_api_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_voice_search_api_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_primary_text_disable_only_material_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_disable_only_material_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_search_api_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_search_api_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/anim/catalyst_slide_up.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_slide_up.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_primary_text_material_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_material_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_primary_text_material_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_material_light.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/support_simple_spinner_dropdown_item.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/support_simple_spinner_dropdown_item.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_screen_toolbar.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_screen_toolbar.xml ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/anim/catalyst_fade_in.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_fade_in.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_action_menu_layout.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_action_menu_layout.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_star_black_48dp.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_star_black_48dp.xml ++com.oblador.vectoricons.react-native-vector-icons-fragment-1.3.6-1\:/animator/fragment_close_exit.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_close_exit.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_secondary_text_material_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_secondary_text_material_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/anim/catalyst_slide_down.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_slide_down.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable/notification_bg.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_bg.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-v21/abc_edit_text_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_edit_text_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_ab_back_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_ab_back_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v21/abc_btn_colored_borderless_text_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v21/abc_btn_colored_borderless_text_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/interpolator/fast_out_slow_in.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/fast_out_slow_in.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_action_menu_item_layout.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_action_menu_item_layout.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_switch_thumb_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_switch_thumb_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_search_view.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_search_view.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-v23/abc_control_background_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v23/abc_control_background_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_tint_seek_thumb.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_seek_thumb.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-mdpi-v4/notification_bg_normal.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_normal.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_list_selector_background_transition_holo_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_background_transition_holo_light.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/anim/catalyst_push_up_out.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_push_up_out.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_expanded_menu_layout.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_expanded_menu_layout.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_activity_chooser_view_list_item.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_activity_chooser_view_list_item.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_alert_dialog_button_bar_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_alert_dialog_button_bar_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_dialog_title_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_dialog_title_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_tint_edittext.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_edittext.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout-watch-v20/abc_alert_dialog_button_bar_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_screen_simple.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_screen_simple.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_btn_radio_material_anim.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_radio_material_anim.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-v21/abc_dialog_material_background.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_dialog_material_background.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_fade_out.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_fade_out.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/btn_radio_off_mtrl.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_off_mtrl.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/btn_checkbox_unchecked_mtrl.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_unchecked_mtrl.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_tooltip.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_tooltip.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_search_dropdown_item_icons_2line.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_search_dropdown_item_icons_2line.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/anim/catalyst_fade_out.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_fade_out.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_btn_radio_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_radio_material.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_menu_overflow_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_overflow_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/layout/fps_view.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/fps_view.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/select_dialog_singlechoice_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/select_dialog_singlechoice_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_slide_in_bottom.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_in_bottom.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_checkbox_to_checked_icon_null_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_icon_null_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_slide_in_top.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_in_top.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_cab_background_internal_bg.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_cab_background_internal_bg.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_search_url_text.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_search_url_text.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-autofill-1.1.0-4\:/layout/autofill_inline_suggestion.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/autofill_inline_suggestion.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_focused_holo.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_action_mode_close_item_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_action_mode_close_item_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_cab_background_top_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_cab_background_top_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_tooltip_enter.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_tooltip_enter.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_menu_selectall_mtrl_alpha.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_selectall_mtrl_alpha.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_grow_fade_in_from_bottom.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_grow_fade_in_from_bottom.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/tooltip_frame_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/tooltip_frame_light.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-v21/abc_action_bar_item_background_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_action_bar_item_background_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_popup_menu_header_item_layout.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_popup_menu_header_item_layout.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_item_background_holo_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_item_background_holo_light.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/layout-v21/notification_template_custom_big.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_template_custom_big.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/tooltip_frame_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/tooltip_frame_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_popup_enter.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_popup_enter.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-v21/abc_btn_colored_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_btn_colored_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_tint_btn_checkable.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_btn_checkable.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_list_selector_background_transition_holo_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_background_transition_holo_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/btn_radio_on_mtrl.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_on_mtrl.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_btn_colored_borderless_text_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_btn_colored_borderless_text_material.xml ++com.oblador.vectoricons.react-native-vector-icons-fragment-1.3.6-1\:/animator/fragment_close_enter.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_close_enter.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_fade_in.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_fade_in.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_seekbar_thumb_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_thumb_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_popup_menu_item_layout.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_popup_menu_item_layout.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_tint_spinner.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_spinner.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/menu/example_menu2.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/menu/example_menu2.xml ++com.oblador.vectoricons.react-native-vector-icons-fragment-1.3.6-1\:/anim-v21/fragment_fast_out_extra_slow_in.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim-v21/fragment_fast_out_extra_slow_in.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-fragment-1.3.6-1\:/animator/fragment_open_enter.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_open_enter.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-jetified-appcompat-resources-1.4.1-9\:/drawable/abc_vector_test.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_vector_test.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ratingbar_small_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_small_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_select_dialog_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_select_dialog_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_alert_dialog_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_alert_dialog_material.xml ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/xml/rn_dev_preferences.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/xml/rn_dev_preferences.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_text_cursor_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_text_cursor_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_list_menu_item_radio.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_list_menu_item_radio.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_clear_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_clear_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_star_half_black_48dp.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_star_half_black_48dp.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_item_background_holo_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_item_background_holo_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_menu_share_mtrl_alpha.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_share_mtrl_alpha.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/test_level_drawable.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/test_level_drawable.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_cascading_menu_item_layout.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_cascading_menu_item_layout.xml ++com.oblador.vectoricons.react-native-vector-icons-fragment-1.3.6-1\:/animator/fragment_open_exit.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_open_exit.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_checkbox_to_unchecked_icon_null_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_icon_null_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ratingbar_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_tint_seek_thumb.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_seek_thumb.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_tooltip_exit.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_tooltip_exit.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-hdpi-v4/notification_bg_low_normal.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_low_normal.9.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/layout/dev_loading_view.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/dev_loading_view.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_seekbar_tick_mark_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_tick_mark_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_action_bar_title_item.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_action_bar_title_item.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_shrink_fade_out_from_bottom.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_shrink_fade_out_from_bottom.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_list_selector_holo_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_holo_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_focused_holo.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/layout-v21/notification_action.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_action.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_hint_foreground_material_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_hint_foreground_material_light.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/layout/redbox_item_frame.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/redbox_item_frame.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_list_menu_item_icon.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_list_menu_item_icon.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/switch_thumb_material_dark.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/switch_thumb_material_dark.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_secondary_text_material_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_secondary_text_material_light.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/layout/redbox_view.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/redbox_view.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_btn_check_material_anim.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_check_material_anim.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_list_menu_item_layout.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_list_menu_item_layout.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable/notification_tile_bg.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_tile_bg.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/layout/custom_dialog.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/custom_dialog.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-v21/abc_list_divider_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_list_divider_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_radio_to_off_mtrl_dot_group_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_dot_group_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/btn_radio_on_to_off_mtrl_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_on_to_off_mtrl_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_textfield_search_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_textfield_search_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_action_bar_up_container.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_action_bar_up_container.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_seekbar_track_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_track_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/abc_slide_out_top.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_out_top.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-autofill-1.1.0-4\:/drawable-v29/autofill_inline_suggestion_chip_background.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v29/autofill_inline_suggestion_chip_background.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_list_menu_item_checkbox.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_list_menu_item_checkbox.xml ++com.oblador.vectoricons.react-native-vector-icons-fragment-1.3.6-1\:/animator/fragment_fade_exit.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_fade_exit.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/layout-v21/notification_action_tombstone.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_action_tombstone.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_tint_btn_checkable.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_btn_checkable.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_tint_switch_track.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_switch_track.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-jetified-react-android-0.72.0-release-10\:/layout/redbox_item_title.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/redbox_item_title.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-xhdpi-v4/notification_bg_normal.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_normal.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-fragment-1.3.6-1\:/animator/fragment_fade_enter.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_fade_enter.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_tint_default.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_default.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout-v26/abc_screen_toolbar.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v26/abc_screen_toolbar.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_btn_check_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_check_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/btn_checkbox_checked_mtrl.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_checked_mtrl.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_btn_default_mtrl_shape.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_default_mtrl_shape.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color/abc_primary_text_disable_only_material_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_disable_only_material_light.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_spinner_textfield_background_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_spinner_textfield_background_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_color_highlight_material.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_color_highlight_material.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/layout/abc_activity_chooser_view.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout/abc_activity_chooser_view.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/menu/example_menu.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/menu/example_menu.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_ic_menu_cut_mtrl_alpha.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_cut_mtrl_alpha.xml ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable/abc_list_selector_holo_light.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_holo_light.xml ++com.oblador.vectoricons.react-native-vector-icons-core-1.7.0-11\:/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png ++com.oblador.vectoricons.react-native-vector-icons-appcompat-1.4.1-3\:/color-v23/abc_tint_default.xml=/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_default.xml +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml +new file mode 100644 +index 0000000..304fd2e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-af/values-af.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Gaan na tuisskerm" ++ "Gaan op" ++ "Nog opsies" ++ "Klaar" ++ "Sien alles" ++ "Kies \'n program" ++ "AF" ++ "AAN" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Funksie+" ++ "Meta+" ++ "Shift+" ++ "spasiebalk" ++ "Simbool+" ++ "Kieslys+" ++ "Soek …" ++ "Vee navraag uit" ++ "Soektognavraag" ++ "Soek" ++ "Dien navraag in" ++ "Stemsoektog" ++ "Deel met" ++ "Deel met %s" ++ "Vou in" ++ "Soek" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml +new file mode 100644 +index 0000000..88b54b7 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-am/values-am.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "መነሻ ዳስስ" ++ "ወደ ላይ ያስሱ" ++ "ተጨማሪ አማራጮች" ++ "ተከናውኗል" ++ "ሁሉንም ይመልከቱ" ++ "አንድ መተግበሪያ ይምረጡ" ++ "አጥፋ" ++ "አብራ" ++ "Alt+" ++ "Ctrl+" ++ "ሰርዝ" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "ክፍተት" ++ "Sym+" ++ "Menu+" ++ "ይፈልጉ…" ++ "መጠይቅ አጽዳ" ++ "የፍለጋ መጠይቅ" ++ "ፍለጋ" ++ "መጠይቅ አስገባ" ++ "የድምጽ ፍለጋ" ++ "አጋራ በ" ++ "ለ%s አጋራ" ++ "ሰብስብ" ++ "ፍለጋ" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml +new file mode 100644 +index 0000000..83cb0df +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ar/values-ar.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "التوجه إلى المنزل" ++ "التنقل إلى أعلى" ++ "خيارات أكثر" ++ "تم" ++ "عرض الكل" ++ "اختيار تطبيق" ++ "إيقاف" ++ "مفعّلة" ++ "Alt+" ++ "Ctrl+" ++ "حذف" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "فضاء" ++ "Sym+" ++ "القائمة+" ++ "بحث…" ++ "محو طلب البحث" ++ "طلب بحث" ++ "البحث" ++ "إرسال طلب البحث" ++ "بحث صوتي" ++ "مشاركة مع" ++ "مشاركة مع %s" ++ "تصغير" ++ "البحث" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml +new file mode 100644 +index 0000000..2a889e2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-as/values-as.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "গৃহ পৃষ্ঠালৈ যাওক" ++ "ওপৰলৈ যাওক" ++ "অধিক বিকল্প" ++ "সম্পন্ন হ’ল" ++ "সকলো চাওক" ++ "কোনো এপ্ বাছনি কৰক" ++ "অফ" ++ "অন" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সন্ধান কৰক…" ++ "সন্ধান কৰা প্ৰশ্ন মচক" ++ "সন্ধান কৰা প্ৰশ্ন" ++ "সন্ধান কৰক" ++ "প্ৰশ্ন দাখিল কৰক" ++ "কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান" ++ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" ++ "সংকোচন কৰক" ++ "সন্ধান" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml +new file mode 100644 +index 0000000..8f27789 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-az/values-az.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Əsas səhifəyə keçin" ++ "Yuxarı keçin" ++ "Digər seçimlər" ++ "Hazırdır" ++ "Hamısına baxın" ++ "Tətbiq seçin" ++ "DEAKTİV" ++ "AKTİV" ++ "Alt+" ++ "Ctrl+" ++ "silin" ++ "daxil olun" ++ "Funksiya+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menyu+" ++ "Axtarış..." ++ "Sorğunu silin" ++ "Axtarış sorğusu" ++ "Axtarın" ++ "Sorğunu göndərin" ++ "Səsli axtarış" ++ "Paylaşın" ++ "%s ilə paylaşın" ++ "Yığcamlaşdırın" ++ "Axtarın" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +new file mode 100644 +index 0000000..1742b18 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Idite na početnu" ++ "Idite nagore" ++ "Još opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Izaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "taster za razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Obrišite upit" ++ "Pretražite upit" ++ "Pretražite" ++ "Pošaljite upit" ++ "Glasovna pretraga" ++ "Delite pomoću" ++ "Delite pomoću aplikacije %s" ++ "Skupi" ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml +new file mode 100644 +index 0000000..0cd2a62 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-be/values-be.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Перайсці на галоўную старонку" ++ "Перайсці ўверх" ++ "Дадатковыя параметры" ++ "Гатова" ++ "Паказаць усе" ++ "Выберыце праграму" ++ "ВЫКЛ." ++ "УКЛ." ++ "Alt +" ++ "Ctrl +" ++ "Delete" ++ "Enter" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "Прабел" ++ "Sym +" ++ "Меню +" ++ "Пошук…" ++ "Выдаліць запыт" ++ "Пошукавы запыт" ++ "Пошук" ++ "Адправіць запыт" ++ "Галасавы пошук" ++ "Абагуліць праз" ++ "Абагуліць праз праграму \"%s\"" ++ "Згарнуць" ++ "Пошук" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml +new file mode 100644 +index 0000000..31c32cb +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bg/values-bg.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Навигиране към началния екран" ++ "Навигиране нагоре" ++ "Още опции" ++ "Готово" ++ "Преглед на всички" ++ "Изберете приложение" ++ "ИЗКЛ." ++ "ВКЛ." ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "клавиша за интервал" ++ "Sym+" ++ "Menu+" ++ "Търсете…" ++ "Изчистване на заявката" ++ "Заявка за търсене" ++ "Търсене" ++ "Изпращане на заявката" ++ "Гласово търсене" ++ "Споделяне със:" ++ "Споделяне със: %s" ++ "Свиване" ++ "Търсене" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml +new file mode 100644 +index 0000000..65c84be +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bn/values-bn.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "হোমে নেভিগেট করুন" ++ "উপরে নেভিগেট করুন" ++ "আরও বিকল্প" ++ "হয়ে গেছে" ++ "সবগুলি দেখুন" ++ "একটি অ্যাপ বেছে নিন" ++ "বন্ধ আছে" ++ "চালু করুন" ++ "Alt+" ++ "Ctrl+" ++ "মুছুন" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "সার্চ করুন…" ++ "কোয়েরি মুছে ফেলুন" ++ "সার্চ কোয়েরি" ++ "সার্চ করুন" ++ "কোয়েরি জমা দিন" ++ "ভয়েস সার্চ করুন" ++ "শেয়ার করুন" ++ "%s-এর সাথে শেয়ার করুন" ++ "সঙ্কুচিত করুন" ++ "সার্চ করুন" ++ "৯৯৯+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml +new file mode 100644 +index 0000000..008ce54 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-bs/values-bs.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Vratite se na početnu stranicu" ++ "Idi gore" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odaberite aplikaciju" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "razmak" ++ "Sym+" ++ "Menu+" ++ "Pretražite..." ++ "Obriši upit" ++ "Pretraži upit" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli sa" ++ "Dijeli putem aplikacije %s" ++ "Suzi" ++ "Pretražite" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml +new file mode 100644 +index 0000000..c47fac8 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ca/values-ca.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navega fins a la pàgina d\'inici" ++ "Navega cap amunt" ++ "Més opcions" ++ "Fet" ++ "Mostra-ho tot" ++ "Selecciona una aplicació" ++ "DESACTIVA" ++ "ACTIVA" ++ "Alt+" ++ "Ctrl+" ++ "Supr" ++ "Retorn" ++ "Funció+" ++ "Meta+" ++ "Maj+" ++ "Espai" ++ "Sym+" ++ "Menú+" ++ "Cerca…" ++ "Esborra la consulta" ++ "Consulta de cerca" ++ "Cerca" ++ "Envia la consulta" ++ "Cerca per veu" ++ "Comparteix amb" ++ "Comparteix amb %s" ++ "Replega" ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml +new file mode 100644 +index 0000000..606075a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-cs/values-cs.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Přejít na plochu" ++ "Přejít nahoru" ++ "Další možnosti" ++ "Hotovo" ++ "Zobrazit vše" ++ "Vybrat aplikaci" ++ "VYP" ++ "ZAP" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mezerník" ++ "Sym+" ++ "Menu+" ++ "Vyhledat…" ++ "Smazat dotaz" ++ "Dotaz pro vyhledávání" ++ "Hledat" ++ "Odeslat dotaz" ++ "Hlasové vyhledávání" ++ "Sdílet s" ++ "Sdílet s aplikací %s" ++ "Sbalit" ++ "Hledat" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml +new file mode 100644 +index 0000000..6c4307e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-da/values-da.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Find hjem" ++ "Gå op" ++ "Flere valgmuligheder" ++ "Udfør" ++ "Se alle" ++ "Vælg en app" ++ "FRA" ++ "TIL" ++ "Alt+" ++ "Ctrl+" ++ "slet" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "mellemrum" ++ "Sym+" ++ "Menu+" ++ "Søg…" ++ "Ryd forespørgsel" ++ "Søgeforespørgsel" ++ "Søg" ++ "Indsend forespørgsel" ++ "Talesøgning" ++ "Del med" ++ "Del med %s" ++ "Skjul" ++ "Søg" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml +new file mode 100644 +index 0000000..a96e870 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-de/values-de.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Zur Startseite" ++ "Nach oben" ++ "Weitere Optionen" ++ "Fertig" ++ "Alle anzeigen" ++ "App auswählen" ++ "AUS" ++ "AN" ++ "Alt +" ++ "Strg +" ++ "Löschen" ++ "Eingabetaste" ++ "Funktionstaste +" ++ "Meta-Taste +" ++ "Umschalttaste +" ++ "Leertaste" ++ "Sym-Taste +" ++ "Menütaste +" ++ "Suchen…" ++ "Suchanfrage löschen" ++ "Suchanfrage" ++ "Suche" ++ "Anfrage senden" ++ "Sprachsuche" ++ "Teilen mit" ++ "Mit %s teilen" ++ "Minimieren" ++ "Suche" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml +new file mode 100644 +index 0000000..4ebd780 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-el/values-el.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Πλοήγηση στην αρχική σελίδα" ++ "Πλοήγηση προς τα επάνω" ++ "Περισσότερες επιλογές" ++ "Τέλος" ++ "Εμφάνιση όλων" ++ "Επιλέξτε μια εφαρμογή" ++ "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "ΕΝΕΡΓΟΠΟΙΗΣΗ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "διάστημα" ++ "Sym+" ++ "Menu+" ++ "Αναζήτηση…" ++ "Διαγραφή ερωτήματος" ++ "Ερώτημα αναζήτησης" ++ "Αναζήτηση" ++ "Υποβολή ερωτήματος" ++ "Φωνητική αναζήτηση" ++ "Κοινοποίηση σε" ++ "Κοινοποίηση στην εφαρμογή %s" ++ "Σύμπτυξη" ++ "Αναζήτηση" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml +new file mode 100644 +index 0000000..78c5a56 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navigate home" ++ "Navigate up" ++ "More options" ++ "Done" ++ "See all" ++ "Choose an app" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Search…" ++ "Clear query" ++ "Search query" ++ "Search" ++ "Submit query" ++ "Voice search" ++ "Share with" ++ "Share with %s" ++ "Collapse" ++ "Search" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml +new file mode 100644 +index 0000000..14b21fa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‎‎‎‎‏‏‎‏‎‏‏‎‎‏‎‎‎‏‎‏‎‏‏‏‎‏‎‎‎‎‏‏‎‏‏‏‏‏‏‎‎Navigate home‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‏‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‎‏‏‎‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‎‎‏‏‏‎‎‎‎‎Navigate up‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‎‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‎‏‎‏‏‏‏‏‎‏‎‎‏‎More options‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‎‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‎‎‏‏‏‎‎‎‎‏‎‎‎‏‏‏‎‎‏‎‎‎‏‎‎‎‎‎Done‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‎‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‎‎‎‏‏‎‏‏‏‎‎‎‎‏‏‏‎‎‏‎‎‎‎‏‏‏‎‏‏‎‏‎‏‎‏‎‎‎‎‏‎See all‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‎‏‎‏‎‎‏‏‎‏‏‎‏‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‎‏‎‎‏‎‏‎‎‎‎‎‎‎‎‎‎Choose an app‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‎‏‎‎‎‏‏‏‎‏‏‎‎‏‏‎‏‏‎‏‎‎‎‎‎‏‏‎‏‎‏‏‎‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‎‏‏‎OFF‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‎‎‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎ON‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‎‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‎‎‏‏‎‎‏‏‏‏‎‏‎‎Alt+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‎‏‏‏‏‎‎‏‎‎‎‏‎‎‏‎‏‎‎‎‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‎Ctrl+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‏‎‏‏‎‏‎‏‏‏‏‏‎‏‏‎‎‏‎‏‎‎‏‏‏‎‏‏‏‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎delete‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‎‏‎‏‏‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‏‏‎enter‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‎‏‎‎‏‏‎‏‎‏‎‎‎‎‎‏‏‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‏‎‎‏‏‎‎‏‎‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎Function+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‎‎‏‎‎‎‎‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‎‎Meta+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‎‎‏‎‎‎‏‏‎‎‎‎‏‏‎Shift+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‏‎‎‎‎‎‎‎‏‏‎‏‏‎‎‎‏‏‎‎‏‎‎‎‏‏‎‏‎‎‎‎‏‎‏‏‎‎space‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‏‏‏‎‎‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‏‏‏‏‏‎‏‎‎‎‎‎‎‎‎‎‎‎‏‎‎‎‏‎‎‏‏‎‏‏‏‎‎Sym+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‎‎‎‏‏‏‎‏‏‏‏‎‎‎‎‎‏‎‎‎‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎‎‏‏‏‏‎‏‏‏‏‏‎‎Menu+‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‎‏‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‎‏‎‎‎‏‏‏‏‏‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‏‏‎‏‎‎‎Search…‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‏‏‏‎‏‎‏‏‎‏‎‏‎‎‎‏‎‎‏‏‏‏‎‎‎‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‏‏‏‎‎‏‏‎Clear query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‏‏‏‎‏‏‎‏‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‎Search query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‎‏‎‎‏‎‏‎‎‏‏‎‎‎‎‎‎‎‎‎‏‏‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‏‏‎‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‎‎‏‎‏‎‎‎‎‏‎‎‏‏‏‏‎‎‎‎‏‎‏‏‎‏‎‏‎‏‎‏‏‎‏‏‏‎‎‎‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‏‏‏‎Submit query‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‏‏‎‏‏‎‏‏‎‎‎‏‎‏‏‏‏‏‎‏‏‎‎‎‏‏‎‏‏‎‏‎‎‎‎‏‎‎‎‏‎‎‏‎‏‏‏‎Voice search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‎‏‎‏‎‏‎‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‏‎‏‏‏‏‎‏‏‎‏‏‏‎Share with‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‏‎‏‎‏‎‏‏‎‎‎‏‏‎‏‏‏‎‎‏‎‏‎‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‎‎‏‏‏‎‎‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‏‎‏‎‎‏‏‎‏‏‏‎‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎Collapse‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‏‏‏‎‎‎‎‏‎‏‏‎‎‎‏‎‏‏‎‎‏‎‏‎‎‏‎‎‏‎‎‎‏‎‏‏‎‎‏‎‏‎‏‏‎‎‎Search‎‏‎‎‏‎" ++ "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml +new file mode 100644 +index 0000000..47c7e5c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Navegar a la página principal" ++ "Navegar hacia arriba" ++ "Más opciones" ++ "Listo" ++ "Ver todas" ++ "Elegir una app" ++ "DESACTIVAR" ++ "ACTIVAR" ++ "Alt+" ++ "Ctrl+" ++ "borrar" ++ "intro" ++ "Función+" ++ "Meta+" ++ "Mayúscula+" ++ "espacio" ++ "Sym+" ++ "Menú+" ++ "Buscar…" ++ "Borrar consulta" ++ "Búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Contraer" ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml +new file mode 100644 +index 0000000..086125a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-es/values-es.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Ir a inicio" ++ "Desplazarse hacia arriba" ++ "Más opciones" ++ "Hecho" ++ "Ver todo" ++ "Seleccionar una aplicación" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "Suprimir" ++ "Intro" ++ "Función +" ++ "Meta +" ++ "Mayús +" ++ "Espacio" ++ "Sym +" ++ "Menú +" ++ "Buscar…" ++ "Borrar consulta" ++ "Consulta de búsqueda" ++ "Buscar" ++ "Enviar consulta" ++ "Búsqueda por voz" ++ "Compartir con" ++ "Compartir con %s" ++ "Ocultar" ++ "Buscar" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml +new file mode 100644 +index 0000000..f0d9121 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-et/values-et.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Liigu avalehele" ++ "Liigu üles" ++ "Rohkem valikuid" ++ "Valmis" ++ "Kuva kõik" ++ "Valige rakendus" ++ "VÄLJAS" ++ "SEES" ++ "Alt +" ++ "Ctrl +" ++ "kustuta" ++ "sisestusklahv" ++ "Funktsiooniklahv +" ++ "Meta +" ++ "Tõstuklahv +" ++ "tühik" ++ "Sym +" ++ "Menüü +" ++ "Otsige …" ++ "Päringu tühistamine" ++ "Otsingupäring" ++ "Otsing" ++ "Päringu esitamine" ++ "Häälotsing" ++ "Jaga:" ++ "Jagamine rakendusega %s" ++ "Ahendamine" ++ "Otsing" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml +new file mode 100644 +index 0000000..1015ba8 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-eu/values-eu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Joan orri nagusira" ++ "Joan gora" ++ "Aukera gehiago" ++ "Eginda" ++ "Ikusi guztiak" ++ "Aukeratu aplikazio bat" ++ "DESAKTIBATU" ++ "AKTIBATU" ++ "Alt +" ++ "Ktrl +" ++ "ezabatu" ++ "sartu" ++ "Funtzioa +" ++ "Meta +" ++ "Maius +" ++ "zuriunea" ++ "Sym +" ++ "Menua +" ++ "Bilatu…" ++ "Garbitu kontsulta" ++ "Bilaketa-kontsulta" ++ "Bilatu" ++ "Bidali kontsulta" ++ "Ahozko bilaketa" ++ "Partekatu honekin" ++ "Partekatu %s aplikazioarekin" ++ "Tolestu" ++ "Bilatu" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml +new file mode 100644 +index 0000000..a21615c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fa/values-fa.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "پیمایش به صفحه اصلی" ++ "رفتن به بالا" ++ "گزینه‌های بیشتر" ++ "تمام" ++ "دیدن همه" ++ "انتخاب برنامه" ++ "خاموش" ++ "روشن" ++ "‎Alt+‎" ++ "‎Ctrl+‎" ++ "حذف" ++ "enter" ++ "‎Function+‎" ++ "‎Meta+‎" ++ "‎Shift+‎" ++ "فاصله" ++ "‎Sym+‎" ++ "منو+" ++ "جستجو…‏" ++ "پاک کردن پُرسمان" ++ "درخواست جستجو" ++ "جستجو" ++ "ارسال پُرسمان" ++ "جستجوی گفتاری" ++ "هم‌رسانی با" ++ "هم‌رسانی با %s" ++ "کوچک کردن" ++ "جستجو" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml +new file mode 100644 +index 0000000..74084f1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fi/values-fi.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Siirry etusivulle" ++ "Siirry ylös" ++ "Lisäasetukset" ++ "Valmis" ++ "Näytä kaikki" ++ "Valitse sovellus" ++ "POIS PÄÄLTÄ" ++ "PÄÄLLÄ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Fn+" ++ "Meta+" ++ "Vaihto+" ++ "välilyönti" ++ "Sym+" ++ "Valikko+" ++ "Haku…" ++ "Tyhjennä kysely" ++ "Hakukysely" ++ "Haku" ++ "Lähetä kysely" ++ "Puhehaku" ++ "Jaa…" ++ "Jaa: %s" ++ "Tiivistä" ++ "Haku" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +new file mode 100644 +index 0000000..935b03e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Revenir à l\'accueil" ++ "Revenir en arrière" ++ "Autres options" ++ "Terminé" ++ "Tout afficher" ++ "Sélectionner une application" ++ "DÉSACTIVER" ++ "ACTIVER" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ "Rechercher" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml +new file mode 100644 +index 0000000..6238d96 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-fr/values-fr.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Revenir à l\'accueil" ++ "Revenir en haut de la page" ++ "Autres options" ++ "OK" ++ "Tout afficher" ++ "Sélectionner une application" ++ "NON" ++ "OUI" ++ "Alt+" ++ "Ctrl+" ++ "supprimer" ++ "entrée" ++ "Fonction+" ++ "Méta+" ++ "Maj+" ++ "espace" ++ "Sym+" ++ "Menu+" ++ "Rechercher…" ++ "Effacer la requête" ++ "Requête de recherche" ++ "Rechercher" ++ "Envoyer la requête" ++ "Recherche vocale" ++ "Partager avec" ++ "Partager avec %s" ++ "Réduire" ++ "Rechercher" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml +new file mode 100644 +index 0000000..12cb980 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gl/values-gl.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Vai ao inicio" ++ "Vai cara arriba" ++ "Máis opcións" ++ "Feito" ++ "Ver todo" ++ "Selecciona unha aplicación" ++ "DESACTIVADO" ++ "ACTIVADO" ++ "Alt +" ++ "Ctrl +" ++ "eliminar" ++ "intro" ++ "Función +" ++ "Meta +" ++ "Maiús +" ++ "espazo" ++ "Sym +" ++ "Menú +" ++ "Busca…" ++ "Borra a consulta" ++ "Busca a consulta" ++ "Realiza buscas" ++ "Envía a consulta" ++ "Busca por voz" ++ "Comparte contido con" ++ "Comparte contido coa aplicación %s" ++ "Contrae" ++ "Buscar" ++ ">999" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml +new file mode 100644 +index 0000000..1148bc9 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-gu/values-gu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "ઘરનો રસ્તો બતાવો" ++ "ઉપર નૅવિગેટ કરો" ++ "વધુ વિકલ્પો" ++ "થઈ ગયું" ++ "બધી જુઓ" ++ "ઍપ્લિકેશન પસંદ કરો" ++ "બંધ" ++ "ચાલુ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "શોધો…" ++ "ક્વેરી સાફ કરો" ++ "શોધ ક્વેરી" ++ "શોધો" ++ "ક્વેરી સબમિટ કરો" ++ "વૉઇસ શોધ" ++ "આની સાથે શેર કરો" ++ "%sની સાથે શેર કરો" ++ "સંકુચિત કરો" ++ "શોધો" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +new file mode 100644 +index 0000000..e38bb90 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 54dip ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +new file mode 100644 +index 0000000..d5a138e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +@@ -0,0 +1,8 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml +new file mode 100644 +index 0000000..03aa7d1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hi/values-hi.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "होम पेज पर जाएं" ++ "वापस जाएं" ++ "ज़्यादा विकल्प" ++ "हो गया" ++ "सभी देखें" ++ "कोई ऐप्लिकेशन चुनें" ++ "बंद" ++ "चालू" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "खोजें…" ++ "क्‍वेरी हटाएं" ++ "सर्च क्वेरी" ++ "खोजें" ++ "क्वेरी सबमिट करें" ++ "बोलकर खोजें" ++ "इससे शेयर करें:" ++ "%s से शेयर करें" ++ "छोटा करें" ++ "खोजें" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml +new file mode 100644 +index 0000000..37e5c0a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hr/values-hr.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Idi na početnu" ++ "Natrag" ++ "Više opcija" ++ "Gotovo" ++ "Prikaži sve" ++ "Odabir aplikacije" ++ "ISKLJUČENO" ++ "UKLJUČENO" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "svemir" ++ "Sym+" ++ "Menu+" ++ "Pretražite…" ++ "Izbriši upit" ++ "Upit za pretraživanje" ++ "Pretraži" ++ "Pošalji upit" ++ "Glasovno pretraživanje" ++ "Dijeli s" ++ "Dijeli putem aplikacije %s" ++ "Sažmi" ++ "Pretraži" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml +new file mode 100644 +index 0000000..0fcd6d4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hu/values-hu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Ugrás a főoldalra" ++ "Fel" ++ "További lehetőségek" ++ "Kész" ++ "Az összes megtekintése" ++ "Válasszon alkalmazást" ++ "KI" ++ "BE" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Szóköz" ++ "Sym+" ++ "Menu+" ++ "Keresés…" ++ "Lekérdezés törlése" ++ "Keresési lekérdezés" ++ "Keresés" ++ "Lekérdezés küldése" ++ "Hangalapú keresés" ++ "Megosztás a következővel:" ++ "Megosztás a következő alkalmazással: %s" ++ "Összecsukás" ++ "Keresés" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml +new file mode 100644 +index 0000000..c0dcbe4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-hy/values-hy.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Անցնել գլխավոր էջ" ++ "Անցնել վերև" ++ "Այլ ընտրանքներ" ++ "Պատրաստ է" ++ "Տեսնել բոլորը" ++ "Ընտրել հավելված" ++ "ԱՆՋԱՏԵԼ" ++ "ՄԻԱՑՆԵԼ" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "բացատ" ++ "Sym+" ++ "Menu+" ++ "Որոնում…" ++ "Ջնջել հարցումը" ++ "Որոնման հարցում" ++ "Որոնել" ++ "Ուղարկել հարցումը" ++ "Ձայնային որոնում" ++ "Կիսվել…" ++ "Կիսվել %s հավելվածի միջոցով" ++ "Ծալել" ++ "Որոնել" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml +new file mode 100644 +index 0000000..29513d2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-in/values-in.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Tunjukkan jalan ke rumah" ++ "Kembali ke atas" ++ "Opsi lain" ++ "Selesai" ++ "Lihat semua" ++ "Pilih aplikasi" ++ "NONAKTIF" ++ "AKTIF" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "spasi" ++ "Sym+" ++ "Menu+" ++ "Telusuri..." ++ "Hapus kueri" ++ "Telusuri kueri" ++ "Telusuri" ++ "Kirim kueri" ++ "Penelusuran suara" ++ "Bagikan dengan" ++ "Bagikan dengan %s" ++ "Ciutkan" ++ "Telusuri" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml +new file mode 100644 +index 0000000..1d7b8aa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-is/values-is.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Fara heim" ++ "Fara upp" ++ "Fleiri valkostir" ++ "Lokið" ++ "Sjá allt" ++ "Veldu forrit" ++ "SLÖKKT" ++ "KVEIKT" ++ "Alt+" ++ "Ctrl+" ++ "eyða" ++ "enter" ++ "Aðgerðarlykill+" ++ "Meta+" ++ "Shift+" ++ "bilslá" ++ "Sym+" ++ "Valmynd+" ++ "Leita…" ++ "Hreinsa fyrirspurn" ++ "Leitarfyrirspurn" ++ "Leit" ++ "Senda fyrirspurn" ++ "Raddleit" ++ "Deila með" ++ "Deila með %s" ++ "Minnka" ++ "Leit" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml +new file mode 100644 +index 0000000..0876d05 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-it/values-it.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Portami a casa" ++ "Torna indietro" ++ "Altre opzioni" ++ "Fine" ++ "Mostra tutto" ++ "Scelta di un\'app" ++ "OFF" ++ "ON" ++ "ALT +" ++ "CTRL +" ++ "CANC" ++ "INVIO" ++ "FUNZIONE +" ++ "META +" ++ "MAIUSC +" ++ "SPAZIO" ++ "SYM +" ++ "MENU +" ++ "Cerca…" ++ "Cancella query" ++ "Query di ricerca" ++ "Cerca" ++ "Invia query" ++ "Ricerca vocale" ++ "Condividi con" ++ "Condividi tramite %s" ++ "Comprimi" ++ "Cerca" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml +new file mode 100644 +index 0000000..f0a1c3a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-iw/values-iw.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "ניווט לדף הבית" ++ "ניווט למעלה" ++ "עוד אפשרויות" ++ "סיום" ++ "הצגת הכול" ++ "בחירת אפליקציה" ++ "כבוי" ++ "מופעל" ++ "Alt+" ++ "Ctrl+‎" ++ "מחיקה" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "רווח" ++ "Sym+" ++ "תפריט+" ++ "חיפוש…" ++ "מחיקת השאילתה" ++ "שאילתת חיפוש" ++ "חיפוש" ++ "שליחת שאילתה" ++ "חיפוש קולי" ++ "שיתוף עם" ++ "שיתוף עם %s" ++ "כיווץ" ++ "חיפוש" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml +new file mode 100644 +index 0000000..3abbbc4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ja/values-ja.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "ホームに戻る" ++ "前に戻る" ++ "その他のオプション" ++ "完了" ++ "すべて表示" ++ "アプリの選択" ++ "OFF" ++ "ON" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "Space" ++ "Sym+" ++ "Menu+" ++ "検索…" ++ "検索キーワードを削除" ++ "検索キーワード" ++ "検索" ++ "検索キーワードを送信" ++ "音声検索" ++ "共有" ++ "%sと共有" ++ "折りたたむ" ++ "検索" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml +new file mode 100644 +index 0000000..0469550 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ka/values-ka.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "მთავარზე გადასვლა" ++ "ზემოთ გადასვლა" ++ "სხვა ვარიანტები" ++ "მზადაა" ++ "ყველას ნახვა" ++ "აირჩიეთ აპი" ++ "გამორთვა" ++ "ჩართვა" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "შორისი" ++ "Sym+" ++ "Menu+" ++ "ძიება…" ++ "მოთხოვნის გასუფთავება" ++ "მოთხოვნის ძიება" ++ "ძიება" ++ "მოთხოვნის გადაგზავნა" ++ "ხმოვანი ძიება" ++ "გაზიარება:" ++ "%s-ით გაზიარება" ++ "ჩაკეცვა" ++ "ძიება" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml +new file mode 100644 +index 0000000..7e9fffa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kk/values-kk.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Негізгі бетке өту" ++ "Жоғары қарай өту" ++ "Басқа опциялар" ++ "Дайын" ++ "Барлығын көру" ++ "Қолданбаны таңдау" ++ "ӨШІРУ" ++ "ҚОСУ" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "бос орын" ++ "Sym+" ++ "Menu+" ++ "Іздеу…" ++ "Сұрауды өшіру" ++ "Іздеу сұрауы" ++ "Іздеу" ++ "Сұрауды жіберу" ++ "Дауыспен іздеу" ++ "Бөлісу" ++ "%s қолданбасымен бөлісу" ++ "Жию" ++ "Іздеу" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml +new file mode 100644 +index 0000000..207f6f6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-km/values-km.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "​ទៅទំព័រដើម" ++ "រំកិលឡើងលើ" ++ "ជម្រើសច្រើនទៀត" ++ "រួចរាល់" ++ "មើលទាំងអស់" ++ "ជ្រើសរើស​កម្មវិធី​​" ++ "បិទ" ++ "បើក" ++ "Alt+" ++ "Ctrl+" ++ "លុប" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ស្វែងរក…" ++ "សម្អាត​សំណួរ" ++ "ស្វែងរកសំណួរ​" ++ "ស្វែងរក" ++ "ដាក់បញ្ជូន​សំណួរ" ++ "ស្វែងរក​តាម​សំឡេង" ++ "ចែករំលែក​ជា​មួយ" ++ "ចែក​រំលែក​ជា​មួយ %s" ++ "បង្រួម" ++ "ស្វែងរក" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml +new file mode 100644 +index 0000000..84dcee6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-kn/values-kn.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "ಹೋಮ್‌ಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" ++ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" ++ "ಮುಗಿದಿದೆ" ++ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" ++ "ಆ್ಯಪ್‌ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ" ++ "ಆಫ್" ++ "ಆನ್" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "ಹುಡುಕಿ…" ++ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" ++ "ಹುಡುಕಿ" ++ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸಿ" ++ "ಧ್ವನಿ ಹುಡುಕಾಟ" ++ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" ++ "ಕುಗ್ಗಿಸಿ" ++ "ಹುಡುಕಿ" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml +new file mode 100644 +index 0000000..d92f75b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ko/values-ko.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "홈으로 이동" ++ "위로 이동" ++ "추가 옵션" ++ "완료" ++ "전체 보기" ++ "앱 선택" ++ "사용 중지" ++ "사용" ++ "Alt+" ++ "Ctrl+" ++ "Delete" ++ "Enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "스페이스바" ++ "Sym+" ++ "Menu+" ++ "검색..." ++ "검색어 삭제" ++ "검색어" ++ "검색" ++ "검색어 보내기" ++ "음성 검색" ++ "공유 대상:" ++ "%s과(와) 공유" ++ "접기" ++ "검색" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml +new file mode 100644 +index 0000000..a34668f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-ky/values-ky.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Башкы бетке чабыттоо" ++ "Мурунку экранга өтүү" ++ "Дагы параметрлер" ++ "Бүттү" ++ "Баарын көрүү" ++ "Колдонмо тандоо" ++ "ӨЧҮК" ++ "КҮЙҮК" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "боштук" ++ "Sym+" ++ "Menu+" ++ "Издөө…" ++ "Сурамды өчүрүү" ++ "Изделген сурам" ++ "Издөө" ++ "Сурам тапшыруу" ++ "Айтып издөө" ++ "Төмөнкү менен бөлүшүү" ++ "%s аркылуу бөлүшүү" ++ "Жыйыштыруу" ++ "Издөө" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-land/values-land.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-land/values-land.xml +new file mode 100644 +index 0000000..a12899f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-land/values-land.xml +@@ -0,0 +1,6 @@ ++ ++ ++ 48dp ++ 12dp ++ 14dp ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml +new file mode 100644 +index 0000000..cc236eb +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml +@@ -0,0 +1,12 @@ ++ ++ ++ 440dp ++ 60% ++ 90% ++ 60% ++ 90% ++ 55% ++ 80% ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v17/values-v17.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v17/values-v17.xml +new file mode 100644 +index 0000000..f85a197 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v17/values-v17.xml +@@ -0,0 +1,62 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v18/values-v18.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v18/values-v18.xml +new file mode 100644 +index 0000000..7dad77f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v18/values-v18.xml +@@ -0,0 +1,4 @@ ++ ++ ++ 0px ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v21/values-v21.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v21/values-v21.xml +new file mode 100644 +index 0000000..9ee03e1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v21/values-v21.xml +@@ -0,0 +1,277 @@ ++ ++ ++ @color/androidx_core_secondary_text_default_material_light ++ 0dp ++ 0dp ++ 12dp ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v22/values-v22.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v22/values-v22.xml +new file mode 100644 +index 0000000..1ad118e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v22/values-v22.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v23/values-v23.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v23/values-v23.xml +new file mode 100644 +index 0000000..edb25cd +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v23/values-v23.xml +@@ -0,0 +1,51 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v24/values-v24.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v24/values-v24.xml +new file mode 100644 +index 0000000..f9b3c08 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v24/values-v24.xml +@@ -0,0 +1,5 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v26/values-v26.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v26/values-v26.xml +new file mode 100644 +index 0000000..4c30667 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-v26/values-v26.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml +new file mode 100644 +index 0000000..99bddaa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-vi/values-vi.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Chỉ đường về nhà" ++ "Di chuyển lên" ++ "Tùy chọn khác" ++ "Xong" ++ "Xem tất cả" ++ "Chọn một ứng dụng" ++ "TẮT" ++ "BẬT" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Menu+" ++ "Tìm kiếm…" ++ "Xóa truy vấn" ++ "Truy vấn tìm kiếm" ++ "Tìm kiếm" ++ "Gửi truy vấn" ++ "Tìm kiếm bằng giọng nói" ++ "Chia sẻ với" ++ "Chia sẻ với %s" ++ "Thu gọn" ++ "Tìm kiếm" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml +new file mode 100644 +index 0000000..2d85812 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml +@@ -0,0 +1,12 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml +new file mode 100644 +index 0000000..deecc9e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +new file mode 100644 +index 0000000..b499d2c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +@@ -0,0 +1,9 @@ ++ ++ ++ 60% ++ 90% ++ 50% ++ 70% ++ 45% ++ 72% ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +new file mode 100644 +index 0000000..2ef777a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "转到首页" ++ "转到上一层级" ++ "更多选项" ++ "完成" ++ "查看全部" ++ "选择应用" ++ "关闭" ++ "开启" ++ "Alt+" ++ "Ctrl+" ++ "Delete 键" ++ "Enter 键" ++ "Fn+" ++ "Meta+" ++ "Shift+" ++ "空格键" ++ "Sym+" ++ "Menu+" ++ "搜索…" ++ "清除查询" ++ "搜索查询" ++ "搜索" ++ "提交查询" ++ "语音搜索" ++ "分享对象" ++ "与%s分享" ++ "收起" ++ "搜索" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +new file mode 100644 +index 0000000..95dfec1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "瀏覽主頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "刪除" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空白鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "使用「%s」分享" ++ "收合" ++ "搜尋" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +new file mode 100644 +index 0000000..78f2716 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "瀏覽首頁" ++ "向上瀏覽" ++ "更多選項" ++ "完成" ++ "查看全部" ++ "選擇應用程式" ++ "關閉" ++ "開啟" ++ "Alt +" ++ "Ctrl +" ++ "Delete 鍵" ++ "Enter 鍵" ++ "Fn +" ++ "Meta +" ++ "Shift +" ++ "空格鍵" ++ "Sym +" ++ "Menu +" ++ "搜尋…" ++ "清除查詢" ++ "搜尋查詢" ++ "搜尋" ++ "提交查詢" ++ "語音搜尋" ++ "分享對象" ++ "與「%s」分享" ++ "收合" ++ "搜尋" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml +new file mode 100644 +index 0000000..d04e556 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values-zu/values-zu.xml +@@ -0,0 +1,32 @@ ++ ++ ++ "Zulazulela ekhaya" ++ "Zulazulela phezulu" ++ "Ezinye izinketho" ++ "Kwenziwe" ++ "Buka konke" ++ "Khetha insiza" ++ "VALA" ++ "VULA" ++ "Alt+" ++ "Ctrl+" ++ "delete" ++ "enter" ++ "Function+" ++ "Meta+" ++ "Shift+" ++ "space" ++ "Sym+" ++ "Imenyu+" ++ "Sesha…" ++ "Sula inkinga" ++ "Sesha umbuzo" ++ "Sesha" ++ "Thumela umbuzo" ++ "Ukusesha ngezwi" ++ "Yabelana no" ++ "Yabelana ne-%s" ++ "Goqa" ++ "Sesha" ++ "999+" ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..fd43196 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merged.dir/values/values.xml +@@ -0,0 +1,3558 @@ ++ ++ ++ ++ ++ ++ ++ ++ true ++ true ++ #ff000000 ++ #ffffffff ++ #7fa87f ++ @android:color/black ++ @android:color/black ++ @color/material_deep_teal_200 ++ @color/material_deep_teal_500 ++ #1f000000 ++ #8a000000 ++ @color/material_grey_800 ++ @android:color/white ++ @color/material_grey_850 ++ @color/material_grey_50 ++ #80ffffff ++ #80000000 ++ @color/bright_foreground_material_light ++ @color/bright_foreground_material_dark ++ @android:color/white ++ @android:color/black ++ #ff5a595b ++ #ffd6d7d7 ++ #ffffffff ++ #eecc0000 ++ #80bebebe ++ #80323232 ++ #ffbebebe ++ #ff323232 ++ #ff7043 ++ #ff5722 ++ @android:color/white ++ @android:color/black ++ #6680cbc4 ++ #66009688 ++ #ff37474f ++ #ff263238 ++ #ff21272b ++ #ff80cbc4 ++ #ff008577 ++ #fff5f5f5 ++ #ffe0e0e0 ++ #fffafafa ++ #ff757575 ++ #ff424242 ++ #ff303030 ++ #ff212121 ++ #ffffffff ++ #ff9e9e9e ++ @android:color/black ++ @color/material_grey_600 ++ @color/material_grey_900 ++ @color/material_grey_100 ++ #ffffffff ++ #de000000 ++ #4Dffffff ++ #39000000 ++ #33ffffff ++ #1f000000 ++ #b3ffffff ++ #8a000000 ++ #36ffffff ++ #24000000 ++ #ff616161 ++ #ffbdbdbd ++ #ffbdbdbd ++ #fff1f1f1 ++ #e6616161 ++ #e6FFFFFF ++ 16dp ++ 72dp ++ 56dp ++ 0dp ++ 0dp ++ 4dp ++ 16dp ++ 10dp ++ 6dp ++ 48dp ++ 180dp ++ 5dp ++ -3dp ++ 48dp ++ 48dp ++ 36dp ++ 48dp ++ 48dp ++ @dimen/abc_control_inset_material ++ 6dp ++ 8dp ++ @dimen/abc_control_padding_material ++ 720dp ++ 320dp ++ 2dp ++ 4dp ++ 4dp ++ 2dp ++ 80% ++ 100% ++ 320dp ++ 320dp ++ 8dp ++ 8dp ++ 65% ++ 95% ++ 24dp ++ 18dp ++ 8dp ++ 0.30 ++ 0.26 ++ 32dip ++ 8dip ++ 8dip ++ 7dp ++ 4dp ++ 10dp ++ 16dp ++ 80dp ++ 64dp ++ 48dp ++ @dimen/abc_action_bar_content_inset_material ++ 296dp ++ 4dp ++ 48dip ++ 320dip ++ 2dp ++ 2dp ++ 20dp ++ 48dp ++ 36dp ++ 16dp ++ 3dp ++ 14sp ++ 14sp ++ 14sp ++ 12sp ++ 34sp ++ 45sp ++ 56sp ++ 112sp ++ 24sp ++ 22sp ++ 18sp ++ 14sp ++ 16sp ++ 14sp ++ 16sp ++ 16dp ++ 20sp ++ 20dp ++ 20dp ++ 4dp ++ 6dp ++ 8dp ++ 4dp ++ 2dp ++ 320dp ++ 320dp ++ 0.30 ++ 0.26 ++ 0.26 ++ 0.20 ++ 0.12 ++ 0.50 ++ 0.38 ++ 0.70 ++ 0.54 ++ 32dp ++ 13sp ++ 12dp ++ 8dp ++ 64dp ++ 64dp ++ 10dp ++ @dimen/notification_content_margin_start ++ 16dp ++ 2dp ++ 3dp ++ 24dp ++ 13sp ++ 10dp ++ 5dp ++ 2dp ++ 16dp ++ 8dp ++ 8dp ++ 96dp ++ 6.5dp ++ 0dp ++ 16dp ++ #3333B5E5 ++ #0cffffff ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 220 ++ 150 ++ 127 ++ 150 ++ 8081 ++ 8081 ++ 999 ++ Navigate home ++ Navigate up ++ More options ++ Done ++ See all ++ Choose an app ++ OFF ++ ON ++ Alt+ ++ Ctrl+ ++ delete ++ enter ++ Function+ ++ Meta+ ++ Shift+ ++ space ++ Sym+ ++ Menu+ ++ Search… ++ Clear query ++ Search query ++ Search ++ Submit query ++ Voice search ++ Share with ++ Share with %s ++ Collapse ++ Alert ++ androidx.startup ++ Change Bundle Location ++ Copy\n ++ Debug ++ Debug with Chrome ++ Stop Chrome Debugging ++ Connecting to debugger... ++ Failed to connect to debugger! ++ Open Debugger ++ Stop Debugging ++ Open React DevTools ++ Dismiss\n(ESC) ++ Capture Heap ++ Enable Fast Refresh ++ Disabling Fast Refresh because it requires a development bundle. ++ Switching to development bundle in order to enable Fast Refresh. ++ Disable Fast Refresh ++ Show Element Inspector ++ Hide Element Inspector ++ Loading from %1$s… ++ Failed to open Flipper. Please check that Metro is running. ++ Show Perf Monitor ++ Hide Perf Monitor ++ Reload ++ Reload\n(R,\u00A0R) ++ Failed to load bundle. Try restarting the bundler or reconnecting your device. ++ Report ++ Disable Sampling Profiler ++ Enable Sampling Profiler ++ Settings ++ Debug Settings ++ Combo Box ++ Heading ++ Image ++ Button, Image ++ Link ++ Menu ++ Menu Bar ++ Menu Item ++ Progress Bar ++ Radio Group ++ Tab ++ Scroll Bar ++ Search ++ Spin Button ++ busy ++ collapsed ++ expanded ++ mixed ++ off ++ on ++ unselected ++ 999+ ++ Summary ++ Tab List ++ Timer ++ Tool Bar ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merger.xml b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merger.xml +new file mode 100644 +index 0000000..34b6393 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/mergeReleaseResources/merger.xml +@@ -0,0 +1,4442 @@ ++ ++@color/androidx_core_secondary_text_default_material_light0dp0dp12dp"999+""999+"">999""999+"4dp"999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""९९९+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+"#1f000000#8a000000#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 24dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Gata""Afișați tot""Alegeți o aplicație""DEZACTIVAT""ACTIVAT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Termen de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți folosind %s""Restrângeți""Căutați""హోమ్‌కు నావిగేట్ చేస్తుంది""పైకి నావిగేట్ చేస్తుంది""మరిన్ని ఆప్షన్‌లు""పూర్తయింది""అన్నీ చూడండి""యాప్‌ను ఎంచుకోండి""ఆఫ్""ఆన్""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""స్పేస్""Sym+""Menu+""సెర్చ్ చేయండి…""ప్రశ్నను తీసివేస్తుంది""సెర్చ్ క్వెరీ""సెర్చ్""ప్రశ్నని సమర్పిస్తుంది""వాయిస్ సెర్చ్""వీరితో షేర్ చేస్తుంది""%sతో షేర్ చేస్తుంది""కుదిస్తుంది""సెర్చ్"0px"Перейти на главный экран""Перейти вверх""Ещё""Готово""Показать все""Выберите приложение""ВЫКЛ""ВКЛ""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Введите запрос""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Поделиться с помощью""Поделиться с помощью %s""Свернуть""Поиск""Mag-navigate sa home""Mag-navigate pataas""Higit pang opsyon""Tapos na""Tingnan lahat""Pumili ng app""I-OFF""I-ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Maghanap…""I-clear ang query""Query sa paghahanap""Maghanap""Isumite ang query""Paghahanap gamit ang boses""Ibahagi sa/kay""Ibahagi gamit ang %s""I-collapse""Maghanap""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""收合""搜尋""Portami a casa""Torna indietro""Altre opzioni""Fine""Mostra tutto""Scelta di un\'app""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""SPAZIO""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Cerca""Navega fins a la pàgina d\'inici""Navega cap amunt""Més opcions""Fet""Mostra-ho tot""Selecciona una aplicació""DESACTIVA""ACTIVA""Alt+""Ctrl+""Supr""Retorn""Funció+""Meta+""Maj+""Espai""Sym+""Menú+""Cerca…""Esborra la consulta""Consulta de cerca""Cerca""Envia la consulta""Cerca per veu""Comparteix amb""Comparteix amb %s""Replega""Cerca""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""eyða""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leit""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leit""Přejít na plochu""Přejít nahoru""Další možnosti""Hotovo""Zobrazit vše""Vybrat aplikaci""VYP""ZAP""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledat…""Smazat dotaz""Dotaz pro vyhledávání""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet s""Sdílet s aplikací %s""Sbalit""Hledat""转到首页""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享对象""与%s分享""收起""搜索""Tunjukkan jalan ke rumah""Kembali ke atas""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Telusuri kueri""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""ホームに戻る""前に戻る""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""Πλοήγηση στην αρχική σελίδα""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Εμφάνιση όλων""Επιλέξτε μια εφαρμογή""ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ""ΕΝΕΡΓΟΠΟΙΗΣΗ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""διάστημα""Sym+""Menu+""Αναζήτηση…""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινοποίηση σε""Κοινοποίηση στην εφαρμογή %s""Σύμπτυξη""Αναζήτηση""นำทางไปหน้าแรก""กลับ""ตัวเลือกอื่น""เสร็จ""ดูทั้งหมด""เลือกแอป""ปิด""เปิด""Alt+""Ctrl+""ลบ""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างคำค้นหา""คำค้นหา""ค้นหา""ส่งคำค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์ทาง %s""ยุบ""ค้นหา""پیمایش به صفحه اصلی""رفتن به بالا""گزینه‌های بیشتر""تمام""دیدن همه""انتخاب برنامه""خاموش""روشن""‎Alt+‎""‎Ctrl+‎""حذف""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""فاصله""‎Sym+‎""منو+""جستجو…‏""پاک کردن پُرسمان""درخواست جستجو""جستجو""ارسال پُرسمان""جستجوی گفتاری""هم‌رسانی با""هم‌رسانی با %s""کوچک کردن""جستجو""Eiti į pagrindinį puslapį""Naršyti aukštyn""Daugiau parinkčių""Atlikta""Žr. viską""Pasirinkite programą""IŠJUNGTI""ĮJUNGTI""„Alt“ +""„Ctrl“ +""„delete“""„enter“""„Function“ +""„Meta“ +""„Shift“ +""„space“""„Sym“ +""„Menu“ +""Ieškoti…""Išvalyti užklausą""Paieškos užklausa""Ieškoti""Pateikti užklausą""Paieška balsu""Bendrinti su""Bendrinti naudojant programą „%s“""Sutraukti""Ieškoti""ହୋମ୍ ପେଜ୍‌କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଅଧିକ ବିକଳ୍ପ""ହୋଇଗଲା""ସବୁ ଦେଖନ୍ତୁ""ଗୋଟିଏ ଆପ୍‍ ବାଛନ୍ତୁ""ବନ୍ଦ""ଚାଲୁ ଅଛି""Alt+""Ctrl+""ଡିଲିଟ୍‌ କରନ୍ତୁ""ଏଣ୍ଟର୍""Function+""Meta+""Shift+""ସ୍ପେସ୍‍""Sym+""ମେନୁ""ସର୍ଚ୍ଚ କରନ୍ତୁ…""କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ""ସର୍ଚ୍ଚ କ୍ୱେରୀ""ସନ୍ଧାନ କରନ୍ତୁ""କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ""ଭଏସ୍‌ ସର୍ଚ୍ଚ""ଏହାଙ୍କ ସହ ସେୟାର୍‌ କରନ୍ତୁ""%s ସହ ସେୟାର୍‍ କରନ୍ତୁ""ସଂକୁଚିତ କରନ୍ତୁ""ସନ୍ଧାନ କରନ୍ତୁ""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATU""AKTIBATU""Alt +""Ktrl +""ezabatu""sartu""Funtzioa +""Meta +""Maius +""zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu honekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""ກັບໄປໜ້າຫຼັກ""ເລື່ອນຂຶ້ນເທິງ""ຕົວເລືອກເພີ່ມເຕີມ""ແລ້ວໆ""ເບິ່ງທັງໝົດ""ເລືອກແອັບ""ປິດ""ເປີດ""Alt+""Ctrl+""ລຶບ""enter""Function+""Meta+""Shift+""ຍະຫວ່າງ""Sym+""Menu+""ຊອກຫາ…""ລຶບຂໍ້ຄວາມຊອກຫາ""ຄຳສຳລັບຄົ້ນຫາ""ຊອກຫາ""ສົ່ງຂໍ້ມູນ""ຊອກຫາດ້ວຍສຽງ""ແບ່ງປັນກັບ""ແບ່ງປັນດ້ວຍ %s""ຫຍໍ້ລົງ""ຊອກຫາ""ניווט לדף הבית""ניווט למעלה""עוד אפשרויות""סיום""הצגת הכול""בחירת אפליקציה""כבוי""מופעל""Alt+""Ctrl+‎""מחיקה""Enter""Function+""Meta+""Shift+""רווח""Sym+""תפריט+""חיפוש…""מחיקת השאילתה""שאילתת חיפוש""חיפוש""שליחת שאילתה""חיפוש קולי""שיתוף עם""שיתוף עם %s""כיווץ""חיפוש""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Siirry etusivulle""Siirry ylös""Lisäasetukset""Valmis""Näytä kaikki""Valitse sovellus""POIS PÄÄLTÄ""PÄÄLLÄ""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Vaihto+""välilyönti""Sym+""Valikko+""Haku…""Tyhjennä kysely""Hakukysely""Haku""Lähetä kysely""Puhehaku""Jaa…""Jaa: %s""Tiivistä""Haku" ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties b/node_modules/react-native-vector-icons/android/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties new file mode 100644 index 0000000..8bd53b5 @@ -4216,6 +31133,10 @@ diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/ new file mode 100644 index 0000000..07a935e Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/javac/debug/classes/com/oblador/vectoricons/VectorIconsPackage.class differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/javac/debugAndroidTest/classes/com/oblador/vectoricons/test/BuildConfig.class b/node_modules/react-native-vector-icons/android/build/intermediates/javac/debugAndroidTest/classes/com/oblador/vectoricons/test/BuildConfig.class +new file mode 100644 +index 0000000..0af0ed9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/javac/debugAndroidTest/classes/com/oblador/vectoricons/test/BuildConfig.class differ diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/javac/release/classes/com/oblador/vectoricons/BuildConfig.class b/node_modules/react-native-vector-icons/android/build/intermediates/javac/release/classes/com/oblador/vectoricons/BuildConfig.class new file mode 100644 index 0000000..e69de29 @@ -4228,6 +31149,19 @@ index 0000000..e69de29 diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/javac/release/classes/com/oblador/vectoricons/VectorIconsPackage.class b/node_modules/react-native-vector-icons/android/build/intermediates/javac/release/classes/com/oblador/vectoricons/VectorIconsPackage.class new file mode 100644 index 0000000..e69de29 +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/lint_model_metadata/release/lint-model-metadata.properties b/node_modules/react-native-vector-icons/android/build/intermediates/lint_model_metadata/release/lint-model-metadata.properties +new file mode 100644 +index 0000000..e958845 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/lint_model_metadata/release/lint-model-metadata.properties +@@ -0,0 +1,2 @@ ++mavenArtifactId=react-native-vector-icons ++mavenGroupId=Notesnook +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/local_aar_for_lint/release/out.aar b/node_modules/react-native-vector-icons/android/build/intermediates/local_aar_for_lint/release/out.aar +new file mode 100644 +index 0000000..7407d79 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/local_aar_for_lint/release/out.aar differ diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/local_only_symbol_list/debug/R-def.txt b/node_modules/react-native-vector-icons/android/build/intermediates/local_only_symbol_list/debug/R-def.txt new file mode 100644 index 0000000..78ac5b8 @@ -4258,6 +31192,76 @@ index 0000000..d91dbc1 +5-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/src/main/AndroidManifest.xml +6 +7 +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt b/node_modules/react-native-vector-icons/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt +new file mode 100644 +index 0000000..0656594 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt +@@ -0,0 +1,64 @@ ++1 ++2 ++4 ++5 /Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:5:5-74 ++6 android:minSdkVersion="21" ++6-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:5:15-41 ++7 android:targetSdkVersion="33" /> ++7-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:5:42-71 ++8 ++9 /Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:11:5-15:78 ++10 android:name="android.test.InstrumentationTestRunner" ++10-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:11:22-75 ++11 android:functionalTest="false" ++11-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:14:22-52 ++12 android:handleProfiling="false" ++12-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:13:22-53 ++13 android:label="Tests for com.oblador.vectoricons.test" ++13-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:15:22-76 ++14 android:targetPackage="com.oblador.vectoricons.test" /> ++14-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:12:22-74 ++15 ++16 /Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:7:5-9:19 ++17 android:appComponentFactory="androidx.core.app.CoreComponentFactory" ++17-->[androidx.core:core:1.7.0] /Users/ammarahmed/.gradle/caches/transforms-3/bb56c9a6e47031c34fc4d216b7730771/transformed/core-1.7.0/AndroidManifest.xml:24:18-86 ++18 android:debuggable="true" > ++19 ++19-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:8:9-60 ++19-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest6347081445350074567.xml:8:23-57 ++20 ++21 [androidx.emoji2:emoji2:1.0.0] /Users/ammarahmed/.gradle/caches/transforms-3/5a8583d84af1154c647b237c08b50233/transformed/jetified-emoji2-1.0.0/AndroidManifest.xml:26:9-34:20 ++22 android:name="androidx.startup.InitializationProvider" ++22-->[androidx.emoji2:emoji2:1.0.0] /Users/ammarahmed/.gradle/caches/transforms-3/5a8583d84af1154c647b237c08b50233/transformed/jetified-emoji2-1.0.0/AndroidManifest.xml:27:13-67 ++23 android:authorities="com.oblador.vectoricons.test.androidx-startup" ++23-->[androidx.emoji2:emoji2:1.0.0] /Users/ammarahmed/.gradle/caches/transforms-3/5a8583d84af1154c647b237c08b50233/transformed/jetified-emoji2-1.0.0/AndroidManifest.xml:28:13-68 ++24 android:exported="false" > ++24-->[androidx.emoji2:emoji2:1.0.0] /Users/ammarahmed/.gradle/caches/transforms-3/5a8583d84af1154c647b237c08b50233/transformed/jetified-emoji2-1.0.0/AndroidManifest.xml:29:13-37 ++25 [androidx.emoji2:emoji2:1.0.0] /Users/ammarahmed/.gradle/caches/transforms-3/5a8583d84af1154c647b237c08b50233/transformed/jetified-emoji2-1.0.0/AndroidManifest.xml:31:13-33:52 ++26 android:name="androidx.emoji2.text.EmojiCompatInitializer" ++26-->[androidx.emoji2:emoji2:1.0.0] /Users/ammarahmed/.gradle/caches/transforms-3/5a8583d84af1154c647b237c08b50233/transformed/jetified-emoji2-1.0.0/AndroidManifest.xml:32:17-75 ++27 android:value="androidx.startup" /> ++27-->[androidx.emoji2:emoji2:1.0.0] /Users/ammarahmed/.gradle/caches/transforms-3/5a8583d84af1154c647b237c08b50233/transformed/jetified-emoji2-1.0.0/AndroidManifest.xml:33:17-49 ++28 [androidx.lifecycle:lifecycle-process:2.4.0] /Users/ammarahmed/.gradle/caches/transforms-3/58ac686d5dce94bca72eb6206df7b89b/transformed/jetified-lifecycle-process-2.4.0/AndroidManifest.xml:31:13-33:52 ++29 android:name="androidx.lifecycle.ProcessLifecycleInitializer" ++29-->[androidx.lifecycle:lifecycle-process:2.4.0] /Users/ammarahmed/.gradle/caches/transforms-3/58ac686d5dce94bca72eb6206df7b89b/transformed/jetified-lifecycle-process-2.4.0/AndroidManifest.xml:32:17-78 ++30 android:value="androidx.startup" /> ++30-->[androidx.lifecycle:lifecycle-process:2.4.0] /Users/ammarahmed/.gradle/caches/transforms-3/58ac686d5dce94bca72eb6206df7b89b/transformed/jetified-lifecycle-process-2.4.0/AndroidManifest.xml:33:17-49 ++31 ++32 ++33 [com.facebook.soloader:soloader:0.10.5] /Users/ammarahmed/.gradle/caches/transforms-3/02eec8398127f8a3b5f766356535826c/transformed/jetified-soloader-0.10.5/AndroidManifest.xml:12:9-14:37 ++34 android:name="com.facebook.soloader.enabled" ++34-->[com.facebook.soloader:soloader:0.10.5] /Users/ammarahmed/.gradle/caches/transforms-3/02eec8398127f8a3b5f766356535826c/transformed/jetified-soloader-0.10.5/AndroidManifest.xml:13:13-57 ++35 android:value="false" /> ++35-->[com.facebook.soloader:soloader:0.10.5] /Users/ammarahmed/.gradle/caches/transforms-3/02eec8398127f8a3b5f766356535826c/transformed/jetified-soloader-0.10.5/AndroidManifest.xml:14:13-34 ++36 ++37 ++38 diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt b/node_modules/react-native-vector-icons/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt new file mode 100644 index 0000000..d91dbc1 @@ -4272,6 +31276,14 @@ index 0000000..d91dbc1 +5-->/Volumes/DataDrive/Projects/apps/notesnook/apps/mobile/node_modules/react-native-vector-icons/android/src/main/AndroidManifest.xml +6 +7 +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_java_res/debugAndroidTest/feature-react-native-vector-icons.jar b/node_modules/react-native-vector-icons/android/build/intermediates/merged_java_res/debugAndroidTest/feature-react-native-vector-icons.jar +new file mode 100644 +index 0000000..1a042ec +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_java_res/debugAndroidTest/feature-react-native-vector-icons.jar differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_java_res/release/feature-react-native-vector-icons.jar b/node_modules/react-native-vector-icons/android/build/intermediates/merged_java_res/release/feature-react-native-vector-icons.jar +new file mode 100644 +index 0000000..15cb0ec +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_java_res/release/feature-react-native-vector-icons.jar differ diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000..eb8cc91 @@ -4300,6 +31312,34060 @@ index 0000000..eb8cc91 + + \ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libc++_shared.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libc++_shared.so +new file mode 100644 +index 0000000..b8e89b1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfabricjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfabricjni.so +new file mode 100644 +index 0000000..c47e2b1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfabricjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfb.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfb.so +new file mode 100644 +index 0000000..72dd92d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfb.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfbjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..ad3b771 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_runtime.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_runtime.so +new file mode 100644 +index 0000000..8385a7b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_runtime.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog.so +new file mode 100644 +index 0000000..235d455 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog_init.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog_init.so +new file mode 100644 +index 0000000..8214262 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog_init.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes_executor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes_executor.so +new file mode 100644 +index 0000000..2857868 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes_executor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libimagepipeline.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libimagepipeline.so +new file mode 100644 +index 0000000..22ad799 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libimagepipeline.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjscexecutor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjscexecutor.so +new file mode 100644 +index 0000000..59c4c32 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjscexecutor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsi.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..213dd3c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsijniprofiler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsijniprofiler.so +new file mode 100644 +index 0000000..7086a58 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsijniprofiler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsinspector.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsinspector.so +new file mode 100644 +index 0000000..0dcc553 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsinspector.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/liblogger.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/liblogger.so +new file mode 100644 +index 0000000..88ee2eb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/liblogger.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libmapbufferjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libmapbufferjni.so +new file mode 100644 +index 0000000..9d06f23 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libmapbufferjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-filters.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-filters.so +new file mode 100644 +index 0000000..5d94c52 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-filters.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-imagetranscoder.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..c376af1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-imagetranscoder.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_codegen_rncore.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_codegen_rncore.so +new file mode 100644 +index 0000000..b4c0b07 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_codegen_rncore.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_config.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_config.so +new file mode 100644 +index 0000000..f0d2374 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_config.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_debug.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_debug.so +new file mode 100644 +index 0000000..00a3032 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_debug.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_nativemodule_core.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_nativemodule_core.so +new file mode 100644 +index 0000000..30705d8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_nativemodule_core.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_newarchdefaults.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_newarchdefaults.so +new file mode 100644 +index 0000000..03f4905 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_newarchdefaults.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_animations.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_animations.so +new file mode 100644 +index 0000000..a4288d7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_animations.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_attributedstring.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_attributedstring.so +new file mode 100644 +index 0000000..3cc7402 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_attributedstring.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_componentregistry.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_componentregistry.so +new file mode 100644 +index 0000000..5972fff +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_componentregistry.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_core.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_core.so +new file mode 100644 +index 0000000..12d565c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_core.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_debug.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_debug.so +new file mode 100644 +index 0000000..557c527 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_debug.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_element.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_element.so +new file mode 100644 +index 0000000..b435887 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_element.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_graphics.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_graphics.so +new file mode 100644 +index 0000000..6f4f3ab +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_graphics.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_imagemanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_imagemanager.so +new file mode 100644 +index 0000000..88c250e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_imagemanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_leakchecker.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_leakchecker.so +new file mode 100644 +index 0000000..d443902 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_leakchecker.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_mapbuffer.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_mapbuffer.so +new file mode 100644 +index 0000000..ca5b5dc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_mapbuffer.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_mounting.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_mounting.so +new file mode 100644 +index 0000000..8140ec7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_mounting.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_runtimescheduler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_runtimescheduler.so +new file mode 100644 +index 0000000..d29e70a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_runtimescheduler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_scheduler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_scheduler.so +new file mode 100644 +index 0000000..6ea478c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_scheduler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_telemetry.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_telemetry.so +new file mode 100644 +index 0000000..3f6dfec +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_telemetry.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_templateprocessor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_templateprocessor.so +new file mode 100644 +index 0000000..112085c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_templateprocessor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_textlayoutmanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_textlayoutmanager.so +new file mode 100644 +index 0000000..1b392b3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_textlayoutmanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_uimanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_uimanager.so +new file mode 100644 +index 0000000..f10a33a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_render_uimanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_utils.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_utils.so +new file mode 100644 +index 0000000..b95acc8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_utils.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeblob.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeblob.so +new file mode 100644 +index 0000000..53b9f17 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeblob.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativejni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativejni.so +new file mode 100644 +index 0000000..03d7dc1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativejni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactperfloggerjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactperfloggerjni.so +new file mode 100644 +index 0000000..edfc2fd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactperfloggerjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_image.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_image.so +new file mode 100644 +index 0000000..9c7659a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_image.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_legacyviewmanagerinterop.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_legacyviewmanagerinterop.so +new file mode 100644 +index 0000000..fb54efb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_legacyviewmanagerinterop.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_root.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_root.so +new file mode 100644 +index 0000000..c15c537 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_root.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_scrollview.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_scrollview.so +new file mode 100644 +index 0000000..9d7b390 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_scrollview.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_text.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_text.so +new file mode 100644 +index 0000000..87a1749 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_text.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_textinput.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_textinput.so +new file mode 100644 +index 0000000..38c40c7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_textinput.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_unimplementedview.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_unimplementedview.so +new file mode 100644 +index 0000000..3465e63 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_unimplementedview.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_view.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_view.so +new file mode 100644 +index 0000000..a1a9475 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/librrc_view.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libruntimeexecutor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libruntimeexecutor.so +new file mode 100644 +index 0000000..8daf9eb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libruntimeexecutor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libturbomodulejsijni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libturbomodulejsijni.so +new file mode 100644 +index 0000000..470bb57 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libturbomodulejsijni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libyoga.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libyoga.so +new file mode 100644 +index 0000000..d12734d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libyoga.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libc++_shared.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libc++_shared.so +new file mode 100644 +index 0000000..fa0aa15 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libc++_shared.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfabricjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfabricjni.so +new file mode 100644 +index 0000000..8dd6ed9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfabricjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfb.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfb.so +new file mode 100644 +index 0000000..8d69af7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfb.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfbjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfbjni.so +new file mode 100644 +index 0000000..faf854f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfbjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_runtime.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_runtime.so +new file mode 100644 +index 0000000..b7377d6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_runtime.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog.so +new file mode 100644 +index 0000000..3bf619a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog_init.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog_init.so +new file mode 100644 +index 0000000..f653948 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog_init.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes_executor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes_executor.so +new file mode 100644 +index 0000000..4dcdffa +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes_executor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libimagepipeline.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libimagepipeline.so +new file mode 100644 +index 0000000..f1d809d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libimagepipeline.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjscexecutor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjscexecutor.so +new file mode 100644 +index 0000000..5d9dd99 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjscexecutor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsi.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsi.so +new file mode 100644 +index 0000000..f9cb23c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsi.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsijniprofiler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsijniprofiler.so +new file mode 100644 +index 0000000..740c6e8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsijniprofiler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsinspector.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsinspector.so +new file mode 100644 +index 0000000..992f9aa +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsinspector.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/liblogger.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/liblogger.so +new file mode 100644 +index 0000000..1b280b1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/liblogger.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libmapbufferjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libmapbufferjni.so +new file mode 100644 +index 0000000..4d160a2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libmapbufferjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-filters.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-filters.so +new file mode 100644 +index 0000000..03c5815 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-filters.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-imagetranscoder.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..12c403e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-imagetranscoder.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_codegen_rncore.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_codegen_rncore.so +new file mode 100644 +index 0000000..e0372c6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_codegen_rncore.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_config.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_config.so +new file mode 100644 +index 0000000..8e595ef +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_config.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_debug.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_debug.so +new file mode 100644 +index 0000000..c64fb88 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_debug.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_nativemodule_core.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_nativemodule_core.so +new file mode 100644 +index 0000000..fcbc831 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_nativemodule_core.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_newarchdefaults.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_newarchdefaults.so +new file mode 100644 +index 0000000..d1f2de4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_newarchdefaults.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_animations.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_animations.so +new file mode 100644 +index 0000000..5688ab8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_animations.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_attributedstring.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_attributedstring.so +new file mode 100644 +index 0000000..2098175 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_attributedstring.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_componentregistry.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_componentregistry.so +new file mode 100644 +index 0000000..9fce25d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_componentregistry.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_core.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_core.so +new file mode 100644 +index 0000000..a96f482 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_core.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_debug.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_debug.so +new file mode 100644 +index 0000000..30017c6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_debug.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_element.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_element.so +new file mode 100644 +index 0000000..6232f0a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_element.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_graphics.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_graphics.so +new file mode 100644 +index 0000000..cdd3d5e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_graphics.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_imagemanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_imagemanager.so +new file mode 100644 +index 0000000..b38aebd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_imagemanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_leakchecker.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_leakchecker.so +new file mode 100644 +index 0000000..499073a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_leakchecker.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_mapbuffer.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_mapbuffer.so +new file mode 100644 +index 0000000..c83d901 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_mapbuffer.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_mounting.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_mounting.so +new file mode 100644 +index 0000000..2c9477b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_mounting.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_runtimescheduler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_runtimescheduler.so +new file mode 100644 +index 0000000..3bbb685 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_runtimescheduler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_scheduler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_scheduler.so +new file mode 100644 +index 0000000..782dcd6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_scheduler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_telemetry.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_telemetry.so +new file mode 100644 +index 0000000..909c91d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_telemetry.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_templateprocessor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_templateprocessor.so +new file mode 100644 +index 0000000..63d2cd9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_templateprocessor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_textlayoutmanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_textlayoutmanager.so +new file mode 100644 +index 0000000..b5d4d8c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_textlayoutmanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_uimanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_uimanager.so +new file mode 100644 +index 0000000..03b23ce +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_render_uimanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_utils.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_utils.so +new file mode 100644 +index 0000000..5e3482d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_utils.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeblob.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeblob.so +new file mode 100644 +index 0000000..7f7ef0f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeblob.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativejni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativejni.so +new file mode 100644 +index 0000000..ec397a4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativejni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactperfloggerjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactperfloggerjni.so +new file mode 100644 +index 0000000..4804ef1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactperfloggerjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_image.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_image.so +new file mode 100644 +index 0000000..603e317 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_image.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_legacyviewmanagerinterop.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_legacyviewmanagerinterop.so +new file mode 100644 +index 0000000..e5a866a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_legacyviewmanagerinterop.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_root.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_root.so +new file mode 100644 +index 0000000..b92eaa6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_root.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_scrollview.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_scrollview.so +new file mode 100644 +index 0000000..93506bf +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_scrollview.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_text.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_text.so +new file mode 100644 +index 0000000..940ba77 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_text.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_textinput.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_textinput.so +new file mode 100644 +index 0000000..98b0f1a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_textinput.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_unimplementedview.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_unimplementedview.so +new file mode 100644 +index 0000000..eef6061 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_unimplementedview.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_view.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_view.so +new file mode 100644 +index 0000000..05f45ca +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/librrc_view.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libruntimeexecutor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libruntimeexecutor.so +new file mode 100644 +index 0000000..f62d5f4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libruntimeexecutor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libturbomodulejsijni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libturbomodulejsijni.so +new file mode 100644 +index 0000000..0cec099 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libturbomodulejsijni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libyoga.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libyoga.so +new file mode 100644 +index 0000000..48a932e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libyoga.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libc++_shared.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libc++_shared.so +new file mode 100644 +index 0000000..94e7f40 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libc++_shared.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfabricjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfabricjni.so +new file mode 100644 +index 0000000..6a8e5c2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfabricjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfb.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfb.so +new file mode 100644 +index 0000000..7670ba2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfb.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfbjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfbjni.so +new file mode 100644 +index 0000000..fcef761 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfbjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_runtime.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_runtime.so +new file mode 100644 +index 0000000..4b9302b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_runtime.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog.so +new file mode 100644 +index 0000000..83fee37 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog_init.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog_init.so +new file mode 100644 +index 0000000..fe6b2ef +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog_init.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes_executor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes_executor.so +new file mode 100644 +index 0000000..121039f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes_executor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libimagepipeline.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libimagepipeline.so +new file mode 100644 +index 0000000..df04897 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libimagepipeline.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjscexecutor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjscexecutor.so +new file mode 100644 +index 0000000..8fa4917 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjscexecutor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsi.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsi.so +new file mode 100644 +index 0000000..ab7096b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsi.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsijniprofiler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsijniprofiler.so +new file mode 100644 +index 0000000..5dc4b8c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsijniprofiler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsinspector.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsinspector.so +new file mode 100644 +index 0000000..436022e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsinspector.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/liblogger.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/liblogger.so +new file mode 100644 +index 0000000..b303656 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/liblogger.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libmapbufferjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libmapbufferjni.so +new file mode 100644 +index 0000000..81376d9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libmapbufferjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-filters.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-filters.so +new file mode 100644 +index 0000000..4854b0b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-filters.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-imagetranscoder.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..7d685b2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-imagetranscoder.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_codegen_rncore.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_codegen_rncore.so +new file mode 100644 +index 0000000..ea20e5f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_codegen_rncore.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_config.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_config.so +new file mode 100644 +index 0000000..a791b3f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_config.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_debug.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_debug.so +new file mode 100644 +index 0000000..cb3792d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_debug.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_nativemodule_core.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_nativemodule_core.so +new file mode 100644 +index 0000000..326995b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_nativemodule_core.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_newarchdefaults.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_newarchdefaults.so +new file mode 100644 +index 0000000..692292a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_newarchdefaults.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_animations.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_animations.so +new file mode 100644 +index 0000000..7e647be +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_animations.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_attributedstring.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_attributedstring.so +new file mode 100644 +index 0000000..fe060b4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_attributedstring.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_componentregistry.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_componentregistry.so +new file mode 100644 +index 0000000..3658758 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_componentregistry.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_core.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_core.so +new file mode 100644 +index 0000000..4676e81 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_core.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_debug.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_debug.so +new file mode 100644 +index 0000000..bceba58 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_debug.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_element.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_element.so +new file mode 100644 +index 0000000..014a6fb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_element.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_graphics.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_graphics.so +new file mode 100644 +index 0000000..525164e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_graphics.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_imagemanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_imagemanager.so +new file mode 100644 +index 0000000..a8d3094 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_imagemanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_leakchecker.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_leakchecker.so +new file mode 100644 +index 0000000..347366b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_leakchecker.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_mapbuffer.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_mapbuffer.so +new file mode 100644 +index 0000000..5a886a4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_mapbuffer.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_mounting.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_mounting.so +new file mode 100644 +index 0000000..0acc603 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_mounting.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_runtimescheduler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_runtimescheduler.so +new file mode 100644 +index 0000000..5e15b92 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_runtimescheduler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_scheduler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_scheduler.so +new file mode 100644 +index 0000000..93cd62c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_scheduler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_telemetry.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_telemetry.so +new file mode 100644 +index 0000000..ec63d3b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_telemetry.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_templateprocessor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_templateprocessor.so +new file mode 100644 +index 0000000..6879b2c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_templateprocessor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_textlayoutmanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_textlayoutmanager.so +new file mode 100644 +index 0000000..a3a36fc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_textlayoutmanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_uimanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_uimanager.so +new file mode 100644 +index 0000000..66b2ebd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_render_uimanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_utils.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_utils.so +new file mode 100644 +index 0000000..ae7251b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_utils.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeblob.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeblob.so +new file mode 100644 +index 0000000..8012a57 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeblob.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativejni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativejni.so +new file mode 100644 +index 0000000..4023e17 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativejni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactperfloggerjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactperfloggerjni.so +new file mode 100644 +index 0000000..895440b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactperfloggerjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_image.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_image.so +new file mode 100644 +index 0000000..7b93556 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_image.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_legacyviewmanagerinterop.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_legacyviewmanagerinterop.so +new file mode 100644 +index 0000000..ca98859 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_legacyviewmanagerinterop.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_root.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_root.so +new file mode 100644 +index 0000000..a2e3e58 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_root.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_scrollview.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_scrollview.so +new file mode 100644 +index 0000000..fc0f722 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_scrollview.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_text.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_text.so +new file mode 100644 +index 0000000..aacf3d3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_text.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_textinput.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_textinput.so +new file mode 100644 +index 0000000..8dfb7ea +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_textinput.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_unimplementedview.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_unimplementedview.so +new file mode 100644 +index 0000000..c6236cf +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_unimplementedview.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_view.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_view.so +new file mode 100644 +index 0000000..e04428a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/librrc_view.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libruntimeexecutor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libruntimeexecutor.so +new file mode 100644 +index 0000000..ce189f8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libruntimeexecutor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libturbomodulejsijni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libturbomodulejsijni.so +new file mode 100644 +index 0000000..874bcd5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libturbomodulejsijni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libyoga.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libyoga.so +new file mode 100644 +index 0000000..3d9574a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libyoga.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libc++_shared.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libc++_shared.so +new file mode 100644 +index 0000000..6a24c40 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfabricjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfabricjni.so +new file mode 100644 +index 0000000..ac07867 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfabricjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfb.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfb.so +new file mode 100644 +index 0000000..1cb986a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfb.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfbjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfbjni.so +new file mode 100644 +index 0000000..a926cd4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfbjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_runtime.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_runtime.so +new file mode 100644 +index 0000000..44c7a36 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_runtime.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog.so +new file mode 100644 +index 0000000..038e46e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog_init.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog_init.so +new file mode 100644 +index 0000000..013322b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog_init.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes_executor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes_executor.so +new file mode 100644 +index 0000000..057acfc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes_executor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libimagepipeline.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libimagepipeline.so +new file mode 100644 +index 0000000..817d0eb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libimagepipeline.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjscexecutor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjscexecutor.so +new file mode 100644 +index 0000000..2a51ac9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjscexecutor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsi.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsi.so +new file mode 100644 +index 0000000..daa1064 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsijniprofiler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsijniprofiler.so +new file mode 100644 +index 0000000..7f4a997 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsijniprofiler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsinspector.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsinspector.so +new file mode 100644 +index 0000000..8089132 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsinspector.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/liblogger.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/liblogger.so +new file mode 100644 +index 0000000..ca2208d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/liblogger.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libmapbufferjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libmapbufferjni.so +new file mode 100644 +index 0000000..d6cd1b4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libmapbufferjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-filters.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-filters.so +new file mode 100644 +index 0000000..836c3b8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-filters.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-imagetranscoder.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-imagetranscoder.so +new file mode 100644 +index 0000000..ed68c8a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-imagetranscoder.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_codegen_rncore.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_codegen_rncore.so +new file mode 100644 +index 0000000..5fc9eb3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_codegen_rncore.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_config.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_config.so +new file mode 100644 +index 0000000..ce319ee +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_config.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_debug.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_debug.so +new file mode 100644 +index 0000000..172854a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_debug.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_nativemodule_core.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_nativemodule_core.so +new file mode 100644 +index 0000000..3c5e3a8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_nativemodule_core.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_newarchdefaults.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_newarchdefaults.so +new file mode 100644 +index 0000000..d22469f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_newarchdefaults.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_animations.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_animations.so +new file mode 100644 +index 0000000..e07c80e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_animations.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_attributedstring.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_attributedstring.so +new file mode 100644 +index 0000000..a4c989b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_attributedstring.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_componentregistry.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_componentregistry.so +new file mode 100644 +index 0000000..9a28820 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_componentregistry.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_core.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_core.so +new file mode 100644 +index 0000000..283c7c0 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_core.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_debug.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_debug.so +new file mode 100644 +index 0000000..38e8bd2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_debug.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_element.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_element.so +new file mode 100644 +index 0000000..c062cbc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_element.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_graphics.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_graphics.so +new file mode 100644 +index 0000000..274c08e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_graphics.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_imagemanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_imagemanager.so +new file mode 100644 +index 0000000..60b6b96 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_imagemanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_leakchecker.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_leakchecker.so +new file mode 100644 +index 0000000..97bad48 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_leakchecker.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_mapbuffer.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_mapbuffer.so +new file mode 100644 +index 0000000..d81984d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_mapbuffer.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_mounting.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_mounting.so +new file mode 100644 +index 0000000..0ee77b3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_mounting.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_runtimescheduler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_runtimescheduler.so +new file mode 100644 +index 0000000..6ced786 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_runtimescheduler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_scheduler.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_scheduler.so +new file mode 100644 +index 0000000..d0f9759 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_scheduler.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_telemetry.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_telemetry.so +new file mode 100644 +index 0000000..8e77c09 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_telemetry.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_templateprocessor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_templateprocessor.so +new file mode 100644 +index 0000000..8cf297e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_templateprocessor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_textlayoutmanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_textlayoutmanager.so +new file mode 100644 +index 0000000..9371164 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_textlayoutmanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_uimanager.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_uimanager.so +new file mode 100644 +index 0000000..4c6ff23 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_render_uimanager.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_utils.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_utils.so +new file mode 100644 +index 0000000..cfdeb76 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_utils.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeblob.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeblob.so +new file mode 100644 +index 0000000..6208e03 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeblob.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativejni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativejni.so +new file mode 100644 +index 0000000..056c2d0 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativejni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactperfloggerjni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactperfloggerjni.so +new file mode 100644 +index 0000000..a8c8698 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactperfloggerjni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_image.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_image.so +new file mode 100644 +index 0000000..b62ccae +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_image.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_legacyviewmanagerinterop.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_legacyviewmanagerinterop.so +new file mode 100644 +index 0000000..679cc2e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_legacyviewmanagerinterop.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_root.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_root.so +new file mode 100644 +index 0000000..bc81547 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_root.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_scrollview.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_scrollview.so +new file mode 100644 +index 0000000..410b951 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_scrollview.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_text.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_text.so +new file mode 100644 +index 0000000..f334443 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_text.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_textinput.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_textinput.so +new file mode 100644 +index 0000000..cf8ccd0 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_textinput.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_unimplementedview.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_unimplementedview.so +new file mode 100644 +index 0000000..4b250e3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_unimplementedview.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_view.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_view.so +new file mode 100644 +index 0000000..ab02324 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/librrc_view.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libruntimeexecutor.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libruntimeexecutor.so +new file mode 100644 +index 0000000..e66777f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libruntimeexecutor.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libturbomodulejsijni.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libturbomodulejsijni.so +new file mode 100644 +index 0000000..db019b2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libturbomodulejsijni.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libyoga.so b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libyoga.so +new file mode 100644 +index 0000000..6e5a332 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libyoga.so differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-af_values-af.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-af_values-af.arsc.flat +new file mode 100644 +index 0000000..2113910 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-af_values-af.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-am_values-am.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-am_values-am.arsc.flat +new file mode 100644 +index 0000000..55b72a4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-am_values-am.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ar_values-ar.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ar_values-ar.arsc.flat +new file mode 100644 +index 0000000..08ec9d7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ar_values-ar.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-as_values-as.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-as_values-as.arsc.flat +new file mode 100644 +index 0000000..22eaa84 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-as_values-as.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-az_values-az.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-az_values-az.arsc.flat +new file mode 100644 +index 0000000..f681029 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-az_values-az.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-b+sr+Latn_values-b+sr+Latn.arsc.flat +new file mode 100644 +index 0000000..7ce501c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-be_values-be.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-be_values-be.arsc.flat +new file mode 100644 +index 0000000..5c3a544 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-be_values-be.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bg_values-bg.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bg_values-bg.arsc.flat +new file mode 100644 +index 0000000..9455215 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bg_values-bg.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bn_values-bn.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bn_values-bn.arsc.flat +new file mode 100644 +index 0000000..4eb731f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bn_values-bn.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bs_values-bs.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bs_values-bs.arsc.flat +new file mode 100644 +index 0000000..53f531f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-bs_values-bs.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ca_values-ca.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ca_values-ca.arsc.flat +new file mode 100644 +index 0000000..d74ef0d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ca_values-ca.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-cs_values-cs.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-cs_values-cs.arsc.flat +new file mode 100644 +index 0000000..68d13cc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-cs_values-cs.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-da_values-da.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-da_values-da.arsc.flat +new file mode 100644 +index 0000000..1f24bf2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-da_values-da.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-de_values-de.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-de_values-de.arsc.flat +new file mode 100644 +index 0000000..dae4542 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-de_values-de.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-el_values-el.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-el_values-el.arsc.flat +new file mode 100644 +index 0000000..767b0cc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-el_values-el.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rAU_values-en-rAU.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rAU_values-en-rAU.arsc.flat +new file mode 100644 +index 0000000..d7b86b6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rAU_values-en-rAU.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rCA_values-en-rCA.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rCA_values-en-rCA.arsc.flat +new file mode 100644 +index 0000000..c817b4b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rCA_values-en-rCA.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rGB_values-en-rGB.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rGB_values-en-rGB.arsc.flat +new file mode 100644 +index 0000000..5cf97a3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rGB_values-en-rGB.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rIN_values-en-rIN.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rIN_values-en-rIN.arsc.flat +new file mode 100644 +index 0000000..a14b8d1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rIN_values-en-rIN.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rXC_values-en-rXC.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rXC_values-en-rXC.arsc.flat +new file mode 100644 +index 0000000..9986de9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-en-rXC_values-en-rXC.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-es-rUS_values-es-rUS.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-es-rUS_values-es-rUS.arsc.flat +new file mode 100644 +index 0000000..6904d07 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-es-rUS_values-es-rUS.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-es_values-es.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-es_values-es.arsc.flat +new file mode 100644 +index 0000000..d96c589 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-es_values-es.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-et_values-et.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-et_values-et.arsc.flat +new file mode 100644 +index 0000000..b76752e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-et_values-et.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-eu_values-eu.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-eu_values-eu.arsc.flat +new file mode 100644 +index 0000000..da25f1e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-eu_values-eu.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fa_values-fa.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fa_values-fa.arsc.flat +new file mode 100644 +index 0000000..18b1cf8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fa_values-fa.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fi_values-fi.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fi_values-fi.arsc.flat +new file mode 100644 +index 0000000..6135ebb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fi_values-fi.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fr-rCA_values-fr-rCA.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fr-rCA_values-fr-rCA.arsc.flat +new file mode 100644 +index 0000000..c6bd70a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fr-rCA_values-fr-rCA.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fr_values-fr.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fr_values-fr.arsc.flat +new file mode 100644 +index 0000000..40764c9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-fr_values-fr.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-gl_values-gl.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-gl_values-gl.arsc.flat +new file mode 100644 +index 0000000..17071e6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-gl_values-gl.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-gu_values-gu.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-gu_values-gu.arsc.flat +new file mode 100644 +index 0000000..d31537d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-gu_values-gu.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-h720dp-v13_values-h720dp-v13.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-h720dp-v13_values-h720dp-v13.arsc.flat +new file mode 100644 +index 0000000..b0adcde +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-h720dp-v13_values-h720dp-v13.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hdpi-v4_values-hdpi-v4.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hdpi-v4_values-hdpi-v4.arsc.flat +new file mode 100644 +index 0000000..0339ebf +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hdpi-v4_values-hdpi-v4.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hi_values-hi.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hi_values-hi.arsc.flat +new file mode 100644 +index 0000000..e0f827d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hi_values-hi.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hr_values-hr.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hr_values-hr.arsc.flat +new file mode 100644 +index 0000000..729047e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hr_values-hr.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hu_values-hu.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hu_values-hu.arsc.flat +new file mode 100644 +index 0000000..b8b1c7f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hu_values-hu.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hy_values-hy.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hy_values-hy.arsc.flat +new file mode 100644 +index 0000000..f2fe7c9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-hy_values-hy.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-in_values-in.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-in_values-in.arsc.flat +new file mode 100644 +index 0000000..b314b98 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-in_values-in.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-is_values-is.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-is_values-is.arsc.flat +new file mode 100644 +index 0000000..a9ac8fe +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-is_values-is.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-it_values-it.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-it_values-it.arsc.flat +new file mode 100644 +index 0000000..99a29ed +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-it_values-it.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-iw_values-iw.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-iw_values-iw.arsc.flat +new file mode 100644 +index 0000000..fbaf561 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-iw_values-iw.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ja_values-ja.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ja_values-ja.arsc.flat +new file mode 100644 +index 0000000..f418dec +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ja_values-ja.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ka_values-ka.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ka_values-ka.arsc.flat +new file mode 100644 +index 0000000..8b04e78 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ka_values-ka.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-kk_values-kk.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-kk_values-kk.arsc.flat +new file mode 100644 +index 0000000..a53dc66 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-kk_values-kk.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-km_values-km.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-km_values-km.arsc.flat +new file mode 100644 +index 0000000..0d1e2e7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-km_values-km.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-kn_values-kn.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-kn_values-kn.arsc.flat +new file mode 100644 +index 0000000..7f56a8a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-kn_values-kn.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ko_values-ko.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ko_values-ko.arsc.flat +new file mode 100644 +index 0000000..2d6666c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ko_values-ko.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ky_values-ky.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ky_values-ky.arsc.flat +new file mode 100644 +index 0000000..f571d6f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ky_values-ky.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-land_values-land.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-land_values-land.arsc.flat +new file mode 100644 +index 0000000..1af39c4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-land_values-land.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-large-v4_values-large-v4.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-large-v4_values-large-v4.arsc.flat +new file mode 100644 +index 0000000..70cc1ce +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-large-v4_values-large-v4.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ldltr-v21_values-ldltr-v21.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ldltr-v21_values-ldltr-v21.arsc.flat +new file mode 100644 +index 0000000..d52137b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ldltr-v21_values-ldltr-v21.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lo_values-lo.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lo_values-lo.arsc.flat +new file mode 100644 +index 0000000..f6f47c9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lo_values-lo.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lt_values-lt.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lt_values-lt.arsc.flat +new file mode 100644 +index 0000000..4541ae7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lt_values-lt.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lv_values-lv.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lv_values-lv.arsc.flat +new file mode 100644 +index 0000000..018fcc2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-lv_values-lv.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mk_values-mk.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mk_values-mk.arsc.flat +new file mode 100644 +index 0000000..6ab3174 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mk_values-mk.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ml_values-ml.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ml_values-ml.arsc.flat +new file mode 100644 +index 0000000..a497b73 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ml_values-ml.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mn_values-mn.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mn_values-mn.arsc.flat +new file mode 100644 +index 0000000..b8f4904 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mn_values-mn.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mr_values-mr.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mr_values-mr.arsc.flat +new file mode 100644 +index 0000000..e5d7811 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-mr_values-mr.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ms_values-ms.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ms_values-ms.arsc.flat +new file mode 100644 +index 0000000..4b9259f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ms_values-ms.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-my_values-my.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-my_values-my.arsc.flat +new file mode 100644 +index 0000000..2e24a4e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-my_values-my.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-nb_values-nb.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-nb_values-nb.arsc.flat +new file mode 100644 +index 0000000..a2b8cde +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-nb_values-nb.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ne_values-ne.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ne_values-ne.arsc.flat +new file mode 100644 +index 0000000..9c9408c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ne_values-ne.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-night-v8_values-night-v8.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-night-v8_values-night-v8.arsc.flat +new file mode 100644 +index 0000000..70ff923 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-night-v8_values-night-v8.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-nl_values-nl.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-nl_values-nl.arsc.flat +new file mode 100644 +index 0000000..9f097db +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-nl_values-nl.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-or_values-or.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-or_values-or.arsc.flat +new file mode 100644 +index 0000000..10d5332 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-or_values-or.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pa_values-pa.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pa_values-pa.arsc.flat +new file mode 100644 +index 0000000..1aff9fc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pa_values-pa.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pl_values-pl.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pl_values-pl.arsc.flat +new file mode 100644 +index 0000000..09d0f14 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pl_values-pl.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-port_values-port.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-port_values-port.arsc.flat +new file mode 100644 +index 0000000..d81ab72 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-port_values-port.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt-rBR_values-pt-rBR.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt-rBR_values-pt-rBR.arsc.flat +new file mode 100644 +index 0000000..7eb73a9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt-rBR_values-pt-rBR.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt-rPT_values-pt-rPT.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt-rPT_values-pt-rPT.arsc.flat +new file mode 100644 +index 0000000..4ab67d5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt-rPT_values-pt-rPT.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt_values-pt.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt_values-pt.arsc.flat +new file mode 100644 +index 0000000..1f39e2f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-pt_values-pt.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ro_values-ro.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ro_values-ro.arsc.flat +new file mode 100644 +index 0000000..7f0c718 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ro_values-ro.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ru_values-ru.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ru_values-ru.arsc.flat +new file mode 100644 +index 0000000..43721b4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ru_values-ru.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-si_values-si.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-si_values-si.arsc.flat +new file mode 100644 +index 0000000..8ee8bef +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-si_values-si.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sk_values-sk.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sk_values-sk.arsc.flat +new file mode 100644 +index 0000000..05db393 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sk_values-sk.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sl_values-sl.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sl_values-sl.arsc.flat +new file mode 100644 +index 0000000..5875e8e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sl_values-sl.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sq_values-sq.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sq_values-sq.arsc.flat +new file mode 100644 +index 0000000..73034d6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sq_values-sq.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sr_values-sr.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sr_values-sr.arsc.flat +new file mode 100644 +index 0000000..f620d76 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sr_values-sr.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sv_values-sv.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sv_values-sv.arsc.flat +new file mode 100644 +index 0000000..066abaf +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sv_values-sv.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sw600dp-v13_values-sw600dp-v13.arsc.flat +new file mode 100644 +index 0000000..9f272e4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sw_values-sw.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sw_values-sw.arsc.flat +new file mode 100644 +index 0000000..6553759 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-sw_values-sw.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ta_values-ta.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ta_values-ta.arsc.flat +new file mode 100644 +index 0000000..a728da5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ta_values-ta.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-te_values-te.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-te_values-te.arsc.flat +new file mode 100644 +index 0000000..6177977 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-te_values-te.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-th_values-th.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-th_values-th.arsc.flat +new file mode 100644 +index 0000000..304b039 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-th_values-th.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-tl_values-tl.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-tl_values-tl.arsc.flat +new file mode 100644 +index 0000000..3e56346 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-tl_values-tl.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-tr_values-tr.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-tr_values-tr.arsc.flat +new file mode 100644 +index 0000000..db90b1b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-tr_values-tr.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-uk_values-uk.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-uk_values-uk.arsc.flat +new file mode 100644 +index 0000000..6279a56 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-uk_values-uk.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ur_values-ur.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ur_values-ur.arsc.flat +new file mode 100644 +index 0000000..4e3b2a5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-ur_values-ur.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-uz_values-uz.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-uz_values-uz.arsc.flat +new file mode 100644 +index 0000000..0c52a8e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-uz_values-uz.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v16_values-v16.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v16_values-v16.arsc.flat +new file mode 100644 +index 0000000..be40f0f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v16_values-v16.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v17_values-v17.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v17_values-v17.arsc.flat +new file mode 100644 +index 0000000..e0845e6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v17_values-v17.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v18_values-v18.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v18_values-v18.arsc.flat +new file mode 100644 +index 0000000..697d0e5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v18_values-v18.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v21_values-v21.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v21_values-v21.arsc.flat +new file mode 100644 +index 0000000..c0eeebb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v21_values-v21.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v22_values-v22.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v22_values-v22.arsc.flat +new file mode 100644 +index 0000000..66fb2cb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v22_values-v22.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v23_values-v23.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v23_values-v23.arsc.flat +new file mode 100644 +index 0000000..becb199 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v23_values-v23.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v24_values-v24.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v24_values-v24.arsc.flat +new file mode 100644 +index 0000000..1af6cd7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v24_values-v24.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v25_values-v25.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v25_values-v25.arsc.flat +new file mode 100644 +index 0000000..b15b629 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v25_values-v25.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v26_values-v26.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v26_values-v26.arsc.flat +new file mode 100644 +index 0000000..34301bc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v26_values-v26.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v28_values-v28.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v28_values-v28.arsc.flat +new file mode 100644 +index 0000000..0189385 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-v28_values-v28.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-vi_values-vi.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-vi_values-vi.arsc.flat +new file mode 100644 +index 0000000..eaab63f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-vi_values-vi.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-watch-v20_values-watch-v20.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-watch-v20_values-watch-v20.arsc.flat +new file mode 100644 +index 0000000..6df6909 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-watch-v20_values-watch-v20.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-watch-v21_values-watch-v21.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-watch-v21_values-watch-v21.arsc.flat +new file mode 100644 +index 0000000..b1c3696 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-watch-v21_values-watch-v21.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-xlarge-v4_values-xlarge-v4.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-xlarge-v4_values-xlarge-v4.arsc.flat +new file mode 100644 +index 0000000..e47a6f9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-xlarge-v4_values-xlarge-v4.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rCN_values-zh-rCN.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rCN_values-zh-rCN.arsc.flat +new file mode 100644 +index 0000000..94b51e6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rCN_values-zh-rCN.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rHK_values-zh-rHK.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rHK_values-zh-rHK.arsc.flat +new file mode 100644 +index 0000000..d4410dd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rHK_values-zh-rHK.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rTW_values-zh-rTW.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rTW_values-zh-rTW.arsc.flat +new file mode 100644 +index 0000000..731ddde +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zh-rTW_values-zh-rTW.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zu_values-zu.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zu_values-zu.arsc.flat +new file mode 100644 +index 0000000..c73fdfe +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values-zu_values-zu.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values_values.arsc.flat b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values_values.arsc.flat +new file mode 100644 +index 0000000..c6511aa +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/debugAndroidTest/values_values.arsc.flat differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim-v21/fragment_fast_out_extra_slow_in.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim-v21/fragment_fast_out_extra_slow_in.xml +new file mode 100644 +index 0000000..97b9de9 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim-v21/fragment_fast_out_extra_slow_in.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_fade_in.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_fade_in.xml +new file mode 100644 +index 0000000..da7ee29 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_fade_in.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_fade_out.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_fade_out.xml +new file mode 100644 +index 0000000..c81b39a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_fade_out.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_grow_fade_in_from_bottom.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_grow_fade_in_from_bottom.xml +new file mode 100644 +index 0000000..79d02d4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_grow_fade_in_from_bottom.xml +@@ -0,0 +1,30 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_popup_enter.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_popup_enter.xml +new file mode 100644 +index 0000000..91664da +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_popup_enter.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_popup_exit.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_popup_exit.xml +new file mode 100644 +index 0000000..db7e807 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_popup_exit.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_shrink_fade_out_from_bottom.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_shrink_fade_out_from_bottom.xml +new file mode 100644 +index 0000000..9a23cd2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_shrink_fade_out_from_bottom.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_in_bottom.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_in_bottom.xml +new file mode 100644 +index 0000000..1afa8fe +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_in_bottom.xml +@@ -0,0 +1,19 @@ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_in_top.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_in_top.xml +new file mode 100644 +index 0000000..ab824f2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_in_top.xml +@@ -0,0 +1,19 @@ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_out_bottom.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_out_bottom.xml +new file mode 100644 +index 0000000..b309fe8 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_out_bottom.xml +@@ -0,0 +1,19 @@ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_out_top.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_out_top.xml +new file mode 100644 +index 0000000..e84d1c7 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_slide_out_top.xml +@@ -0,0 +1,19 @@ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_tooltip_enter.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_tooltip_enter.xml +new file mode 100644 +index 0000000..134d9d7 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_tooltip_enter.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_tooltip_exit.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_tooltip_exit.xml +new file mode 100644 +index 0000000..67f6af8 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/abc_tooltip_exit.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml +new file mode 100644 +index 0000000..8d892c1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml +@@ -0,0 +1,40 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml +new file mode 100644 +index 0000000..57fc365 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml +@@ -0,0 +1,49 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_icon_null_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_icon_null_animation.xml +new file mode 100644 +index 0000000..a6ef064 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_checked_icon_null_animation.xml +@@ -0,0 +1,47 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml +new file mode 100644 +index 0000000..0f13aaf +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml +@@ -0,0 +1,49 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml +new file mode 100644 +index 0000000..188e706 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml +@@ -0,0 +1,40 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_icon_null_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_icon_null_animation.xml +new file mode 100644 +index 0000000..8b63d01 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_checkbox_to_unchecked_icon_null_animation.xml +@@ -0,0 +1,47 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_dot_group_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_dot_group_animation.xml +new file mode 100644 +index 0000000..22bb845 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_dot_group_animation.xml +@@ -0,0 +1,65 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml +new file mode 100644 +index 0000000..51154c1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml +@@ -0,0 +1,66 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml +new file mode 100644 +index 0000000..c889ae6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml +@@ -0,0 +1,42 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_dot_group_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_dot_group_animation.xml +new file mode 100644 +index 0000000..f0b9d7d +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_dot_group_animation.xml +@@ -0,0 +1,65 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml +new file mode 100644 +index 0000000..3269f8b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml +@@ -0,0 +1,65 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml +new file mode 100644 +index 0000000..0215835 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml +@@ -0,0 +1,42 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_fade_in.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_fade_in.xml +new file mode 100644 +index 0000000..7fe329f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_fade_in.xml +@@ -0,0 +1,7 @@ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_fade_out.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_fade_out.xml +new file mode 100644 +index 0000000..4919eda +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_fade_out.xml +@@ -0,0 +1,7 @@ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_push_up_in.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_push_up_in.xml +new file mode 100644 +index 0000000..aef91bc +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_push_up_in.xml +@@ -0,0 +1,13 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_push_up_out.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_push_up_out.xml +new file mode 100644 +index 0000000..790e275 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_push_up_out.xml +@@ -0,0 +1,13 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_slide_down.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_slide_down.xml +new file mode 100644 +index 0000000..01876e5 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_slide_down.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_slide_up.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_slide_up.xml +new file mode 100644 +index 0000000..6c96f69 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/anim/catalyst_slide_up.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_close_enter.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_close_enter.xml +new file mode 100644 +index 0000000..1408ac6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_close_enter.xml +@@ -0,0 +1,43 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_close_exit.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_close_exit.xml +new file mode 100644 +index 0000000..4c50d20 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_close_exit.xml +@@ -0,0 +1,43 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_fade_enter.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_fade_enter.xml +new file mode 100644 +index 0000000..b948a22 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_fade_enter.xml +@@ -0,0 +1,21 @@ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_fade_exit.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_fade_exit.xml +new file mode 100644 +index 0000000..841049d +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_fade_exit.xml +@@ -0,0 +1,21 @@ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_open_enter.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_open_enter.xml +new file mode 100644 +index 0000000..01bd5c0 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_open_enter.xml +@@ -0,0 +1,44 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_open_exit.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_open_exit.xml +new file mode 100644 +index 0000000..dc27998 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/animator/fragment_open_exit.xml +@@ -0,0 +1,43 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v21/abc_btn_colored_borderless_text_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v21/abc_btn_colored_borderless_text_material.xml +new file mode 100644 +index 0000000..f5585e3 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v21/abc_btn_colored_borderless_text_material.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_btn_colored_borderless_text_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_btn_colored_borderless_text_material.xml +new file mode 100644 +index 0000000..468b155 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_btn_colored_borderless_text_material.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_btn_colored_text_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_btn_colored_text_material.xml +new file mode 100644 +index 0000000..74170d6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_btn_colored_text_material.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_color_highlight_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_color_highlight_material.xml +new file mode 100644 +index 0000000..8d53611 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_color_highlight_material.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_btn_checkable.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_btn_checkable.xml +new file mode 100644 +index 0000000..e82eff4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_btn_checkable.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_default.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_default.xml +new file mode 100644 +index 0000000..abe3880 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_default.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_edittext.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_edittext.xml +new file mode 100644 +index 0000000..0e05e07 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_edittext.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_seek_thumb.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_seek_thumb.xml +new file mode 100644 +index 0000000..4fc9626 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_seek_thumb.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_spinner.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_spinner.xml +new file mode 100644 +index 0000000..0e05e07 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_spinner.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_switch_track.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_switch_track.xml +new file mode 100644 +index 0000000..e663772 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color-v23/abc_tint_switch_track.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_background_cache_hint_selector_material_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_background_cache_hint_selector_material_dark.xml +new file mode 100644 +index 0000000..e016076 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_background_cache_hint_selector_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_background_cache_hint_selector_material_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_background_cache_hint_selector_material_light.xml +new file mode 100644 +index 0000000..290faf1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_background_cache_hint_selector_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_btn_colored_text_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_btn_colored_text_material.xml +new file mode 100644 +index 0000000..897a3f7 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_btn_colored_text_material.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_hint_foreground_material_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_hint_foreground_material_dark.xml +new file mode 100644 +index 0000000..fe86872 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_hint_foreground_material_dark.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_hint_foreground_material_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_hint_foreground_material_light.xml +new file mode 100644 +index 0000000..1bef5af +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_hint_foreground_material_light.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_disable_only_material_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_disable_only_material_dark.xml +new file mode 100644 +index 0000000..724c255 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_disable_only_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_disable_only_material_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_disable_only_material_light.xml +new file mode 100644 +index 0000000..7395e68 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_disable_only_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_material_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_material_dark.xml +new file mode 100644 +index 0000000..7d66d02 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_material_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_material_light.xml +new file mode 100644 +index 0000000..105b643 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_primary_text_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_search_url_text.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_search_url_text.xml +new file mode 100644 +index 0000000..0631d5d +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_search_url_text.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_secondary_text_material_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_secondary_text_material_dark.xml +new file mode 100644 +index 0000000..6399b1d +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_secondary_text_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_secondary_text_material_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_secondary_text_material_light.xml +new file mode 100644 +index 0000000..87c015a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_secondary_text_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_btn_checkable.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_btn_checkable.xml +new file mode 100644 +index 0000000..0c663f6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_btn_checkable.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_default.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_default.xml +new file mode 100644 +index 0000000..8d7c391 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_default.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_edittext.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_edittext.xml +new file mode 100644 +index 0000000..536d77f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_edittext.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_seek_thumb.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_seek_thumb.xml +new file mode 100644 +index 0000000..cb53788 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_seek_thumb.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_spinner.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_spinner.xml +new file mode 100644 +index 0000000..44333dd +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_spinner.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_switch_track.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_switch_track.xml +new file mode 100644 +index 0000000..22322f8 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/abc_tint_switch_track.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/switch_thumb_material_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/switch_thumb_material_dark.xml +new file mode 100644 +index 0000000..6153382 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/switch_thumb_material_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/switch_thumb_material_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/switch_thumb_material_light.xml +new file mode 100644 +index 0000000..94d7114 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/color/switch_thumb_material_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4d9f861 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..9911008 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..69ff9dd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..9218981 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..a588576 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..4657a25 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..3fd617b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +new file mode 100644 +index 0000000..2264398 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +new file mode 100644 +index 0000000..65ccd8f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png +new file mode 100644 +index 0000000..c2264a8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_focused_holo.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_focused_holo.9.png +new file mode 100644 +index 0000000..c09ec90 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_focused_holo.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png +new file mode 100644 +index 0000000..62fbd2c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png +new file mode 100644 +index 0000000..2f6ef91 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png +new file mode 100644 +index 0000000..863ce95 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png +new file mode 100644 +index 0000000..b6d4677 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png +new file mode 100644 +index 0000000..60081db +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +new file mode 100644 +index 0000000..abb52c9 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png +new file mode 100644 +index 0000000..9d8451a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png +new file mode 100644 +index 0000000..d8d6d7f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..30c1c1e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..1f1cdad +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png +new file mode 100644 +index 0000000..ffb0096 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..e54950e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..0da5b1d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..f8063b2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4b0b10a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..d3556a8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png +new file mode 100644 +index 0000000..183c9ac +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..9b67079 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..5b13bc1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..5440b1a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..05d6920 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..6282df4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_low_normal.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_low_normal.9.png +new file mode 100644 +index 0000000..af91f5e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_low_normal.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png +new file mode 100644 +index 0000000..1602ab8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_normal.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_normal.9.png +new file mode 100644 +index 0000000..6ebed8b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_normal.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png +new file mode 100644 +index 0000000..6193822 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png +new file mode 100644 +index 0000000..6f37a22 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..ddbec8b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..c888ee0 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..588161e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..7cf976d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..4c0f0b3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +new file mode 100644 +index 0000000..fa0ed8f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..7a9fcbc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..8e6c271 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..9f0d2c8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..6e18d40 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..d0a41a5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..bebb1e2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +new file mode 100644 +index 0000000..038e000 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +new file mode 100644 +index 0000000..6086f9c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png +new file mode 100644 +index 0000000..c2264a8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_focused_holo.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_focused_holo.9.png +new file mode 100644 +index 0000000..addb54a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_focused_holo.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png +new file mode 100644 +index 0000000..5fcd5b2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png +new file mode 100644 +index 0000000..251b989 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png +new file mode 100644 +index 0000000..01efec0 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png +new file mode 100644 +index 0000000..f1d1b61 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png +new file mode 100644 +index 0000000..10851f6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +new file mode 100644 +index 0000000..15c1ebb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png +new file mode 100644 +index 0000000..5f55cd5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png +new file mode 100644 +index 0000000..1bff7fa +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..9280f82 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..21bffc6 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png +new file mode 100644 +index 0000000..8878129 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..869c8b0 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..ed75cb8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..ab8460f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..12b0a79 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..e243fd8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png +new file mode 100644 +index 0000000..55b8b36 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..e6eff09 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..3ffa251 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..5d7ad2f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..0c766f3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4f66d7a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_low_normal.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_low_normal.9.png +new file mode 100644 +index 0000000..62de9d7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_low_normal.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png +new file mode 100644 +index 0000000..eaabd93 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_normal.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_normal.9.png +new file mode 100644 +index 0000000..aa239b3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_normal.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png +new file mode 100644 +index 0000000..62d8622 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png +new file mode 100644 +index 0000000..c286875 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_action_bar_item_background_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_action_bar_item_background_material.xml +new file mode 100644 +index 0000000..595c56c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_action_bar_item_background_material.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_btn_colored_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_btn_colored_material.xml +new file mode 100644 +index 0000000..10251aa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_btn_colored_material.xml +@@ -0,0 +1,50 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_dialog_material_background.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_dialog_material_background.xml +new file mode 100644 +index 0000000..7ef438b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_dialog_material_background.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_edit_text_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_edit_text_material.xml +new file mode 100644 +index 0000000..d98b008 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_edit_text_material.xml +@@ -0,0 +1,37 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_list_divider_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_list_divider_material.xml +new file mode 100644 +index 0000000..5ed2121 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/abc_list_divider_material.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/notification_action_background.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/notification_action_background.xml +new file mode 100644 +index 0000000..a9ea90a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v21/notification_action_background.xml +@@ -0,0 +1,36 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v23/abc_control_background_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v23/abc_control_background_material.xml +new file mode 100644 +index 0000000..0b54039 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v23/abc_control_background_material.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v29/autofill_inline_suggestion_chip_background.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v29/autofill_inline_suggestion_chip_background.xml +new file mode 100644 +index 0000000..9637062 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-v29/autofill_inline_suggestion_chip_background.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-watch-v20/abc_dialog_material_background.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-watch-v20/abc_dialog_material_background.xml +new file mode 100644 +index 0000000..242761b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-watch-v20/abc_dialog_material_background.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +new file mode 100644 +index 0000000..6284eaa +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..4902520 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..59a683a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..03bf49c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..342323b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..1d29f9a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..92b43ba +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +new file mode 100644 +index 0000000..600178a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +new file mode 100644 +index 0000000..ca303fd +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png +new file mode 100644 +index 0000000..c2264a8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png +new file mode 100644 +index 0000000..67c25ae +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png +new file mode 100644 +index 0000000..17c34a1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png +new file mode 100644 +index 0000000..988548a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png +new file mode 100644 +index 0000000..15fcf6a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png +new file mode 100644 +index 0000000..65275b3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png +new file mode 100644 +index 0000000..ee95ed4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +new file mode 100644 +index 0000000..99cf6de +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png +new file mode 100644 +index 0000000..d8cc7d3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png +new file mode 100644 +index 0000000..c08ec90 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..0486af1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..20079d8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png +new file mode 100644 +index 0000000..fb4e42a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..44b9a14 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..bcf6b7f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..7c56175 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..2242d2f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..529d550 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png +new file mode 100644 +index 0000000..1f8cc88 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..6c8f6a4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..8ff3a83 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..e7e693a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..819171a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4def8c8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png +new file mode 100644 +index 0000000..8c884de +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png +new file mode 100644 +index 0000000..32e00be +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_normal.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_normal.9.png +new file mode 100644 +index 0000000..bdf477b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_normal.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png +new file mode 100644 +index 0000000..5c4da74 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png +new file mode 100644 +index 0000000..9128e62 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4eae28f +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..d934b60 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..8c82ec3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..8fc0a9b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..3038d70 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..c079867 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..3b9dc7c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png +new file mode 100644 +index 0000000..f6d2f32 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png +new file mode 100644 +index 0000000..fe826b7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png +new file mode 100644 +index 0000000..987b2bc +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png +new file mode 100644 +index 0000000..8b050e8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png +new file mode 100644 +index 0000000..00e370a +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png +new file mode 100644 +index 0000000..719c7b5 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png +new file mode 100644 +index 0000000..75bd580 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png +new file mode 100644 +index 0000000..4f3b147 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png +new file mode 100644 +index 0000000..224a081 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png +new file mode 100644 +index 0000000..b5ceeac +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png +new file mode 100644 +index 0000000..4727a7d +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png +new file mode 100644 +index 0000000..4657815 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..4aa0a34 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..6178c45 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png +new file mode 100644 +index 0000000..3d9b961 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..56a69df +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..7924000 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..ba5abaa +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..eeb74c8 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..d6a8790 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png +new file mode 100644 +index 0000000..de00185 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..d186a5b +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..4d3d3a4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..c5acb84 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png +new file mode 100644 +index 0000000..30328ae +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png +new file mode 100644 +index 0000000..bc21142 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png +new file mode 100644 +index 0000000..e40fa4e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png +new file mode 100644 +index 0000000..4e18de2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png +new file mode 100644 +index 0000000..5fa3266 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png +new file mode 100644 +index 0000000..c11cb2e +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png +new file mode 100644 +index 0000000..639e6cb +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png +new file mode 100644 +index 0000000..355d5b7 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png +new file mode 100644 +index 0000000..7dfaf7c +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png +new file mode 100644 +index 0000000..fe8f2e4 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png +new file mode 100644 +index 0000000..752cb57 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png +new file mode 100644 +index 0000000..40255c3 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png +new file mode 100644 +index 0000000..0210ad1 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png +new file mode 100644 +index 0000000..565f0b2 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png +new file mode 100644 +index 0000000..894c734 +Binary files /dev/null and b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png differ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_borderless_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_borderless_material.xml +new file mode 100644 +index 0000000..f389460 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_borderless_material.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_check_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_check_material.xml +new file mode 100644 +index 0000000..f6e938f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_check_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_check_material_anim.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_check_material_anim.xml +new file mode 100644 +index 0000000..ce7a968 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_check_material_anim.xml +@@ -0,0 +1,37 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_default_mtrl_shape.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_default_mtrl_shape.xml +new file mode 100644 +index 0000000..c50d4b1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_default_mtrl_shape.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_radio_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_radio_material.xml +new file mode 100644 +index 0000000..6e9f9cf +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_radio_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_radio_material_anim.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_radio_material_anim.xml +new file mode 100644 +index 0000000..64cebc2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_btn_radio_material_anim.xml +@@ -0,0 +1,37 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_cab_background_internal_bg.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_cab_background_internal_bg.xml +new file mode 100644 +index 0000000..9faf60a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_cab_background_internal_bg.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_cab_background_top_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_cab_background_top_material.xml +new file mode 100644 +index 0000000..0922395 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_cab_background_top_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_ab_back_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_ab_back_material.xml +new file mode 100644 +index 0000000..5a89523 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_ab_back_material.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml +new file mode 100644 +index 0000000..68547eb +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml +@@ -0,0 +1,33 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_clear_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_clear_material.xml +new file mode 100644 +index 0000000..e6d106b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_clear_material.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_go_search_api_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_go_search_api_material.xml +new file mode 100644 +index 0000000..0c88119 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_go_search_api_material.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml +new file mode 100644 +index 0000000..60ebf76 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_cut_mtrl_alpha.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_cut_mtrl_alpha.xml +new file mode 100644 +index 0000000..592bd60 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_cut_mtrl_alpha.xml +@@ -0,0 +1,21 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_overflow_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_overflow_material.xml +new file mode 100644 +index 0000000..1420edd +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_overflow_material.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml +new file mode 100644 +index 0000000..5404374 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_selectall_mtrl_alpha.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_selectall_mtrl_alpha.xml +new file mode 100644 +index 0000000..d0de4ae +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_selectall_mtrl_alpha.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_share_mtrl_alpha.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_share_mtrl_alpha.xml +new file mode 100644 +index 0000000..597a1b3 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_menu_share_mtrl_alpha.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_search_api_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_search_api_material.xml +new file mode 100644 +index 0000000..b4cba34 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_search_api_material.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_voice_search_api_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_voice_search_api_material.xml +new file mode 100644 +index 0000000..143db55 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ic_voice_search_api_material.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_item_background_holo_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_item_background_holo_dark.xml +new file mode 100644 +index 0000000..72162c2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_item_background_holo_dark.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_item_background_holo_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_item_background_holo_light.xml +new file mode 100644 +index 0000000..1c180b2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_item_background_holo_light.xml +@@ -0,0 +1,26 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_background_transition_holo_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_background_transition_holo_dark.xml +new file mode 100644 +index 0000000..0add58c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_background_transition_holo_dark.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_background_transition_holo_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_background_transition_holo_light.xml +new file mode 100644 +index 0000000..0c1d3e6 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_background_transition_holo_light.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_holo_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_holo_dark.xml +new file mode 100644 +index 0000000..1fb5fc4 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_holo_dark.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_holo_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_holo_light.xml +new file mode 100644 +index 0000000..8d24047 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_list_selector_holo_light.xml +@@ -0,0 +1,28 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_indicator_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_indicator_material.xml +new file mode 100644 +index 0000000..97ba1de +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_indicator_material.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_material.xml +new file mode 100644 +index 0000000..97ba1de +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_material.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_small_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_small_material.xml +new file mode 100644 +index 0000000..97ba1de +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_ratingbar_small_material.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_thumb_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_thumb_material.xml +new file mode 100644 +index 0000000..7fea83b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_thumb_material.xml +@@ -0,0 +1,35 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_tick_mark_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_tick_mark_material.xml +new file mode 100644 +index 0000000..e2d86c9 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_tick_mark_material.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_track_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_track_material.xml +new file mode 100644 +index 0000000..e68ac03 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_seekbar_track_material.xml +@@ -0,0 +1,40 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_spinner_textfield_background_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_spinner_textfield_background_material.xml +new file mode 100644 +index 0000000..d0f46a8 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_spinner_textfield_background_material.xml +@@ -0,0 +1,36 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_star_black_48dp.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_star_black_48dp.xml +new file mode 100644 +index 0000000..4f380aa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_star_black_48dp.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_star_half_black_48dp.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_star_half_black_48dp.xml +new file mode 100644 +index 0000000..ba1dc57 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_star_half_black_48dp.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_switch_thumb_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_switch_thumb_material.xml +new file mode 100644 +index 0000000..ee96ec2 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_switch_thumb_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_tab_indicator_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_tab_indicator_material.xml +new file mode 100644 +index 0000000..1a8de1b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_tab_indicator_material.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_text_cursor_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_text_cursor_material.xml +new file mode 100644 +index 0000000..885670c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_text_cursor_material.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_textfield_search_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_textfield_search_material.xml +new file mode 100644 +index 0000000..0887396 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_textfield_search_material.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_vector_test.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_vector_test.xml +new file mode 100644 +index 0000000..d5da2cb +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/abc_vector_test.xml +@@ -0,0 +1,25 @@ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_checked_mtrl.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_checked_mtrl.xml +new file mode 100644 +index 0000000..464a450 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_checked_mtrl.xml +@@ -0,0 +1,50 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml +new file mode 100644 +index 0000000..77d5418 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_unchecked_mtrl.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_unchecked_mtrl.xml +new file mode 100644 +index 0000000..f21429f +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_unchecked_mtrl.xml +@@ -0,0 +1,50 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml +new file mode 100644 +index 0000000..9d30913 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_off_mtrl.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_off_mtrl.xml +new file mode 100644 +index 0000000..170e82d +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_off_mtrl.xml +@@ -0,0 +1,46 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_off_to_on_mtrl_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_off_to_on_mtrl_animation.xml +new file mode 100644 +index 0000000..84561d0 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_off_to_on_mtrl_animation.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_on_mtrl.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_on_mtrl.xml +new file mode 100644 +index 0000000..ce2116a +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_on_mtrl.xml +@@ -0,0 +1,43 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_on_to_off_mtrl_animation.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_on_to_off_mtrl_animation.xml +new file mode 100644 +index 0000000..2108cf1 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/btn_radio_on_to_off_mtrl_animation.xml +@@ -0,0 +1,32 @@ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_bg.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_bg.xml +new file mode 100644 +index 0000000..1232b4c +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_bg.xml +@@ -0,0 +1,24 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_bg_low.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_bg_low.xml +new file mode 100644 +index 0000000..72e58ae +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_bg_low.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_icon_background.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_icon_background.xml +new file mode 100644 +index 0000000..490a797 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_icon_background.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_tile_bg.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_tile_bg.xml +new file mode 100644 +index 0000000..8eee7ef +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/notification_tile_bg.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/redbox_top_border_background.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/redbox_top_border_background.xml +new file mode 100644 +index 0000000..32e4bbd +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/redbox_top_border_background.xml +@@ -0,0 +1,17 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/test_level_drawable.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/test_level_drawable.xml +new file mode 100644 +index 0000000..41dadfd +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/test_level_drawable.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/tooltip_frame_dark.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/tooltip_frame_dark.xml +new file mode 100644 +index 0000000..43c2f99 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/tooltip_frame_dark.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/tooltip_frame_light.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/tooltip_frame_light.xml +new file mode 100644 +index 0000000..20966d5 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/drawable/tooltip_frame_light.xml +@@ -0,0 +1,22 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml +new file mode 100644 +index 0000000..3db122b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml +new file mode 100644 +index 0000000..47f65a0 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml +new file mode 100644 +index 0000000..3db122b +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml +new file mode 100644 +index 0000000..47f65a0 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml +new file mode 100644 +index 0000000..956d389 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml +new file mode 100644 +index 0000000..956d389 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml +@@ -0,0 +1,20 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/fast_out_slow_in.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/fast_out_slow_in.xml +new file mode 100644 +index 0000000..14950d3 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/interpolator/fast_out_slow_in.xml +@@ -0,0 +1,23 @@ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_action.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_action.xml +new file mode 100644 +index 0000000..7199c25 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_action.xml +@@ -0,0 +1,41 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_action_tombstone.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_action_tombstone.xml +new file mode 100644 +index 0000000..7ef38fa +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_action_tombstone.xml +@@ -0,0 +1,48 @@ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_template_custom_big.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_template_custom_big.xml +new file mode 100644 +index 0000000..9e3666e +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_template_custom_big.xml +@@ -0,0 +1,90 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_template_icon_group.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_template_icon_group.xml +new file mode 100644 +index 0000000..8fadd67 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v21/notification_template_icon_group.xml +@@ -0,0 +1,42 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v26/abc_screen_toolbar.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v26/abc_screen_toolbar.xml +new file mode 100644 +index 0000000..8d2ea46 +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-v26/abc_screen_toolbar.xml +@@ -0,0 +1,54 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml +new file mode 100644 +index 0000000..773065d +--- /dev/null ++++ b/node_modules/react-native-vector-icons/android/build/intermediates/merged_res/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml +@@ -0,0 +1,51 @@ ++ ++ ++ ++ ++ ++